PHD Discussions Logo

Ask, Learn and Accelerate in your PhD Research

Question Icon Post Your Answer

Question Icon

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

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

By Rohan Answered 6 years ago

There are so many websites which provide you with the code and an example for better understanding.
https://blog.datascienceheroes.com/exploratory-data-analysis-in-r-intro/
This website aims to guide newbies into R language.

By Manoj Answered 6 years ago

I have attached a URLs below. Kindly go through the website. It provides all the necessary information pertaining to 
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

Your Answer