Skip to content

Commit

Permalink
Merge pull request #6 from DouweHorsthuis/rmarkdown
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
DouweHorsthuis authored Aug 26, 2022
2 parents 0b7899c + 87aeea0 commit 1b4b4af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ Douwe John Horsthuis 2022-06-26

What will you find in this repo:

1. [What are mixed models and why use them](#what-are-mixed-models-and-why-use-them)

2. [How to use this R code to create your own mixed models](#how-to-use-this-r-code-to-create-your-own-mixed-models)
- [How to use this R code to create your own mixed models](#how-to-use-this-r-code-to-create-your-own-mixed-models)

1. [R libraries](#loading-r-libraries)

Expand All @@ -26,9 +24,7 @@ What will you find in this repo:

6. [Mixed model](mixed-model)

## What are mixed models and why use them {#what-are-mixed-models-and-why-use-them}

## How to use this R code to create your own mixed models {#how-to-use-this-r-code-to-create-your-own-mixed-models}
## How to use this R code to create your own mixed models

## The actual code explained

Expand Down Expand Up @@ -449,7 +445,7 @@ We see several things here

2. condition 245 495 995 and 2495 are significant compared to condition

145.
1.

3. The interactions:

Expand Down
8 changes: 5 additions & 3 deletions src/Mixed-effect-models.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
install.packages("x")

#uploads libraries
library(x)
library(y)
library(z)
library(lme4)#library for mixed models
library(lmerTest)#library for P values
library(ggplot2)#library for plotting
library(doBy)#for summaries
library(dplyr)#for many basics

#cleans environment
rm(list=ls())
Expand Down

0 comments on commit 1b4b4af

Please sign in to comment.