Untitled Quiz

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

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?

  • 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?

  • rbind(y,z) (correct)
  • combine(y, z)
  • cbind(y,z)
  • matrix(y, z)

What is the purpose of the command 'setwd()' in R?

<p>Set the working directory (D)</p> Signup and view all the answers

What is the correct way to load a saved workspace from a file in R?

<p>load('workspace.Rdata') (B)</p> Signup and view all the answers

Which command accurately retrieves the dimensions of a dataframe in R?

<p>dim(nobel) (A)</p> Signup and view all the answers

How can you calculate the average lifespan of a Nobel Laureate while excluding NAs?

<p>mean(nobel_no_na$duree) (B)</p> Signup and view all the answers

Which command is incorrect for creating a new dataframe from existing data in R?

<p>early_period=nobel[year_research_mid&lt;='1905', ] (A)</p> Signup and view all the answers

Flashcards

R

A programming language and software environment for statistical computing and graphics.

ls()

Lists objects in the current R environment.

rm(list=ls())

Removes all objects from the R environment.

getwd()

Returns the working directory in R.

Signup and view all the flashcards

setwd()

Sets the working directory in R.

Signup and view all the flashcards

save.image()

Saves the entire R workspace to a file.

Signup and view all the flashcards

load()

Loads an R workspace from a file.

Signup and view all the flashcards

x <- 1

Assigns the value 1 to the variable x.

Signup and view all the flashcards

class(x)

Determines the class of an object.

Signup and view all the flashcards

c()

Combines elements into a vector.

Signup and view all the flashcards

rbind()

Combines vectors by rows to form a matrix.

Signup and view all the flashcards

cbind()

Combines vectors by columns to form a matrix.

Signup and view all the flashcards

mean()

Calculates the arithmetic mean of a set of numbers.

Signup and view all the flashcards

NA

Represents missing values in a dataset.

Signup and view all the flashcards

read.table()

Imports data from a text file into R as a data frame

Signup and view all the flashcards

data frame

A tabular data structure with rows and columns.

Signup and view all the flashcards

dim()

Returns the dimensions (rows and columns) of a data frame or matrix.

Signup and view all the flashcards

head()

Displays the first few rows of a data frame.

Signup and view all the flashcards

tail()

Displays the last few rows of a data frame.

Signup and view all the flashcards

subset()

Creates a new data frame containing a subset of rows from an existing one.

Signup and view all the flashcards

is.na()

Checks if a value is NA (missing).

Signup and view all the flashcards

nobel$age_discovery

Calculates the age at discovery/research for each Nobel laureate.

Signup and view all the flashcards

Related Documents

class2.R

More Like This

Untitled Quiz
37 questions

Untitled Quiz

WellReceivedSquirrel7948 avatar
WellReceivedSquirrel7948
Untitled Quiz
55 questions

Untitled Quiz

StatuesquePrimrose avatar
StatuesquePrimrose
Untitled Quiz
50 questions

Untitled Quiz

JoyousSulfur avatar
JoyousSulfur
Untitled Quiz
48 questions

Untitled Quiz

StraightforwardStatueOfLiberty avatar
StraightforwardStatueOfLiberty
Use Quizgecko on...
Browser
Browser