Rogue Scholar Documentation Rogue Scholar Documentation
Dashboard

Participating Blogs

148

All Blog Posts

41,531

All Citations

1,082

Posts with ORCID

30.37%

Posts with ROR ID

17.52%

Posts with References

4.73%

Posts with Grant IDs

0.27%
Plot.plot({
  title: "Blog Posts by Publication Year",
  marginLeft: 100,
  marginRight: 100,
  height: 400,
  x: {
    tickRotate: -30,
    tickFormat: "",
    label: null
  },
  y: {
    grid: true,
    label: null
  },
  style: {
    fontSize: 11,
  },
  marks: [
    Plot.ruleY([0]),
    Plot.rectY(posts_by_year, {
      x: "key",
      y: "doc_count",
      interval: 1, 
      href: d => `https://rogue-scholar.org/search?q=&f=publication_date:${d.key}&sort=oldest`,
      target: "_blank",
      fill: "#ff725c",
    }),
    Plot.text(posts_by_year, {
      text: d => `${d.doc_count}`,
      x: "label",
      y: "doc_count",
      dx: -10,
      dy: -6,
      textAnchor: "start",
    })
  ],
})

Blog Posts by Publication Year

05001,0001,5002,0002,5003,0003,5004,0001999199920002000200120012002200220032003200420042005200520062006200720072008200820092009201020102011201120122012201320132014201420152015201620162017201720182018201920192020202020212021202220222023202320242024202520252026405579130628803381333143483281129013641604175414721291130411391096106114021396153424032197604⚠️1 warning. Please check the console.
Plot.plot({
  title: "Blog Posts by Language",
  marginLeft: 150,
  marginRight: 60,
  height: 360,
  x: { axis: null },
  y: { label: null },
  style: {
    fontSize: 14,
  },
  marks: [
    Plot.barX(posts_by_language, {
      x: "doc_count",
      y: "label",
      href: d => `https://rogue-scholar.org/search?q=&f=language:${d.key}&sort=newest`,
      target: "_blank",
      sort: { y: "x", reverse: true, limit: 5 },
      fill: "label",
    }),

    Plot.text(posts_by_language, {
      text: d => `${(d.doc_count / post_count).toLocaleString(undefined, {
        style: "percent", 
        maximumSignificantDigits: 2
      })}`,
      y: "label",
      x: "doc_count",
      textAnchor: "start",
      dx: 5,
    })
  ]
})

Blog Posts by Language

EnglishGermanSpanishFrenchSlovenian85%12%1.9%1.2%0.15%
Plot.plot({
  title: "Blog Posts by OECD Fields of Science and Technology",
  marginLeft: 540,
  marginRight: 60,
  height: 800,
  x: { axis: null },
  y: { label: null },
  style: {
    fontSize: 11,
  },
  marks: [
    Plot.barX(posts_by_category, {
      x: "cat_count",
      y: "label",
      href: d => `https://rogue-scholar.org/search?q=&f=subject:${d.category}&sort=newest`,
      target: "_blank",
      fill: "parent",
    }),
    Plot.text(posts_by_category, {
      text: d => `${(d.cat_count / post_count).toLocaleString(undefined, {
        style: "percent", 
        maximumSignificantDigits: 2
      })}`,
      y: "label",
      x: "cat_count",
      textAnchor: "start",
      dx: 5,
    })

  ]
})

Blog Posts by OECD Fields of Science and Technology

Engineering and technologyEngineering and technology: Electrical engineering, electronic engineering, information engineeringEngineering and technology: Other engineering and technologiesHumanitiesHumanities: History and archaeologyHumanities: Languages and literatureHumanities: Philosophy, ethics and religionMedical and health sciencesMedical and health sciences: Clinical medicineMedical and health sciences: Health sciencesMedical and health sciences: Other medical sciencesNatural sciencesNatural sciences: Biological sciencesNatural sciences: Chemical sciencesNatural sciences: Computer and information sciencesNatural sciences: Earth and related environmental sciencesNatural sciences: MathematicsNatural sciences: Other natural sciencesNatural sciences: Physical sciencesSocial scienceSocial science: Economics and businessSocial science: Educational sciencesSocial science: LawSocial science: Media and communicationsSocial science: Other social sciencesSocial science: Political scienceSocial science: PsychologySocial science: Social and economic geographySocial science: Sociology11%5.5%0.043%9%4.6%0.45%0.92%0.051%0.85%1.5%0.2%2.9%2.9%8.1%0.75%4.7%0.063%1.3%0.13%0.026%0.048%4%0.46%0.44%0.3%0.32%0.0048%41%0.022%
Plot.plot({
  title: "Blog Posts by Blogging Platform",
  marginLeft: 150,
  marginRight: 60,
  height: 360,
  x: { axis: null },
  y: { label: null },
  style: {
    fontSize: 14,
  },
  marks: [
    Plot.barX(posts_by_generator, {
      x: "gen_count",
      y: "generator",
      href: d => `https://rogue-scholar.org/search?q=platform:${d.generator}&sort=newest`,
      target: "_blank",
      sort: { y: "x", reverse: true, limit: 9 },
      fill: "generator",
    }),

    Plot.text(posts_by_generator, {
      text: d => `${(d.gen_count / post_count).toLocaleString(undefined, {
        style: "percent", 
        maximumSignificantDigits: 2
      })}`,
      y: "generator",
      x: "gen_count",
      textAnchor: "start",
      dx: 5,
    })
  ]
})

Blog Posts by Blogging Platform

BloggerWordPressWordPress.comHugoJekyllGhostSubstackQuartoMedium7.3%11%42%29%0.31%0.76%2.6%0.76%3.9%

Copyright ©2023-2025 Rogue Scholar.

 
  • Edit this page
  • Report an issue