Doubt on dataframe
Title
Question
Dear sir/madam,
how to download moviesData.csv dataframe
Thankyou
R Plotting-Histograms-and-Pie-Chart 02-03 min 10-20 sec
Answers:
You can download this dataset from the Code files link of this tutorial.
Download the the code file given in the code in (available with your slide).
place the moviesData.csv file in your working directory.
movies<- read.csv("moviesData.csv")
View(movies)
for python 3
library(readr)
movies<- read.csv("moviesData.csv")
View(movies)
for python 4
Login to add comment