Skip to content

mesfind/datasets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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/mesfind/datasets/master/height.csv) and import the data from GitHub with pandas:

import pandas as pd
df = pd.read_csv("https://raw.githubusercontent.com/mesfind/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/mesfind/datasets/master/height.csv) and import the data from GitHub with the package readr:

library(readr)
data <- read_csv("https://raw.githubusercontent.com/mesfind/datasets/master/height.csv")
import pandas as pd
path = 'https://raw.githubusercontent.com/mesfind/datasets/master/banking.csv'
df = pd.read_csv(path)

List of further data resources

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published