Podcast
Questions and Answers
What command is used to remove all objects from the workspace in R?
What command is used to remove all objects from the workspace in R?
- clear_workspace()
- rm(list=ls(all=TRUE)) (correct)
- delete(all=TRUE)
- clean(list=ls())
Which function can be used to find the mean of a numeric vector while ignoring NA values?
Which function can be used to find the mean of a numeric vector while ignoring NA values?
- mean(y, na.rm = FALSE)
- mean(y, na.rm = TRUE) (correct)
- average(y, na.rm = TRUE)
- mean(y, ignore_na = TRUE)
How to create a matrix from two vectors in R?
How to create a matrix from two vectors in R?
- rbind(y,z) (correct)
- combine(y, z)
- cbind(y,z)
- matrix(y, z)
What is the purpose of the command 'setwd()' in R?
What is the purpose of the command 'setwd()' in R?
What is the correct way to load a saved workspace from a file in R?
What is the correct way to load a saved workspace from a file in R?
Which command accurately retrieves the dimensions of a dataframe in R?
Which command accurately retrieves the dimensions of a dataframe in R?
How can you calculate the average lifespan of a Nobel Laureate while excluding NAs?
How can you calculate the average lifespan of a Nobel Laureate while excluding NAs?
Which command is incorrect for creating a new dataframe from existing data in R?
Which command is incorrect for creating a new dataframe from existing data in R?
Flashcards
R
R
A programming language and software environment for statistical computing and graphics.
ls()
ls()
Lists objects in the current R environment.
rm(list=ls())
rm(list=ls())
Removes all objects from the R environment.
getwd()
getwd()
Signup and view all the flashcards
setwd()
setwd()
Signup and view all the flashcards
save.image()
save.image()
Signup and view all the flashcards
load()
load()
Signup and view all the flashcards
x <- 1
x <- 1
Signup and view all the flashcards
class(x)
class(x)
Signup and view all the flashcards
c()
c()
Signup and view all the flashcards
rbind()
rbind()
Signup and view all the flashcards
cbind()
cbind()
Signup and view all the flashcards
mean()
mean()
Signup and view all the flashcards
NA
NA
Signup and view all the flashcards
read.table()
read.table()
Signup and view all the flashcards
data frame
data frame
Signup and view all the flashcards
dim()
dim()
Signup and view all the flashcards
head()
head()
Signup and view all the flashcards
tail()
tail()
Signup and view all the flashcards
subset()
subset()
Signup and view all the flashcards
is.na()
is.na()
Signup and view all the flashcards
nobel$age_discovery
nobel$age_discovery
Signup and view all the flashcards