Skip to content

Latest commit

 

History

121 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Datasets

This repo contains data sets that are required in order to perform the applications and exercises we will cover in our course.

Data import with Python

  1. Navigate to the dataset
  2. Select the Raw button
  3. Copy the URL from the browser
  4. Paste the URL in your code (see below)

In this code example we use the URL from the heightdataset (https://raw.githubusercontent.com/kirenz/datasets/master/height.csv) and import the data from GitHub with pandas:

import pandas as pd
df = pd.read_csv("https://raw.githubusercontent.com/kirenz/datasets/master/height.csv")

Data import with R

  1. Navigate to the dataset
  2. Select the Raw button
  3. Copy the URL from the browser
  4. Paste the URL in your code (see below)

In this code example we use the URL from the heightdataset (https://raw.githubusercontent.com/kirenz/datasets/master/height.csv) and import the data from GitHub with the package readr:

library(readr)
data <- read_csv("https://raw.githubusercontent.com/kirenz/datasets/master/height.csv")

List of further data resources

About

This repo contains data sets that are required in order to perform the applications and exercises

Resources

Stars

19 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages