[1] 3
In groups of 3, take turns introducing yourselves to one another by providing the info listed on the handout (your name, hometown, etc).
Each person should finish with a handout filled-in with info on their groupmates. Make sure you save this for later this week!
05:00
What’s going on here?

03:00
Understand
the World
Data
Understand
the World
Data
We can call the process of:
This lifecycle involves constructing and critiquing claims made using data: which is the main goal of our course!
To learn to critique and construct
claims made using data.
To learn to critique and construct
claims made using data.
To learn to critique and construct
claims made using data.
To learn to critique and construct
claims made using data.
To learn to critique and construct
claims made using data.
To learn to critique and construct
claims made using data.
To learn to critique and construct
claims made using data.

A numerical, graphical, or verbal description of an aspect of data that is on hand.
Example
Using data from the Stat 20 class survey, the proportion of respondents to the survey who reported having no experience writing computer code is 70%.

A numerical, graphical, or verbal description of a broader set of units than those on which data was been recorded.
Example
Using data from the Stat 20 class survey, the proportion of Berkeley students who have no experience writing computer code is 70%.

A claim that changing the value of one variable will influence the value of another variable.
Example
Data from a randomized controlled experiment shows that taking a new antibiotic eliminates more than 99% of bacterial infections.

A guess about the value of an unknown variable, based on other known variables.
Example
Based on reading the news and the price of Uber’s stock today, I predict that Uber’s stock price will go up 1.2% tomorrow.
05:00
05:00
Head to stat20.datahub.berkeley.edu!
> and press enter/return to run them. The Console is in the lower-left pane.R allows all of the standard arithmetic operations.
R allows all of the standard arithmetic operations.
You can create/save objects using the assignment operator <- . This is the equivalent of = in other programming languages. . . .
In order to be recognized as a valid object name, you have to follow certain conventions; namely, the object name should begin with a letter.
| good names | names that cause errors |
|---|---|
| a | 1trial |
| b | $ |
| FOO | ^mean |
| my_var | my var |
A vector is the simplest structure used in R to store data. It can be created using the function c().
Click the link below…
15:00

