Post Your Answer
6 years ago in Research Methods By Shraddha
R language codes to run the exploratory research
Hi, For cleaning the data you can use the following codes.
data$data.Percent = as.numeric(gsub(‘%’,”,data$data.Percent))
data$Review.Date = as.character(data$Review.Date)
Here ‘data’ is the data you wish to clean
All Answers (3 Answers In All)
By Shashank Answered 6 years ago
data$data.Percent = as.numeric(gsub(‘%’,”,data$data.Percent))
data$Review.Date = as.character(data$Review.Date)
Here ‘data’ is the data you wish to clean
Reply to Shashank
By Rohan Answered 6 years ago
https://blog.datascienceheroes.com/exploratory-data-analysis-in-r-intro/
This website aims to guide newbies into R language.
Reply to Rohan
By Manoj Answered 6 years ago
performing exploratory data analysis using R language.
https://bookdown.org/rdpeng/exdata/getting-started-with-r.html
https://cran.r-project.org/web/packages/dlookr/vignettes/EDA.html
Reply to Manoj
Related Questions