• Stars
    star
    273
  • Rank 144,999 (Top 3 %)
  • Language
    R
  • Created over 9 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Excerpt from the Gapminder data, as an R data package and in plain text delimited form

gapminder

DOI CRAN status R-CMD-check

The is a data package with an excerpt from the Gapminder data. The main object in this package is the gapminder data frame or β€œtibble”. There are other goodies, such as the data in tab delimited form, a larger unfiltered dataset, premade color schemes for the countries and continents, and ISO 3166-1 country codes. The primary use case is for teaching and writing examples.

Installation

Install gapminder from CRAN:

install.packages("gapminder")

Quick look

Here we do a bit of data aggregation and plotting with the gapminder data:

library(gapminder)
library(dplyr)
library(ggplot2)

aggregate(lifeExp ~ continent, gapminder, median)
#>   continent lifeExp
#> 1    Africa 47.7920
#> 2  Americas 67.0480
#> 3      Asia 61.7915
#> 4    Europe 72.2410
#> 5   Oceania 73.6650

gapminder %>%
  filter(year == 2007) %>%
  group_by(continent) %>%
  summarise(lifeExp = median(lifeExp))
#> # A tibble: 5 Γ— 2
#>   continent lifeExp
#>   <fct>       <dbl>
#> 1 Africa       52.9
#> 2 Americas     72.9
#> 3 Asia         72.4
#> 4 Europe       78.6
#> 5 Oceania      80.7

ggplot(gapminder, aes(x = continent, y = lifeExp)) +
  geom_boxplot(outlier.colour = "hotpink") +
  geom_jitter(position = position_jitter(width = 0.1, height = 0), alpha = 1 / 4)

For more, see the Get started vignette.

More Repositories

1

googlesheets

Google Spreadsheets R API
R
786
star
2

happy-git-with-r

Using Git and GitHub with R, Rstudio, and R Markdown
TeX
550
star
3

row-oriented-workflows

Row-oriented workflows in R with the tidyverse
R
399
star
4

here_here

I love the here package. Here's why.
289
star
5

ggplot2-tutorial

Teaching materials for the R package ggplot2
R
236
star
6

code-smells-and-feels

Talk on code smells and feels and how to change that via refactoring
R
224
star
7

send-email-with-r

How to send a bunch of email from R
R
205
star
8

r-graph-catalog

All graphs in β€œCreating More Effective Graphs”, made with R package ggplot2.
R
186
star
9

repurrrsive

Recursive lists to use in teaching and examples, because there is no mtcars for lists.
R
133
star
10

access-r-source

How to get at R source. I am sick of Googling this. I am writing it down this time.
120
star
11

free-photos

Places to find CC0 photos and the like
116
star
12

purrr-tutorial

Materials for getting to the know the R package purrr
HTML
111
star
13

debugging

Talk about general debugging strategies. How to be less confused and frustrated.
R
110
star
14

pkg-dev-tutorial

Package Development tutorial for useR! 2019 Toulouse
R
88
star
15

docker-why

Notes about why an R user would use Docker
57
star
16

scary-excel-stories

Sobering things about Excel
55
star
17

jadd

RStudio addins
R
52
star
18

sanesheets

A rant about spreadsheets.
47
star
19

githug

Interface to local and remote Git operations
R
47
star
20

bingo

Generate Bingo cards with R.
R
44
star
21

manipulate-xml-with-purrr-dplyr-tidyr

Example of taming XML with nested data frames and purrr
HTML
40
star
22

lego-rstats

Photos that depict R data structures and operations via Lego
R
39
star
23

how-to-name-files

R
38
star
24

analyze-github-stuff-with-r

Marshal data from the GitHub API with R
R
38
star
25

2015-06-28_r-summit-talk

Talk at R Summit and Workshop about using R Markdown and GitHub in your workflow
38
star
26

operation-chromebook

Setup notes for the Bryan family Chromebooks
35
star
27

zen-art-workflow

Links and credits for a talk: Zen And The aRt Of Workflow Maintenance
R
35
star
28

2015-02-23_bryan-fields-talk

Talk at Workshop on Visualization for Big Data: Strategies and Principles, Fields Institute http://www.fields.utoronto.ca/programs/scientific/14-15/bigdata/visualization/
33
star
29

2016-06_spreadsheets

Talks given in May and June 2016.
32
star
30

2019-07_useR-toulouse-usethis

Talk about the usethis R package at useR! 2019 Toulouse
R
29
star
31

foofactors

Make Factors Less Aggravating
R
28
star
32

