Basics in R Flashcards
Simple calculations
> 5 + 3
Variable assignment
> age < - 28
Using existing functions for calculations
> sqrt (225)
Creating a vector
> weekly_sales < - c(200, 120, 130, 125, 220)
Getting information out of a vector
> weekly_sales{3}
> weekly_sales{weekly_sales > 180}
Installing packages
> install.packages(“somepackage”)
Loading packages
> library(“somepackage”)
Setting working directory
> setwd(“~/myDirectory”)
To get the symbol, Alt 126
Reading a csv file
> data < - read.csv(“somedata.csv”)
Get the structure of the object
> str(data)
Get the head of the object
> head(data)
Get the names of the object
> names(data)
Get the entire object
> data
Calculate the mean of a variable
> mean(data$someVariable)
Calculate the median of a variable
> median(data$someVariable)
Estimate the population variance of a variable
> var(data$someVariable)
Estimate the population standard deviation of a variable
> sd(data$someVariable)
Get an overall summary of an object or a variable
> summary(data)
> summary(data$someVariable)
Calculate descriptive statistics separately for each group
> by(data, data$someVariable, summary)
Plot a variable (the type of graph generated depends on the type of variable)
> plot(data$someVariable)
Draw a histogram for some variable
> hist(data$someVariable))
Draw a boxplot for some variable
> boxplot(data$someVariable)
Draw a bar chart for some variable
> freq < - table(data$someVariable)
> barplot(freq)
Draw a pie chart for some variable
> freq < - table(data$someVariable)
> pie(freq)
Draw a scatterplot for two variables
> plot(data$variable1, data$variable2)