Week 9/10/11- Introduction to Linear Regression

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

statistical significance

= likelihood of observing this relationship

2
New cards

correlations vs scatterplots

correlations QUANTIFY relationships

scatterplots VISUALISE relationships

3
New cards

correlation coefficent

size of the effect

4
New cards

pipe (>%>) operator


“and then“ in code

5
New cards

indicates the strongest correlation between two variables? 

  • r = -1

6
New cards

A correlation coefficient ( r ) of 1 indicates: 

A perfect positive correlation

7
New cards

Symbol that allows you to directly access variable from data frame

  • $

8
New cards

reject the null hypothesis

A p-value of .04 means that we should:

9
New cards

True

A correlation between two variables tells us something about the relationship between them, but cannot tell us if one variable causes the other. T/F?

10
New cards

Linear regression

is a modelling technique which allows us to make predictions about an outcome variable based on one or more predictor variables

11
New cards

correlation vs regression

corr= strength of rel between 2 contnoius variables

regr= how much one affects the other, can predict a score

12
New cards

True

Linear regression allows us to make predictions about one variable based on the value of another variable. T/F?

13
New cards

tells us how much of the variance in the outcome variable is explained by the predictor variable

R squared

14
New cards

2

If we run a linear regression and get a coefficient of 4 and a standard error of 2 for our predictor variable what is the value of the t-statistic? 

15
New cards

The value of the outcome variable when the value of the predictor variable(s) is zero

the definition of the intercept? 

16
New cards

model <- lm(Weight ~ Height, data = NHANESraw) 


If we wanted to run a linear regression in RStudio to look at whether Height predicts Weight using the NHANESraw dataset?

17
New cards

predicting values formula

knowt flashcard image
18
New cards

to use the collected sample to make generalisation about population sample was taken from

inferential statistics is for

19
New cards

inferential statistics involves (2)

1) estimation of parameters

2)testing statistical hypothese

20
New cards

continuous data

data with possible range e.g

height

weight

21
New cards

discrete data

set data e.g.

car has 4 wheels

22
New cards

To use a t-test the data type for the dependent variable must be

23
New cards

The variance

A t-test examines the difference between two groups of data, whilst also accounting for???

24
New cards
  1. The t-statistic (also known as the t-value) 

  2. The degrees of freedom 

  3. The p-value 

When we conduct a t-test, we are given three pieces of information in our output. These are: 

25
New cards

code for repeated-measures t-test?

paired_t_test()