ππππ ββπβππππππ
Linear regression
2019-02-17
1 / 1
data
STEM Project Grade 8
Tara Kenner
/
2018-11-19
[β¦] Investigating Chemotaxis by Analyzing the Effect of Glucose/Caffeine on Physarum Polycephalum cultures. [β¦] How will Physarum Polycephalum respond towards varying concentrations of glucose and caffeine? My hypothesis stated that the Physarum Polycephalum will grow towards theβ¦
Linear regresssion
Bivariate Relationship
Tara Kenner
/
2018-04-28
Learning Bivariate realtionship in my math class library(tidyverse) ## ββ Attaching packages βββββββββββββββββββββββββββββββ tidyverse 1.2.1 ββ ## β ggplot2 3.1.0 β purrr 0.3.0 ## β tibble 2.0.1 β dplyr 0.7.8 ## β tidyr 0.8.2 β stringr 1.3.1 ## β readr 1.3.1 β forcats 0.3.0 ## ββ Conflictsβ¦
data
Test Score Data
Tara Kenner
/
2018-04-23
Test scores plotted against hours of study library(tidyverse) score <-c(43, 61, 85, 100) hrs_study <-c(1, 2, 3, 4) score_data <- tibble(hrs_study, score) ggplot(score_data, aes(x = hrs_study, y = score)) + geom_point() + geom_smooth(method = "lm") Now how about if we plot intrestβ¦
STEM projects
6th Grade STEM: Does Tire Air Pressure Affect the Rolling Resistance of a Mountain Bike?
Tara K
/
2017-03-26
[β¦] [β¦] I will be using the programming language R and RStudio which is an IDE (Integrated Development Environment) for R, to analyze, model, and visualize the data I have collected, and Rstudioβs rmarkdown package to communicate my results and answer the questions in the conclusionβ¦