Ask, Learn and Accelerate in your PhD Research

image Post Your Answer


R language codes to run the exploratory research

4 years ago in Research Methods By Shraddha


I want to conduct the exploratory data analysis in the R language. I’m not finding suitable codes to run the test. Please help me with the same.

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) Post Your Answer

By Shashank Answered 4 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 4 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 4 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


View Related Questions