A Gentler Introduction to Exploratory Data Analysis
If you have meager experience with the programming language R and the IDE R-Studio, here is an easy practice template for taking an initial look at your data. These are some of the functions that can be used in a rudimentary exploratory data analysis (EDA) with the built-in Iris dataset.
library(datasets) #ensure all the base R datasets are loaded
names(iris)
dim(iris)
str(iris)
summary(iris)
head(iris)
The results should look like this:
# it is a good practice to always look at your data in tabular form
View(iris)
Before you can try this on your own dataset, save your dataset as .csv file in your computer. Very often I will save a new dataset right on my computer desktop. This ensures my dataset is in an accessible place.
Next check your working directory. Your working directory is where R looks for data that you want to edit and manipulate.