excelgesis

Critical explanation or interpretation of ... Excel spreadsheets
R
26
star
33

lotr

R
26
star
34

lotr-tidy

Tidy data lesson using Lord of the Rings data.
23
star
35

STAT545A_2013

UBC grad course in data analysis with R
HTML
21
star
36

earl-london-2017-bryan

Jenny Bryan talk at EARL London, 2017 September 12/13/14
21
star
37

2018-09_purrr-latinr

R
19
star
38

scream

Get replies and quotes of a tweet
19
star
39

2023_raukr-purrr-pkg-dev

Jenny Bryan's instruction at RaukR: Advanced R for Bioinformatics Summer School
R
18
star
40

regexcite

PACKAGE EXISTS FOR DEMONSTRATION PURPOSES ONLY! Make Regular Expressions More Exciting
R
18
star
41

jeremy-howard-posit-conf-2023

Notebook seen in Jeremy Howard's keynote at posit::conf(2023)
Jupyter Notebook
18
star
42

2015-08_bryan-jsm-stat-data-sci-talk

Bryan talk at JSM 2015 re: are statisticians data scientists
R
17
star
43

tidy-eval-context

16
star
44

stat540_2014

STAT540 Statistical Methods for High Dimensional Biology, January - April 2014
R
15
star
45

happy-git-and-github-for-the-user

Talk: Happy Git and GitHub for the useR
14
star
46

frogs

Data from the Calaveras Jumping Frog Jubilee
R
11
star
47

organization-and-naming

Draft of mini-lectures about file organization and naming.
9
star
48

2018_advent-of-code

R
8
star
49

candy

candy survey data
R
8
star
50

2014-05-12-ubc

Python
8
star
51

making-messages

6
star
52

yelpr

Call the Yelp API from R ... at this point, just helping a student!
R
6
star
53

bioinformatics.ca-swc-r

Software Carpentry Bootcamp for bioinformatics.ca 2014-05-12
R
6
star
54

appveyorWTF

WTF AppVeyor, WTF?
R
5
star
55

2017_advent-of-code

R
5
star
56

STAT545

UBC grad course in data analysis with R
5
star
57

user2016-git-tutorial

Tutorial for useR! 2016 @ Stanford
4
star
58

swcR_duke

R content from Duke Software Carpentry Workshop May 2013.
R
4
star
59

test-drive-a-package

try an experimental version of an R package without messing with your main R library
3
star
60

babystats

Bit of data on the Bryan babies
R
3
star
61

jennybryan.org

Personal website of Jenny Bryan
HTML
3
star
62

furry-sniffle

A practice GitHub repo
2
star
63

nfl

R
2
star
64

explore-libraries-seattle-practice

Just practicing!
R
2
star
65

arms-length-render

Usage of rmarkdown::render() when intermediates and outputs don't live with source
R
2
star
66

miami-intermediate-r

Instructor repository for intermediate R room, U of Miami, Software Carpentry Boot Camp, January 2014
R
2
star
67

vanNH

In-house statistics for the Vancouver Nighthawks of Major League Ultimate
HTML
2
star
68

angrybunny

Split a single string
R
1
star
69

stat545a-2013-hw06_baik-jon

Last homework for STAT545A
CSS
1
star
70

cran-data-pkg-licenses

A look at the licenses used by data packages on CRAN
1
star
71

symlink-test

R
1
star
72

2013-11_sfu

Supporting documents for talk and workshop for SFU Statistics and Actuarial Science
1
star
73

README-as-visual-index

Autogenerate README to give visual index of a figure directory
R
1
star
74

refactor

Make Factors Less Annoying
R
1
star
75

teengecko

What the Package Does (One Line, Title Case)
1
star
76

vigilant-tribble

There's only one way to figure out how this works.
1
star
77

xyztest

1
star
78

foofactors2

Happier Life With Factors
R
1
star
79

apple

Experimenting using GHA to render bookdown into gh-pages branch
TeX
1
star
80

happy

I am happy
1
star
81

bellybutton

Data from "A Jungle in There" re: bacterial diversity in the adult human belly button
1
star
82

foofactors3

What the Package Does (One Line, Title Case)
R
1
star
83

2014-01-27-miami

Software Carpentry Bootcamp at the University of Miami
Python
1
star
84

2021-06_raukr-iteration

R
1
star
85

STAT545Assignment6

R
1
star
86

excuse-me-iris

Toy example used in the article "Excuse me, do you have a moment to talk about version control?"
R
1
star