{
  "_id": "6a5b3f709baadeef8ab4d42c",
  "Package": "ggridges",
  "Type": "Package",
  "Title": "Ridgeline Plots in 'ggplot2'",
  "Version": "0.5.7.9000",
  "Authors@R": "person(\ngiven = \"Claus O.\",\nfamily = \"Wilke\",\nrole = c(\"aut\", \"cre\"),\nemail = \"wilke@austin.utexas.edu\",\ncomment = c(ORCID = \"0000-0002-7470-9261\")\n)",
  "Description": "Ridgeline plots provide a convenient way of visualizing\nchanges in distributions over time or space. This package\nenables the creation of such plots in 'ggplot2'.",
  "URL": "https://wilkelab.org/ggridges/",
  "BugReports": "https://github.com/wilkelab/ggridges/issues",
  "License": "GPL-2 | file LICENSE",
  "LazyData": "true",
  "VignetteBuilder": "knitr",
  "Collate": "'data.R' 'ggridges.R' 'geoms.R' 'geomsv.R' 'geoms-gradient.R'\n'geom-density-line.R' 'position.R' 'scale-cyclical.R'\n'scale-point.R' 'scale-vline.R' 'stats.R' 'theme.R'\n'utils_ggplot2.R' 'utils.R'",
  "RoxygenNote": "7.3.3",
  "Encoding": "UTF-8",
  "Roxygen": "list(markdown = TRUE)",
  "Repository": "https://wilkelab.r-universe.dev",
  "Date/Publication": "2026-06-18 19:43:30 UTC",
  "RemoteUrl": "https://github.com/wilkelab/ggridges",
  "RemoteRef": "HEAD",
  "RemoteSha": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
  "NeedsCompilation": "no",
  "Packaged": {
    "Date": "2026-07-18 08:51:31 UTC",
    "User": "root"
  },
  "Author": "Claus O. Wilke [aut, cre] (ORCID:\n<https://orcid.org/0000-0002-7470-9261>)",
  "Maintainer": "Claus O. Wilke <wilke@austin.utexas.edu>",
  "_user": "wilkelab",
  "_type": "src",
  "_file": "ggridges_0.5.7.9000.tar.gz",
  "_fileid": "https://r2.ropensci.org/6f78e7425bd510a6d6d3a8c2aff9e5092ebf51bb207186e30a86fe40b7cdf301",
  "_filesize": 4475769,
  "_sha256": "6f78e7425bd510a6d6d3a8c2aff9e5092ebf51bb207186e30a86fe40b7cdf301",
  "_expires": "2026-10-26T08:55:10.000Z",
  "_created": "2026-07-18T08:51:31.000Z",
  "_published": "2026-07-18T08:55:12.554Z",
  "_jobs": [
    {
      "job": 88064070473,
      "time": 165,
      "config": "linux-devel-x86_64",
      "r": "4.7.0",
      "check": "NOTE",
      "artifact": "8427790864"
    },
    {
      "job": 88064070459,
      "time": 176,
      "config": "linux-release-x86_64",
      "r": "4.6.1",
      "check": "NOTE",
      "artifact": "8427792080"
    },
    {
      "job": 88064070453,
      "time": 98,
      "config": "macos-oldrel-arm64",
      "r": "4.5.3",
      "check": "NOTE",
      "artifact": "8427786105"
    },
    {
      "job": 88064070449,
      "time": 93,
      "config": "macos-release-arm64",
      "r": "4.6.1",
      "check": "NOTE",
      "artifact": "8427781725"
    },
    {
      "job": 88063815176,
      "time": 205,
      "config": "source",
      "r": "4.6.1",
      "check": "OK",
      "artifact": "8427766013"
    },
    {
      "job": 88064070463,
      "time": 114,
      "config": "wasm-release",
      "r": "4.6.0",
      "check": "OK",
      "artifact": "8427783105"
    },
    {
      "job": 88064070456,
      "time": 109,
      "config": "windows-devel",
      "r": "4.7.0",
      "check": "NOTE",
      "artifact": "8427782299"
    },
    {
      "job": 88064070475,
      "time": 103,
      "config": "windows-oldrel",
      "r": "4.5.3",
      "check": "NOTE",
      "artifact": "8427781573"
    },
    {
      "job": 88064070458,
      "time": 102,
      "config": "windows-release",
      "r": "4.6.1",
      "check": "NOTE",
      "artifact": "8427781615"
    }
  ],
  "_host": "GitHub-Actions",
  "_buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048",
  "_status": "success",
  "_upstream": "https://github.com/wilkelab/ggridges",
  "_commit": {
    "id": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
    "author": "Mike Famulare <famulare@users.noreply.github.com>",
    "committer": "GitHub <noreply@github.com>",
    "message": "Don't drop groups smaller than min_obs in stat_density_ridges() (#105) (#106)\n\n* Don't drop groups smaller than min_obs in stat_density_ridges()\n\ngeom_density_ridges(jittered_points = TRUE) silently dropped any group\nwith fewer than three observations, including its raw points, because\nStatDensityRidges$compute_group() returned an empty frame for such\ngroups. Whether a group survived therefore depended on jittered_points.\n\nRetain below-threshold groups instead: the density is omitted but the\ngroup is kept (an empty ridgeline row that draws nothing, plus its raw\npoints at the baseline when jittered_points = TRUE). Group survival no\nlonger depends on jittered_points. Add a min_obs argument (default 3)\nto control the threshold.\n\nAlso factor the duplicated per-panel scaling block in GeomDensityRidges\nand GeomDensityRidgesGradient into a shared ridgeline_internal_scale()\nhelper, made robust to panels whose groups are all too small.\n\nFixes #105.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n* Address review: handle no-density groups via a single early return\n\nRather than threading `have_density` checks through compute_group(),\nreturn early for groups that get no density estimate (too few\nobservations, or no estimable joint bandwidth) and delegate to a small\n`empty_density_group()` helper. The main density path is now the\noriginal upstream code, unchanged.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
    "time": 1781811810
  },
  "_maintainer": {
    "name": "Claus O. Wilke",
    "email": "wilke@austin.utexas.edu",
    "login": "clauswilke",
    "description": "",
    "uuid": 4210929,
    "orcid": "0000-0002-7470-9261"
  },
  "_distro": "resolute",
  "_registered": true,
  "_dependencies": [
    {
      "package": "R",
      "version": ">= 3.2",
      "role": "Depends"
    },
    {
      "package": "ggplot2",
      "version": ">= 3.5.0",
      "role": "Imports"
    },
    {
      "package": "grid",
      "version": ">= 3.0.0",
      "role": "Imports"
    },
    {
      "package": "rlang",
      "version": ">= 1.1.0",
      "role": "Imports"
    },
    {
      "package": "scales",
      "version": ">= 0.4.1",
      "role": "Imports"
    },
    {
      "package": "withr",
      "version": ">= 2.1.1",
      "role": "Imports"
    },
    {
      "package": "dplyr",
      "role": "Suggests"
    },
    {
      "package": "patchwork",
      "role": "Suggests"
    },
    {
      "package": "ggplot2movies",
      "role": "Suggests"
    },
    {
      "package": "forcats",
      "role": "Suggests"
    },
    {
      "package": "knitr",
      "role": "Suggests"
    },
    {
      "package": "rmarkdown",
      "role": "Suggests"
    },
    {
      "package": "testthat",
      "role": "Suggests"
    },
    {
      "package": "vdiffr",
      "role": "Suggests"
    }
  ],
  "_owner": "wilkelab",
  "_selfowned": true,
  "_usedby": 335,
  "_updates": [
    {
      "week": "2025-35",
      "n": 9
    },
    {
      "week": "2026-16",
      "n": 1
    },
    {
      "week": "2026-25",
      "n": 2
    }
  ],
  "_tags": [
    {
      "name": "0.5.7",
      "date": "2025-08-26"
    }
  ],
  "_stars": 425,
  "_contributors": [
    {
      "user": "clauswilke",
      "count": 194,
      "uuid": 4210929
    },
    {
      "user": "yonicd",
      "count": 4,
      "uuid": 1755487
    },
    {
      "user": "jonathon-love",
      "count": 2,
      "uuid": 3240247
    },
    {
      "user": "jthomasmock",
      "count": 2,
      "uuid": 29187501
    },
    {
      "user": "bwiernik",
      "count": 1,
      "uuid": 4773225
    },
    {
      "user": "yutannihilation",
      "count": 1,
      "uuid": 1978793
    },
    {
      "user": "jorane",
      "count": 1,
      "uuid": 911841
    },
    {
      "user": "lukaswallrich",
      "count": 1,
      "uuid": 60155545
    },
    {
      "user": "famulare",
      "count": 1,
      "uuid": 10134931
    },
    {
      "user": "tjmahr",
      "count": 1,
      "uuid": 1890315
    },
    {
      "user": "teunbrand",
      "count": 1,
      "uuid": 49372158
    },
    {
      "user": "trevorld",
      "count": 1,
      "uuid": 2433259
    },
    {
      "user": "iamyannc",
      "count": 1,
      "uuid": 130578277
    },
    {
      "user": "bjreisman",
      "count": 1,
      "uuid": 22528952
    },
    {
      "user": "shabbybanks",
      "count": 1,
      "uuid": 23323752
    }
  ],
  "_userbio": {
    "uuid": 7905759,
    "type": "organization",
    "name": "Wilke Lab",
    "followers": 75
  },
  "_downloads": {
    "count": 474796,
    "source": "https://cranlogs.r-pkg.org/downloads/total/last-month/ggridges"
  },
  "_mentions": 53,
  "_devurl": "https://github.com/wilkelab/ggridges",
  "_pkgdown": "https://wilkelab.org/ggridges/",
  "_searchresults": 20320,
  "_rbuild": "4.6.1",
  "_assets": [
    "extra/citation.cff",
    "extra/citation.html",
    "extra/citation.json",
    "extra/citation.txt",
    "extra/contents.json",
    "extra/ggridges.html",
    "extra/NEWS.html",
    "extra/NEWS.txt",
    "extra/readme.html",
    "extra/readme.md",
    "LICENSE",
    "manual.pdf"
  ],
  "_homeurl": "https://github.com/wilkelab/ggridges",
  "_realowner": "wilkelab",
  "_cranurl": true,
  "_releases": [
    {
      "version": "0.4.0",
      "date": "2017-09-14"
    },
    {
      "version": "0.4.1",
      "date": "2017-09-15"
    },
    {
      "version": "0.5.0",
      "date": "2018-04-05"
    },
    {
      "version": "0.5.1",
      "date": "2018-09-27"
    },
    {
      "version": "0.5.2",
      "date": "2020-01-12"
    },
    {
      "version": "0.5.3",
      "date": "2021-01-08"
    },
    {
      "version": "0.5.4",
      "date": "2022-09-26"
    },
    {
      "version": "0.5.5",
      "date": "2023-12-15"
    },
    {
      "version": "0.5.6",
      "date": "2024-01-23"
    },
    {
      "version": "0.5.7",
      "date": "2025-08-27"
    }
  ],
  "_exports": [
    "cyclical_scale",
    "geom_density_line",
    "geom_density_ridges",
    "geom_density_ridges_gradient",
    "geom_density_ridges2",
    "geom_ridgeline",
    "geom_ridgeline_gradient",
    "geom_vridgeline",
    "GeomDensityLine",
    "GeomDensityRidges",
    "GeomDensityRidges2",
    "GeomDensityRidgesGradient",
    "GeomRidgeline",
    "GeomRidgelineGradient",
    "GeomVRidgeline",
    "position_points_jitter",
    "position_points_sina",
    "position_raincloud",
    "PositionPointsJitter",
    "PositionPointsSina",
    "PositionRaincloud",
    "scale_alpha_cyclical",
    "scale_color_cyclical",
    "scale_colour_cyclical",
    "scale_fill_cyclical",
    "scale_linetype_cyclical",
    "scale_linewidth_cyclical",
    "scale_point_color_continuous",
    "scale_point_color_discrete",
    "scale_point_color_gradient",
    "scale_point_color_hue",
    "scale_point_colour_continuous",
    "scale_point_colour_discrete",
    "scale_point_colour_gradient",
    "scale_point_colour_hue",
    "scale_point_fill_continuous",
    "scale_point_fill_discrete",
    "scale_point_fill_gradient",
    "scale_point_fill_hue",
    "scale_point_shape",
    "scale_point_shape_discrete",
    "scale_point_size_continuous",
    "scale_size_cyclical",
    "scale_vline_color_continuous",
    "scale_vline_color_discrete",
    "scale_vline_color_gradient",
    "scale_vline_color_hue",
    "scale_vline_colour_continuous",
    "scale_vline_colour_discrete",
    "scale_vline_colour_gradient",
    "scale_vline_colour_hue",
    "scale_vline_linetype",
    "scale_vline_linetype_discrete",
    "scale_vline_width_continuous",
    "ScaleCyclical",
    "stat_binline",
    "stat_density_ridges",
    "StatBinline",
    "StatDensityRidges",
    "theme_ridges"
  ],
  "_datasets": [
    {
      "name": "Aus_athletes",
      "title": "Australian athletes",
      "object": "Aus_athletes",
      "class": [
        "data.frame"
      ],
      "fields": [
        "rcc",
        "wcc",
        "hc",
        "hg",
        "ferr",
        "bmi",
        "ssf",
        "pcBfat",
        "lbm",
        "height",
        "weight",
        "sex",
        "sport"
      ],
      "rows": 202,
      "table": true,
      "tojson": true
    },
    {
      "name": "Catalan_elections",
      "title": "Results from Catalan regional elections (1980-2015)",
      "object": "Catalan_elections",
      "class": [
        "tbl_df",
        "tbl",
        "data.frame"
      ],
      "fields": [
        "Municipality",
        "Year",
        "Option",
        "Percent"
      ],
      "rows": 20764,
      "table": true,
      "tojson": true
    },
    {
      "name": "lincoln_weather",
      "title": "Weather in Lincoln, Nebraska in 2016.",
      "object": "lincoln_weather",
      "class": [
        "tbl_df",
        "tbl",
        "data.frame"
      ],
      "fields": [
        "CST",
        "Max Temperature [F]",
        "Mean Temperature [F]",
        "Min Temperature [F]",
        "Max Dew Point [F]",
        "Mean Dew Point [F]",
        "Min Dewpoint [F]",
        "Max Humidity",
        "Mean Humidity",
        "Min Humidity",
        "Max Sea Level Pressure [In]",
        "Mean Sea Level Pressure [In]",
        "Min Sea Level Pressure [In]",
        "Max Visibility [Miles]",
        "Mean Visibility [Miles]",
        "Min Visibility [Miles]",
        "Max Wind Speed [MPH]",
        "Mean Wind Speed[MPH]",
        "Max Gust Speed [MPH]",
        "Precipitation [In]",
        "CloudCover",
        "Events",
        "WindDir [Degrees]",
        "Month"
      ],
      "rows": 366,
      "table": true,
      "tojson": true
    }
  ],
  "_help": [
    {
      "page": "Aus_athletes",
      "title": "Australian athletes",
      "topics": [
        "Aus_athletes"
      ]
    },
    {
      "page": "Catalan_elections",
      "title": "Results from Catalan regional elections (1980-2015)",
      "topics": [
        "Catalan_elections"
      ]
    },
    {
      "page": "geom_density_line",
      "title": "Smoothed density estimates drawn with a ridgeline rather than area",
      "topics": [
        "GeomDensityLine",
        "geom_density_line"
      ]
    },
    {
      "page": "geom_density_ridges",
      "title": "Create ridgeline plot",
      "topics": [
        "GeomDensityRidges",
        "GeomDensityRidges2",
        "geom_density_ridges",
        "geom_density_ridges2"
      ]
    },
    {
      "page": "geom_ridgeline",
      "title": "Plot a ridgeline (line with filled area underneath)",
      "topics": [
        "GeomRidgeline",
        "geom_ridgeline"
      ]
    },
    {
      "page": "geom_ridgeline_gradient",
      "title": "Plot ridgelines and ridgeline plots with fill gradients along the x axis",
      "topics": [
        "GeomDensityRidgesGradient",
        "GeomRidgelineGradient",
        "geom_density_ridges_gradient",
        "geom_ridgeline_gradient"
      ]
    },
    {
      "page": "geom_vridgeline",
      "title": "Plot a vertical ridgeline (ridgeline rotated 90 degrees)",
      "topics": [
        "GeomVRidgeline",
        "geom_vridgeline"
      ]
    },
    {
      "page": "lincoln_weather",
      "title": "Weather in Lincoln, Nebraska in 2016.",
      "topics": [
        "lincoln_weather"
      ]
    },
    {
      "page": "position_points_jitter",
      "title": "Randomly jitter the points in a ridgeline plot",
      "topics": [
        "PositionPointsJitter",
        "position_points_jitter"
      ]
    },
    {
      "page": "position_points_sina",
      "title": "Randomly distribute points in a ridgeline plot between baseline and ridgeline",
      "topics": [
        "PositionPointsSina",
        "position_points_sina"
      ]
    },
    {
      "page": "position_raincloud",
      "title": "Create a cloud of randomly jittered points below a ridgeline plot",
      "topics": [
        "PositionRaincloud",
        "position_raincloud"
      ]
    },
    {
      "page": "scale_cyclical",
      "title": "Create a discrete scale that cycles between values",
      "topics": [
        "cyclical_scale",
        "ScaleCyclical",
        "scale_alpha_cyclical",
        "scale_color_cyclical",
        "scale_colour_cyclical",
        "scale_fill_cyclical",
        "scale_linetype_cyclical",
        "scale_linewidth_cyclical",
        "scale_size_cyclical"
      ]
    },
    {
      "page": "scale_point",
      "title": "Scales for point aesthetics",
      "topics": [
        "scale_point_color_continuous",
        "scale_point_color_discrete",
        "scale_point_color_gradient",
        "scale_point_color_hue",
        "scale_point_colour_continuous",
        "scale_point_colour_discrete",
        "scale_point_colour_gradient",
        "scale_point_colour_hue",
        "scale_point_fill_continuous",
        "scale_point_fill_discrete",
        "scale_point_fill_gradient",
        "scale_point_fill_hue",
        "scale_point_shape",
        "scale_point_shape_discrete",
        "scale_point_size_continuous"
      ]
    },
    {
      "page": "scale_vline",
      "title": "Scales for vline aesthetics",
      "topics": [
        "scale_vline_color_continuous",
        "scale_vline_color_discrete",
        "scale_vline_color_gradient",
        "scale_vline_color_hue",
        "scale_vline_colour_continuous",
        "scale_vline_colour_discrete",
        "scale_vline_colour_gradient",
        "scale_vline_colour_hue",
        "scale_vline_linetype",
        "scale_vline_linetype_discrete",
        "scale_vline_width_continuous"
      ]
    },
    {
      "page": "stat_binline",
      "title": "Stat for histogram ridgeline plots",
      "topics": [
        "StatBinline",
        "stat_binline"
      ]
    },
    {
      "page": "stat_density_ridges",
      "title": "Stat for density ridgeline plots",
      "topics": [
        "StatDensityRidges",
        "stat_density_ridges"
      ]
    },
    {
      "page": "theme_ridges",
      "title": "A custom theme specifically for use with ridgeline plots",
      "topics": [
        "theme_ridges"
      ]
    }
  ],
  "_readme": "https://github.com/wilkelab/ggridges/raw/HEAD/README.md",
  "_rundeps": [
    "cli",
    "cpp11",
    "farver",
    "ggplot2",
    "glue",
    "gtable",
    "isoband",
    "labeling",
    "lifecycle",
    "R6",
    "RColorBrewer",
    "rlang",
    "S7",
    "scales",
    "vctrs",
    "viridisLite",
    "withr"
  ],
  "_vignettes": [
    {
      "source": "gallery.Rmd",
      "filename": "gallery.html",
      "title": "Gallery of ggridges examples",
      "author": "Claus O. Wilke",
      "engine": "knitr::rmarkdown",
      "headings": [
        "Evolution of movie lengths over time",
        "Results from Catalan regional elections, 1980-2015",
        "Temperatures in Lincoln, Nebraska",
        "Visualization of Poisson random samples with different means",
        "Height of Australian athletes",
        "A cheese plot"
      ],
      "created": "2017-07-22 17:30:54",
      "modified": "2025-08-26 23:22:47",
      "commits": 20
    },
    {
      "source": "introduction.Rmd",
      "filename": "introduction.html",
      "title": "Introduction to ggridges",
      "author": "Claus O. Wilke",
      "engine": "knitr::rmarkdown",
      "headings": [
        "Geoms",
        "Ridgelines",
        "Density ridgeline plots",
        "Varying fill colors along the x axis",
        "Stats",
        "Quantile lines and coloring by quantiles or probabilities",
        "Jittering points",
        "Using alternative stats",
        "Themes",
        "Cyclical scales"
      ],
      "created": "2017-07-13 23:09:34",
      "modified": "2025-08-26 23:22:47",
      "commits": 24
    }
  ],
  "_score": 18.238235037326525,
  "_indexed": true,
  "_nocasepkg": "ggridges",
  "_universes": [
    "wilkelab",
    "clauswilke"
  ],
  "_binaries": [
    {
      "r": "4.7.0",
      "os": "linux",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:53:52.000Z",
      "distro": "resolute",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/4c989543e34024dfd99a575bf1e0386dcaf7f9c1489fa23d12cc843edd9a4ca4",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.6.1",
      "os": "linux",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:54:03.000Z",
      "distro": "resolute",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/2a847a6a8ad342901c176441bc38cb4c98c683b050854201f503988b32301122",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.5.3",
      "os": "mac",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:53:37.000Z",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/dcf583e012d50940671c6d123da414260d69fc516bbd7677b123b461e21b6669",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.6.1",
      "os": "mac",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:53:08.000Z",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/b10bbddd4f6d990d13a5db397833954f44ccdde63db3eac1a46a4b3cc32c0558",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.6.0",
      "os": "wasm",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:53:41.000Z",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/0590be8033a890713bcee92c7ffc7ead4c4d07c1534f218717f9ef5e96072f89",
      "status": "success",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.7.0",
      "os": "win",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:52:48.000Z",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/1960dd6369dfeabe27919bd8ec1160f397cfc1e9de0eeaa2d0c78e4406561f16",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.5.3",
      "os": "win",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:52:42.000Z",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/2d898e8166995c9dc5b047989e2b32c6f0c67b41ec2b923f7454f5f8f64a0297",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    },
    {
      "r": "4.6.1",
      "os": "win",
      "version": "0.5.7.9000",
      "date": "2026-07-18T08:52:41.000Z",
      "commit": "ddea131d7d266c09f99a0705c8f1adbcac4804f0",
      "fileid": "https://r2.ropensci.org/1e4d3175fc9052a05815cf5b932e652c912e3c56cad1b35a0e3466474956d1e7",
      "status": "success",
      "check": "NOTE",
      "buildurl": "https://github.com/r-universe/wilkelab/actions/runs/29638068048"
    }
  ]
}