Intro to data science in R/Python in Jupyter notebooks

Data science has four aims

  • Read data

  • Visualise data

  • Model data

  • Machine learning

Reading data

Data in CSV file format (comma separated value format).

library(tidyverse)... (R)import pandas as pd ... (python) mydata <- read.csv("myfile.csv") .... (R)mydata = pd.read_csv("myfile.csv") .... (python)



@cindy

$arin-basu-archive



To reply you need to sign in.