r studio Flashcards
Script
here you ca write your commands
console
R will carry out mathematics, functions- computations in the console. You can
directly type in commands in the console, or you can
select the commands you want to run in the script
install.packages(“tidyverse”)
install.packages(“tidyverse”)
brackets mean
function
Load the tidyverse package using, we need to install once, but then we need to load it
library(“tidyverse”)
check which directory you are in
getwd()
when you want to view
View()
when you want to connect
pipe operator, >%>
connect stars wand view
starswars>%>View()
what do you do when you are interested in one variable
dataset>%>select()>%:>View()
if you want to look at the mean, average data in console
dataset>%>summary()
when you want to install a data set and create and object
titanic<-read.csv (“titanic.csv”, sep=”,”)
when we put the arrow what it means
we create a new object
what do we tell after the arrow
after the arrow we tell how to create the object
how do you import a data set
read.csv
after read.csv what do we put
read.csv (“titanic.csv”, sep=”,”)
how many variables code
titanic %>% colnames()
now we want to create a new object from the titanic and only choose fare
drownedpassengers <- titanic %>% select(Survived, Fare)
if you want to choose one specific
we use the function filter()
if we want to filter only the ones who didn’t survive
drownedpassengers <- drownedpassengers %>%
filter(Survived == 0)
explain what the Global environment is, where to find it and how to clean it
Global Environment refers to the workspace where all user-defined objects, such as variables, data frames, functions, and plots, are stored during your R session.
change environment
setwd
<-
left assigenemtn operator, used to assign to variables or objects
what is a package
it is a package of tools, functions and codes