hockeystick
Make essential Climate Change datasets easily available to non-climate experts.
https://github.com/cortinah/hockeystick
Category: Climate Change
Sub Category: Climate Data Access and Visualization
Keywords
carbon carbon-dioxide-data carbon-emissions climate climate-change climate-data climate-science ggplot2 methane noaa r rstats sea-ice sea-levels temperature-data warming-stripes
Last synced: about 12 hours ago
JSON representation
Repository metadata
Download and Visualize Essential Global Heating Data in R
- Host: GitHub
- URL: https://github.com/cortinah/hockeystick
- Owner: cortinah
- License: other
- Created: 2020-07-26T18:39:59.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2026-05-18T01:16:06.000Z (27 days ago)
- Last Synced: 2026-06-11T04:03:08.652Z (3 days ago)
- Topics: carbon, carbon-dioxide-data, carbon-emissions, climate, climate-change, climate-data, climate-science, ggplot2, methane, noaa, r, rstats, sea-ice, sea-levels, temperature-data, warming-stripes
- Language: R
- Homepage: https://cortinah.github.io/hockeystick/
- Size: 102 MB
- Stars: 50
- Watchers: 3
- Forks: 4
- Open Issues: 8
- Releases: 15
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Citation: CITATION.cff
README.Rmd
---
output: github_document
---
```{r, include=FALSE}
knitr::knit_hooks$set(pngquant = knitr::hook_pngquant)
knitr::opts_chunk$set(
message = FALSE,
fig.path = "man/figures/README-",
collapse = TRUE,
comment = "#>",
dev = "ragg_png",
dpi = 72,
fig.retina = 2,
pngquant = "--speed=1 --quality=50"
)
```
# hockeystick
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[](https://github.com/cortinah/hockeystick/actions/workflows/check-standard.yaml)
[](https://CRAN.R-project.org/package=hockeystick)
[](https://cran.r-project.org/package=hockeystick)
The goal of `hockeystick` is to make essential Global Heating datasets easily available in R to non-climate experts. `hockeystick` users can download the latest raw data from authoritative sources as well as view it via pre-defined ggplot2 charts. Datasets include atmospheric CO2 and CH4, carbon emissions, instrumental, reconstructed, and paleo ice-core temperature records, sea levels, hurricanes, and Arctic/Antarctic sea-ice.
The choice of data was originally based on [Professor Stefan Rahmstorf's ](http://www.pik-potsdam.de/~stefan/) presentation on [The 5 Most Important Data Sets of Climate Science](http://www.pik-potsdam.de/~stefan/5datasets_rahmstorf.pdf). I came across this on a post on the [Open Mind blog](https://tamino.wordpress.com/2018/11/01/the-5-most-important-data-sets-of-climate-science/). I wrote my own [post](https://rethinking.rbind.io/2018/11/16/the-top-five-climate-charts-using-ggplot2/) on obtaining and visualizing this data (now out of date), which is the basis for this package. Additional datasets and visualizations have been added over The name of the package stems from the well known [hockeystick](https://en.wikipedia.org/wiki/Hockey_stick_graph) temperature chart.
`hockeystick` was highlighted on the RStudio [RViews](https://rviews.rstudio.com/2021/03/19/february-2021-top-40-new-cran-packages/) blog by Joseph Rickert as one of the "Top 40" new packages on CRAN in February 2021.
**New in version 0.8.0:** Daily temperature data from ClimateReanalyzer.com (see below).
New in version 0.7.0: Globally averaged methane (CH~4~) concentration from NOAA.
New in version 0.7.0: Cumulative emissions by country visualization.
New in version 0.6.0: Global CO~2~ emissions by region and country from GCP.
## Installation
To install the latest `hockeystick` release from CRAN type:
``` r
install.packages("hockeystick")
```
You may alternatively install the development version from [https://github.com/cortinah/hockeystick](https://github.com/cortinah/hockeystick) with:
``` r
pak::pak("cortinah/hockeystick@testing")
```
## Downloading and viewing global heating data
Plot daily global temperatures since 1940 and current anomaly:
```{r dailytemp, fig.retina=2, message=FALSE, out.width='60%', fig.asp=1.03}
library(hockeystick)
globaldaily <- get_dailytempcop()
plot_dailytemp(globaldaily)
```
Retrieve NOAA/ESRL Mauna Loa CO2 Observatory concentration data and plot:
```{r carbon, fig.retina=2, message=FALSE, out.width='60%'}
ml_co2 <- get_carbon()
plot_carbon(ml_co2)
```
Retrieve GCP global CO~2~ emissions and plot:
```{r emissions, out.width='60%', fig.retina=2, message=FALSE}
emissions <- get_emissions()
plot_emissions(emissions)
plot_emissions_with_land(emissions)
```
Visualize cumulative emissions by country:
```{r emissionsmap, out.width='60%', fig.retina=2}
emissions_map()
```
Retrieve NASA/GISS global surface temperature anomaly data and plot:
```{r temp, out.width='60%', fig.retina=2}
anomaly <- get_temp()
plot_temp(anomaly)
```
Plot relationship between temperature anomaly and carbon:
```{r tempcarbon, out.width='60%', fig.retina=2}
plot_carbontemp()
```
Visualize warming using Ed Hawkins styled "warming stripes":
```{r stripes, out.width='60%', fig.retina=2}
warming_stripes()
```
```{r stripes2, out.width='60%', fig.retina=2}
warming_stripes(stripe_only = TRUE, col_strip = viridisLite::viridis(11))
```
Retrieve tide gauge and satellite sea level data and plot:
```{r sl, out.width='60%', fig.retina=2}
gmsl <- get_sealevel()
plot_sealevel(gmsl)
```
Retrieve July annual Arctic Sea Ice Index and plot:
```{r si, fig.retina=2, message=FALSE, out.width='60%', warning=FALSE}
seaice <- get_seaice()
plot_seaice(seaice)
```
`get_seaice()` arguments can be modified to download Antarctic sea ice, and allow any month.
You can also visualize sea ice by month and year:
```{r icecurves, fig.retina=2, message=FALSE, out.width='60%'}
arcticice <- get_icecurves()
plot_icecurves(arcticice)
```
Retrieve Common Era temperature reconstruction and plot it with instrumental record:
```{r 2ktemp, out.width='60%', fig.retina=2}
anomaly2k <- get_temp2k()
plot_temp2k(anomaly2k)
```
Retrieve NOAA HURDAT2 hurricane data and plot:
```{r hurricanes, out.width='60%', fig.retina=2, message=FALSE}
hurricanes <- get_hurricanes()
plot_hurricanes(hurricanes)
plot_hurricane_nrg(hurricanes)
```
Retrieve NOAA/ESRL CH4 Globally averaged mean data and plot:
```{r methane, fig.retina=2, message=FALSE, out.width='60%'}
ch4 <- get_methane()
plot_methane(ch4)
```
Retrieve Vostok paleo ice core data and plot:
```{r paleo, out.width='60%', fig.retina=2, message=FALSE}
vostok <- get_paleo()
plot_paleo(vostok)
```
### Managing the cache
By default, no climate data is cached, and all data is downloaded every time any of the `get_` functions is called. To cache data for future use, use the `write_cache = TRUE` option, available in all of the `get_` functions. To download and cache all data use `hockeystick_update_all()`. To view the files, date, and size of cached data use `hockeystick_cache_details()`. To re-download data from the source use the `use_cache = FALSE` argument in any of the `get_` functions, for example: `get_carbon(use_cache = FALSE, write_cache = TRUE)`. To delete all cached data use `hockeystick_cache_delete_all()`.
Users may also cache data by default by adding `options(hs_write_cache = TRUE)`to their script or `.Rprofile` file.
### All together now: climate data grid
```{r grid, out.width='80%', fig.retina=2, warning=FALSE}
climate_grid()
```
## Acknowledgments
- Carbon Dioxide concentrations: Dr. Pieter Tans, NOAA/GML (https://gml.noaa.gov/ccgg/trends/) and Dr. Ralph Keeling, [Scripps Institution of Oceanography](https://scrippsco2.ucsd.edu/).
- Global temperature anomaly: *GISS Surface Temperature Analysis (GISTEMP), version 4.* GISTEMP Team, 2020: NASA Goddard Institute for Space Studies. https://data.giss.nasa.gov/gistemp/
- Warming Stripes design from Ed Hawkins' Climate Lab. https://www.climate-lab-book.ac.uk/2018/warming-stripes/. In addition grateful to Dr. Dominic Royé for posting his approach to plotting them using ggplot2, which `warming_stripes()` is based on. https://dominicroye.github.io/blog/how-to-create-warming-stripes-in-r/
- Sea level data: [NOAA Laboratory for Satellite Altimetry (sat)](https://www.star.nesdis.noaa.gov/socd/lsa/SeaLevelRise/) and [Commonwealth Scientific and Industrial Research Organisation (tide gauges)](https://research.csiro.au/slrwavescoast/sea-level/measurements-and-data/sea-level-data/)
- Sea Ice Index: [National Snow & Ice Data Center](https://nsidc.org/home).
Data Archive: https://nsidc.org/data/explore-data
- Vostok carbon dioxide and temperature data: https://data.ess-dive.lbl.gov/datasets/doi:10.3334/CDIAC/ATG.009
https://data.ess-dive.lbl.gov/datasets/doi:10.3334/CDIAC/ATG.009
- Common Era reconstructed temperature data: [PAGES2k Consortium and NOAA](https://www.ncei.noaa.gov/access/paleo-search/study/26872)).
- Hurricanes: National Oceanic and Atmospheric Administration HURDAT Atlantic Hurricane Database [Re-analysis Project](https://www.aoml.noaa.gov/hrd/hurdat/Data_Storm.html), particularly Dr. Chris Landsea.
- Carbon Dioxide emissions: [Global Carbon Project](https://www.globalcarbonproject.org/carbonbudget/) and [Our World In Data](https://github.com/owid/co2-data)
- Methane: Lan, X., K.W. Thoning, and E.J. Dlugokencky, NOAA Global Monitoring Laboratory (https://gml.noaa.gov/ccgg/trends_ch4/).
- Thank you to Dirk Eddelbuettel for providing the .isConnected function from his [tint](https://CRAN.R-project.org/package=tint) package to test for internet connectivity.
- Thank you to Chris Campbell and Steven Bernard of the FT Climate Graphics Explained newsletter for sharing their code for climatereanalyzer.org daily temperature chart (Temperature Records Broken...Again, 9 July 2023). This code is the foundation of the get_dailytemp() and plot_dailytemp() functions.
- Thank you Nan Xiao for [PNG compression approach](https://nanx.me/blog/post/rpkgs-pngquant-ragg/).
## Notes and resources
- All data is compiled to the best of my ability from reliable and peer-reviewed sources. Please open an issue if you are aware of enhanced or additional data that may be added to the package. Building `hockeystick` is driven by my interest in tracking climate data and making it easily available to the community.
- Here are some online resources I have found very helpful to learn mo re about climate science:
- MIT edX Global Warming Science. https://www.edx.org/learn/global-warming/massachusetts-institute-of-technology-global-warming-science
- SDG Academy: Climate Change: The Science and Global Impact. https://sdgacademy.org/course/climate-change-the-science-and-global-impact/
Citation (CITATION.cff)
# --------------------------------------------
# CITATION file created with {cffr} R package
# See also: https://docs.ropensci.org/cffr/
# --------------------------------------------
cff-version: 1.2.0
message: 'To cite package "hockeystick" in publications use:'
type: software
license: MIT
title: 'hockeystick: Download and Visualize Essential Climate Change Data'
version: 0.8.7
identifiers:
- type: doi
value: 10.32614/CRAN.package.hockeystick
abstract: 'Provides easy access to essential climate change datasets to non-climate
experts. Users can download the latest raw data from authoritative sources and view
it via pre-defined ''ggplot2'' charts. Datasets include atmospheric CO2, methane,
emissions, instrumental and proxy temperature records, sea levels, Arctic/Antarctic
sea-ice, Hurricanes, and Paleoclimate data. Sources include: NOAA Mauna Loa Laboratory
<https://gml.noaa.gov/ccgg/trends/data.html>, Global Carbon Project <https://www.globalcarbonproject.org/carbonbudget/>,
NASA GISTEMP <https://data.giss.nasa.gov/gistemp/>, National Snow and Sea Ice Data
Center <https://nsidc.org/home>, CSIRO <https://research.csiro.au/slrwavescoast/sea-level/measurements-and-data/sea-level-data/>,
NOAA Laboratory for Satellite Altimetry <https://www.star.nesdis.noaa.gov/socd/lsa/SeaLevelRise/>
and HURDAT Atlantic Hurricane Database <https://www.aoml.noaa.gov/hrd/hurdat/Data_Storm.html>,
Vostok Paleo carbon dioxide and temperature data: <https://doi.org/10.3334/CDIAC/ATG.009>.'
authors:
- family-names: Cortina
given-names: Hernando
email: hch@alum.mit.edu
orcid: https://orcid.org/0000-0001-6790-4870
preferred-citation:
type: manual
title: 'hockeystick: Download and Visualize Essential Climate Change Data'
authors:
- family-names: Cortina
given-names: Hernando
email: hch@alum.mit.edu
orcid: https://orcid.org/0000-0001-6790-4870
year: '2020'
url: https://cortinah.github.io/hockeystick/
repository: https://CRAN.R-project.org/package=hockeystick
repository-code: https://github.com/cortinah/hockeystick
url: https://cortinah.github.io/hockeystick/
contact:
- family-names: Cortina
given-names: Hernando
email: hch@alum.mit.edu
orcid: https://orcid.org/0000-0001-6790-4870
keywords:
- carbon
- carbon-dioxide-data
- carbon-emissions
- climate
- climate-change
- climate-data
- climate-science
- ggplot2
- methane
- noaa
- r
- rstats
- sea-ice
- sea-levels
- temperature-data
- warming-stripes
references:
- type: software
title: ggplot2
abstract: 'ggplot2: Create Elegant Data Visualisations Using the Grammar of Graphics'
notes: Imports
url: https://ggplot2.tidyverse.org
repository: https://CRAN.R-project.org/package=ggplot2
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Chang
given-names: Winston
orcid: https://orcid.org/0000-0002-1576-2126
- family-names: Henry
given-names: Lionel
- family-names: Pedersen
given-names: Thomas Lin
email: thomas.pedersen@posit.co
orcid: https://orcid.org/0000-0002-5147-4711
- family-names: Takahashi
given-names: Kohske
- family-names: Wilke
given-names: Claus
orcid: https://orcid.org/0000-0002-7470-9261
- family-names: Woo
given-names: Kara
orcid: https://orcid.org/0000-0002-5125-4188
- family-names: Yutani
given-names: Hiroaki
orcid: https://orcid.org/0000-0002-3385-7233
- family-names: Dunnington
given-names: Dewey
orcid: https://orcid.org/0000-0002-9415-4582
- family-names: Brand
given-names: Teun
name-particle: van den
orcid: https://orcid.org/0000-0002-9335-7468
year: '2026'
doi: 10.32614/CRAN.package.ggplot2
- type: software
title: lubridate
abstract: 'lubridate: Make Dealing with Dates a Little Easier'
notes: Imports
url: https://lubridate.tidyverse.org
repository: https://CRAN.R-project.org/package=lubridate
authors:
- family-names: Spinu
given-names: Vitalie
email: spinuvit@gmail.com
- family-names: Grolemund
given-names: Garrett
- family-names: Wickham
given-names: Hadley
year: '2026'
doi: 10.32614/CRAN.package.lubridate
- type: software
title: tools
abstract: 'R: A Language and Environment for Statistical Computing'
notes: Imports
authors:
- name: R Core Team
website: https://ror.org/02zz1nj61
institution:
name: R Foundation for Statistical Computing
website: https://ror.org/05qewa988
address: Vienna, Austria
year: '2026'
doi: 10.32614/R.manuals
- type: software
title: readr
abstract: 'readr: Read Rectangular Text Data'
notes: Imports
url: https://readr.tidyverse.org
repository: https://CRAN.R-project.org/package=readr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Hester
given-names: Jim
- family-names: Bryan
given-names: Jennifer
email: jenny@posit.co
orcid: https://orcid.org/0000-0002-6983-2759
year: '2026'
doi: 10.32614/CRAN.package.readr
- type: software
title: dplyr
abstract: 'dplyr: A Grammar of Data Manipulation'
notes: Imports
url: https://dplyr.tidyverse.org
repository: https://CRAN.R-project.org/package=dplyr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: François
given-names: Romain
orcid: https://orcid.org/0000-0002-2444-4226
- family-names: Henry
given-names: Lionel
- family-names: Müller
given-names: Kirill
orcid: https://orcid.org/0000-0002-1416-3412
- family-names: Vaughan
given-names: Davis
email: davis@posit.co
orcid: https://orcid.org/0000-0003-4777-038X
year: '2026'
doi: 10.32614/CRAN.package.dplyr
- type: software
title: tidyr
abstract: 'tidyr: Tidy Messy Data'
notes: Imports
url: https://tidyr.tidyverse.org
repository: https://CRAN.R-project.org/package=tidyr
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Vaughan
given-names: Davis
email: davis@posit.co
- family-names: Girlich
given-names: Maximilian
year: '2026'
doi: 10.32614/CRAN.package.tidyr
- type: software
title: patchwork
abstract: 'patchwork: The Composer of Plots'
notes: Imports
url: https://patchwork.data-imaginist.com
repository: https://CRAN.R-project.org/package=patchwork
authors:
- family-names: Pedersen
given-names: Thomas Lin
email: thomasp85@gmail.com
orcid: https://orcid.org/0000-0002-5147-4711
year: '2026'
doi: 10.32614/CRAN.package.patchwork
- type: software
title: scales
abstract: 'scales: Scale Functions for Visualization'
notes: Imports
url: https://scales.r-lib.org
repository: https://CRAN.R-project.org/package=scales
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Pedersen
given-names: Thomas Lin
email: thomas.pedersen@posit.co
orcid: https://orcid.org/0000-0002-5147-4711
- family-names: Seidel
given-names: Dana
year: '2026'
doi: 10.32614/CRAN.package.scales
- type: software
title: rvest
abstract: 'rvest: Easily Harvest (Scrape) Web Pages'
notes: Imports
url: https://rvest.tidyverse.org/
repository: https://CRAN.R-project.org/package=rvest
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
year: '2026'
doi: 10.32614/CRAN.package.rvest
- type: software
title: tibble
abstract: 'tibble: Simple Data Frames'
notes: Imports
url: https://tibble.tidyverse.org/
repository: https://CRAN.R-project.org/package=tibble
authors:
- family-names: Müller
given-names: Kirill
email: kirill@cynkra.com
orcid: https://orcid.org/0000-0002-1416-3412
- family-names: Wickham
given-names: Hadley
email: hadley@rstudio.com
year: '2026'
doi: 10.32614/CRAN.package.tibble
- type: software
title: treemapify
abstract: 'treemapify: Draw Treemaps in ''ggplot2'''
notes: Imports
url: https://wilkox.org/treemapify/
repository: https://CRAN.R-project.org/package=treemapify
authors:
- family-names: Wilkins
given-names: David
email: david@wilkox.org
orcid: https://orcid.org/0000-0002-3385-8981
year: '2026'
doi: 10.32614/CRAN.package.treemapify
- type: software
title: RColorBrewer
abstract: 'RColorBrewer: ColorBrewer Palettes'
notes: Imports
repository: https://CRAN.R-project.org/package=RColorBrewer
authors:
- family-names: Neuwirth
given-names: Erich
email: erich.neuwirth@univie.ac.at
year: '2026'
doi: 10.32614/CRAN.package.RColorBrewer
- type: software
title: jsonlite
abstract: 'jsonlite: A Simple and Robust JSON Parser and Generator for R'
notes: Imports
url: https://jeroen.r-universe.dev/jsonlite
repository: https://CRAN.R-project.org/package=jsonlite
authors:
- family-names: Ooms
given-names: Jeroen
email: jeroenooms@gmail.com
orcid: https://orcid.org/0000-0002-4035-0289
year: '2026'
doi: 10.32614/CRAN.package.jsonlite
- type: software
title: readxl
abstract: 'readxl: Read Excel Files'
notes: Imports
url: https://readxl.tidyverse.org
repository: https://CRAN.R-project.org/package=readxl
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Bryan
given-names: Jennifer
email: jenny@posit.co
orcid: https://orcid.org/0000-0002-6983-2759
year: '2026'
doi: 10.32614/CRAN.package.readxl
- type: software
title: 'R: A Language and Environment for Statistical Computing'
notes: Depends
url: https://www.R-project.org/
authors:
- name: R Core Team
website: https://ror.org/02zz1nj61
institution:
name: R Foundation for Statistical Computing
website: https://ror.org/05qewa988
address: Vienna, Austria
year: '2026'
doi: 10.32614/R.manuals
version: '>= 4.1.0'
- type: software
title: rmarkdown
abstract: 'rmarkdown: Dynamic Documents for R'
notes: Suggests
url: https://pkgs.rstudio.com/rmarkdown/
repository: https://CRAN.R-project.org/package=rmarkdown
authors:
- family-names: Allaire
given-names: JJ
email: jj@posit.co
- family-names: Xie
given-names: Yihui
email: xie@yihui.name
orcid: https://orcid.org/0000-0003-0645-5666
- family-names: Dervieux
given-names: Christophe
email: cderv@posit.co
orcid: https://orcid.org/0000-0003-4474-2498
- family-names: McPherson
given-names: Jonathan
email: jonathan@posit.co
- family-names: Luraschi
given-names: Javier
- family-names: Ushey
given-names: Kevin
email: kevin@posit.co
- family-names: Atkins
given-names: Aron
email: aron@posit.co
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Cheng
given-names: Joe
email: joe@posit.co
- family-names: Chang
given-names: Winston
email: winston@posit.co
- family-names: Iannone
given-names: Richard
email: rich@posit.co
orcid: https://orcid.org/0000-0003-3925-190X
year: '2026'
doi: 10.32614/CRAN.package.rmarkdown
- type: software
title: knitr
abstract: 'knitr: A General-Purpose Package for Dynamic Report Generation in R'
notes: Suggests
url: https://yihui.org/knitr/
repository: https://CRAN.R-project.org/package=knitr
authors:
- family-names: Xie
given-names: Yihui
email: xie@yihui.name
orcid: https://orcid.org/0000-0003-0645-5666
year: '2026'
doi: 10.32614/CRAN.package.knitr
- type: software
title: viridisLite
abstract: 'viridisLite: Colorblind-Friendly Color Maps (Lite Version)'
notes: Suggests
url: https://sjmgarnier.github.io/viridisLite/
repository: https://CRAN.R-project.org/package=viridisLite
authors:
- family-names: Garnier
given-names: Simon
email: garnier@njit.edu
year: '2026'
doi: 10.32614/CRAN.package.viridisLite
- type: software
title: svglite
abstract: 'svglite: An ''SVG'' Graphics Device'
notes: Suggests
url: https://svglite.r-lib.org
repository: https://CRAN.R-project.org/package=svglite
authors:
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Henry
given-names: Lionel
email: lionel@posit.co
- family-names: Pedersen
given-names: Thomas Lin
email: thomas.pedersen@posit.co
orcid: https://orcid.org/0000-0002-5147-4711
- family-names: Luciani
given-names: T Jake
email: jake@apache.org
- family-names: Decorde
given-names: Matthieu
email: matthieu.decorde@ens-lyon.fr
- family-names: Lise
given-names: Vaudor
email: lise.vaudor@ens-lyon.fr
year: '2026'
doi: 10.32614/CRAN.package.svglite
Owner metadata
- Name: Hernando Cortina
- Login: cortinah
- Email:
- Kind: user
- Description: Views are my own and do not necessarily represent the position, strategy, or opinions of my employer.
- Website:
- Location: New York, NY
- Twitter: cortinah
- Company:
- Icon url: https://avatars.githubusercontent.com/u/22863380?v=4
- Repositories: 35
- Last ynced at: 2024-06-11T15:49:36.867Z
- Profile URL: https://github.com/cortinah
GitHub Events
Total
- Delete event: 8
- Pull request event: 4
- Issues event: 1
- Watch event: 3
- Push event: 123
- Create event: 4
Last Year
- Delete event: 4
- Pull request event: 2
- Watch event: 1
- Push event: 63
- Create event: 2
Committers metadata
Last synced: 3 days ago
Total Commits: 166
Total Committers: 2
Avg Commits per committer: 83.0
Development Distribution Score (DDS): 0.223
Commits in past year: 3
Committers in past year: 1
Avg Commits per committer in past year: 3.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| Hernando Cortina | h****h@a****u | 129 |
| Hernando | h****h@a****u | 37 |
Committer domains:
- alum.mit,edu: 1
- alum.mit.edu: 1
Issue and Pull Request metadata
Last synced: 23 days ago
Total issues: 12
Total pull requests: 25
Average time to close issues: 4 months
Average time to close pull requests: 6 minutes
Total issue authors: 2
Total pull request authors: 1
Average comments per issue: 1.42
Average comments per pull request: 0.0
Merged pull request: 21
Bot issues: 0
Bot pull requests: 0
Past year issues: 0
Past year pull requests: 5
Past year average time to close issues: N/A
Past year average time to close pull requests: 6 minutes
Past year issue authors: 0
Past year pull request authors: 1
Past year average comments per issue: 0
Past year average comments per pull request: 0.0
Past year merged pull request: 3
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- cortinah (11)
- carbonmetrics (1)
Top Pull Request Authors
- cortinah (25)
Top Issue Labels
Top Pull Request Labels
Package metadata
- Total packages: 2
-
Total downloads:
- cran: 747 last-month
- Total dependent packages: 0 (may contain duplicates)
- Total dependent repositories: 1 (may contain duplicates)
- Total versions: 31
- Total maintainers: 1
proxy.golang.org: github.com/cortinah/hockeystick
- Homepage:
- Documentation: https://pkg.go.dev/github.com/cortinah/hockeystick#section-documentation
- Licenses: other
- Latest release: v0.8.7 (published about 1 month ago)
- Last Synced: 2026-06-11T04:00:45.698Z (3 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 5.401%
- Average: 5.583%
- Dependent repos count: 5.764%
cran.r-project.org: hockeystick
Download and Visualize Essential Climate Change Data
- Homepage: https://cortinah.github.io/hockeystick/
- Documentation: http://cran.r-project.org/web/packages/hockeystick/hockeystick.pdf
- Licenses: MIT + file LICENSE
- Latest release: 0.8.7 (published about 1 month ago)
- Last Synced: 2026-06-11T04:00:44.895Z (3 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 747 Last month
-
Rankings:
- Stargazers count: 7.113%
- Forks count: 12.303%
- Average: 18.62%
- Downloads: 21.531%
- Dependent repos count: 24.3%
- Dependent packages count: 27.852%
- Maintainers (1)
Dependencies
- R >= 4.0.0 depends
- dplyr * imports
- ggplot2 * imports
- lubridate * imports
- patchwork * imports
- readr * imports
- rvest * imports
- scales * imports
- tibble * imports
- tidyr * imports
- tools * imports
- knitr * suggests
- rmarkdown * suggests
- spelling * suggests
- viridisLite * suggests
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- JamesIves/github-pages-deploy-action v4.4.1 composite
- actions/checkout v3 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
Score: 11.372329174623584