Introduction to R Flashcards
Is an interpreted programming language for statistical computing and graphics.
R
Why use R for Data Analysis?
Free to download and use.
What should one use when working with R?
RStudio
Four Pane of RStudio
Console Pane, R Script or Source Pane, Environment and History Pane, Final Pane
Output and error messages are displayed.
Console Pane
You can type and save your commands and make notes to yourself about the project.
R Script or Source Pane
The command for naming an object.
= or <-
This is where you will see the different objects you create or the different datasets you import.
Environment and History Pane
Contains everything else including help, plots, packages, etc.
Final Pane
What package do you use when importing excel files?
readxl
Numbers or values like 3.6 are called?
numerics
Boolean values like true or false are called?
logical
Text or string values are called?
characters
What function do you use when checking the data type of a variable?
class
What functions do you use when inserting a file and detaching a file?
attach and detach