Week 2, Lecture 4
We create an object by using “<-” called as “Object Assignment Operator”
Windows | Mac | |
---|---|---|
Shortcut | Alt and - | Option and - |
do()
is a function;
something
is the argument of the function.
do()
is a function;
something
is the first argument of the function;
colorful
is the second argument of the function.
R ignores comments if you put # like above
I love Dr. Dogucu’s teaching strategy to teach students the basics of coding. This is how she explains the idea of coding. I am using some of her strategies during this session.
Today we will cover:
ggplot()
Next slides are just for demonstration purposes. Please do not code, just watch my demo.
After that, you will start working with your group members.
You may not finish your first lab assignment today but you have time until Sunday midnight.
R users can create/contribute packages, and they are free!
For this lab, and many others in the future, we will use:
tidyverse
“umbrella” package which has many different R packages for data wrangling and data visualizationopenintro
R package is our second textbook’s package and we will use this for our lab sessions.The library()
function in R is like opening a toolbox. Each toolbox (library) contains tools (packages) for specific tasks.
When you use the library()
function, you’re telling R to open a specific toolbox (load a package) so that you can access and use the tools inside.
We have two different ways to do that (within the scope of this class)
After importing our data, it is important to familiarize with our data. We have some functions to do that.
Let’s start with glimpse()
function. The name of this function is self-explanatory.
glimpse()
function gives us a brief information about out data set. We have 9 variables and 150 cases or observations.
Alternatively, we can ask R the number of columns (variables) and rows (cases) as following:
[1] 9
[1] 150
Assume that I would like to see just the names of the variables in my data set. I can use names()
function for this.
We can calculate measures of central tendency by using these unsurprising functions.
Alternatively, you can use summarize()
function for the same calculation.
Alternatively, you can use summarize()
function.
Let’s plot a simple bar chart. Next session, we will explore other features for ggplot()
.
Let’s plot a simple bar chart. Next session, we will explore other features for ggplot()
.
To ensure the group’s work is divided equitably each week, your team will be rotating through a set of group roles. This ensures one person doesn’t act as the group leader for multiple sessions of class, while someone else is always the note taker. You will circulate through the following roles each week:
Project Manager:
Note Taker:
Coder:
Tip
02-Lab-Assignment-01.qmd
Just go back and follow this slide show from the beginning of Slide 9.
You will be mainly changing the name of the data set and variables.
Call me over if you have any questions.