-
Notifications
You must be signed in to change notification settings - Fork 1
/
jamovi.Rmd
45 lines (34 loc) · 2.15 KB
/
jamovi.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: "jamovi"
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(
echo = TRUE,
error = TRUE,
comment = "")
```
# Overview of `jamovi` {#jamovi}
[`jamovi`](https://www.jamovi.org) is similar to [`SPSS`](spss.html) in that it has a graphical user interface that allows point-and-click for analysis.
Unlike [`SPSS`](spss.html), however, [`jamovi`](https://www.jamovi.org) is free.
[`jamovi`](https://www.jamovi.org) can also provide the [`R`](R.html) code that used to perform the analysis.
# Best Practices {#bestPractices}
- Create a syntax file for performing all commands, including importing data, computing variables, recoding variables, running analyses, etc.
The benefit of using syntax files (and code-based files, more generally) is that they allow you to reproduce your findings again with the same data file.
This is important so you do not have to remember all of the steps you followed to generate the analysis.
This also allows you to quickly re-run the analysis if the data file is updated due to the collection of more data.
To generate the syntax for a particular step, change to "syntax mode" to see the `R` syntax that is used to perform the analysis step.
If you are unsure what [`jamovi`](https://www.jamovi.org) command is needed, run the command via "point and click" in the interface; however, instead of clicking "OK", click "Paste".
- Have one syntax file for importing data, computing composites, recoding variables, and saving data (e.g., `import.R`).
- Have a separate syntax file for generating frequencies, descriptive statistics, and correlation matrices (e.g., `descriptives.R`).
- Have a separate syntax file for running analyses (e.g., `analyses.R`).
- Comment your syntax frequently
- to comment use the following convention:
- `#type comment`
- Save your syntax frequently
# Install modules for `jamovi`
To install modules for [`jamovi`](https://www.jamovi.org), see here:
https://dev.jamovi.org/tuts0101-getting-started.html (archived at https://perma.cc/E3NY-8MGH)
# Structural Equation Modeling in `jamovi`
`SEMLj` module for `jamovi`:
- https://github.com/semlj/semlj
- https://semlj.github.io