From c3eecbae138c950cf36453d6b56f2a2f9f44c2ce Mon Sep 17 00:00:00 2001 From: Naupaka Zimmerman Date: Wed, 13 Mar 2024 09:17:32 -0700 Subject: [PATCH 1/2] Remove 'mixed' to address #264 --- episodes/00-introduction.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/00-introduction.Rmd b/episodes/00-introduction.Rmd index 92cd3cfc..bc320629 100644 --- a/episodes/00-introduction.Rmd +++ b/episodes/00-introduction.Rmd @@ -496,7 +496,7 @@ parentheses. - Chi-Squared test - Student t-test -- mixed linear model +- linear model ::::::::::::::: solution @@ -507,7 +507,7 @@ find: - Chi-Squared test: `stats::Chisquare` - Student t-test: `stats::t.test` -- mixed linear model: `stats::lm.glm` +- linear model: `stats::lm.glm` From 64ea76b6fd9ded1588449d2fe350aaf92e1f0388 Mon Sep 17 00:00:00 2001 From: Naupaka Zimmerman Date: Wed, 13 Mar 2024 09:21:30 -0700 Subject: [PATCH 2/2] Add search engine tip address #265 --- episodes/00-introduction.Rmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/episodes/00-introduction.Rmd b/episodes/00-introduction.Rmd index bc320629..90b2d9cc 100644 --- a/episodes/00-introduction.Rmd +++ b/episodes/00-introduction.Rmd @@ -492,7 +492,8 @@ the `help.search()` function. Use `help.search()` to find R functions for the following statistical functions. Remember to put your search query in quotes inside the function's -parentheses. +parentheses. Also note that Google or your favorite search engine is a good +place to start as well. It can be helpful to include "R" in your search query. - Chi-Squared test - Student t-test