𝔇𝔄𝔗𝔄 ℭℌ𝔒ℭ𝔒𝔏𝔄𝔗𝔈𝔖
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…