Skip to content

Commit

Permalink
Updated lockfile, fixed typo and set wrangle to not eval
Browse files Browse the repository at this point in the history
  • Loading branch information
fontikar committed Jun 14, 2024
1 parent 642f7aa commit 8c8f040
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions wrangle.qmd
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
---
execute:
echo: false
eval: false
warning: false
message: false
toc: TRUE
toc-depth: 4
---


# Wrangle

# Packages for this chapter


```{r}
#| warning: false
#| message: false
library(tidyverse)
library(here)
library(janitor)
Expand Down Expand Up @@ -275,7 +284,7 @@ data_exclusionsapplied <- data_exclusionsapplied %>%

Now, if we re-run the reliability on the items including the *reversed* version of variable 3, things should work out a lot better:

```{r warning=false}
```{r}
reliability_scale1_corrected <- scaleStructure(dat=data_exclusionsapplied, items=c('variable1_reversed', 'variable2', 'variable3'), ci=FALSE)
Expand Down

0 comments on commit 8c8f040

Please sign in to comment.