Question: Read the data set into R , describe the data set ( such as dimension, variable names and variable type. ) you will need

Read the data set into R, describe the data set ( such as dimension, variable names and variable type.)
" you will need to download the data set "Graduates.Data.csv" from data module on canvas then save " change the location of "Graduates_Data.csv" below according to your own directory.
gdata=read.csv("Graduates_Data.csv")
dim(gdata)
## [1]400,4
names (gdata)
## [1] "admit" "gre" "gpa" "rank"
str(gdata)
## 'data.frame': 400 obs. of 4 variables:
# $ admit: int 01111011010dots
## gre : int 380660800640520760560,400540700dots
#$ rank : int 3314421232dots
 Read the data set into R, describe the data set (

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!