Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
sbalci committed Jan 1, 2025
1 parent fac54ec commit 65e5586
Show file tree
Hide file tree
Showing 5 changed files with 146 additions and 1 deletion.
25 changes: 24 additions & 1 deletion jamovi/agepyramid.a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,45 @@ options:
description:
R: >
The data as a data frame.
jamovi: >
The data as a data frame.
- name: age
title: Age
type: Variable
suggested: [ continuous ]
permitted: [ numeric ]
description:
R: >
a string naming the variable from `data` that contains the
continuous values used for the report
jamovi: >
a string naming the variable from `data` that contains the
continuous values used for the report
- name: gender
title: Gender
type: Variable
suggested: [ ordinal, nominal ]
permitted: [ factor ]

description:
R: >
a string naming the variable from `data` that contains the
categorical values used for the report
jamovi: >
a string naming the variable from `data` that contains the
categorical values used for the report
- name: female
title: Select Female
type: Level
variable: (gender)
description:
R: >
a string naming the level from `gender` that contains the
level female
jamovi: >
a string naming the level from `gender` that contains the
level female
...
37 changes: 37 additions & 0 deletions jamovi/alluvial.a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ options:
description:
R: >
The data as a data frame.
jamovi: >
The data as a data frame.
- name: vars
title: Variables
Expand All @@ -19,23 +21,38 @@ options:
R: >
a string naming the variables from `data` that contains the
values used for the Alluvial Diagram.
jamovi: >
a string naming the variables from `data` that contains the
values used for the Alluvial Diagram.
- name: condensationvar
title: Condensation Variable
type: Variable
description:
R: >
The primary variable to be used for condensation.
jamovi: >
The primary variable to be used for condensation.
- name: excl
title: Exclude missing (NA)
type: Bool
default: false
description:
R: >
Exclude missing values from the analysis.
jamovi: >
Exclude missing values from the analysis.
- name: marg
title: Marginal plots
type: Bool
default: false
description:
R: >
Include marginal plots.
jamovi: >
Include marginal plots.
# - name: verb
Expand All @@ -61,6 +78,9 @@ options:
R: >
A list for the argument fill for selecting the variable to be
represented by color. Default is 'first_variable'.
jamovi: >
A list for the argument fill for selecting the variable to be
represented by color. Default is 'first_variable'.
- name: bin
title: Bin labels
Expand All @@ -80,6 +100,8 @@ options:
description:
R: >
labels for the bins from low to high
jamovi: >
labels for the bins from low to high
- name: orient
Expand All @@ -91,6 +113,11 @@ options:
- title: Vertical
name: vert
default: vert
description:
R: >
Orientation of the plot. Default is 'vertical'.
jamovi: >
Orientation of the plot. Default is 'vertical'.
Expand All @@ -106,11 +133,21 @@ options:
title: Custom title
type: Bool
default: false
description:
R: >
Use a custom title for the plot.
jamovi: >
Use a custom title for the plot.
- name: mytitle
title: Title
type: String
default: 'Alluvial Plot'
description:
R: >
Title for the plot.
jamovi: >
Title for the plot.
# - name: originaltheme
Expand Down
12 changes: 12 additions & 0 deletions jamovi/benford.a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,24 @@ jas: '1.2'
options:
- name: data
type: Data
description:
R: >
The data as a data frame.
jamovi: >
The data as a data frame.
- name: var
title: Variable
type: Variable
suggested: [ continuous ]
permitted: [ numeric ]
description:
R: >
a string naming the variable from `data` that contains the
continuous values used for the report
jamovi: >
a string naming the variable from `data` that contains the
continuous values used for the report
# - name: li
# title: Load Image
Expand Down
15 changes: 15 additions & 0 deletions jamovi/tableone.a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ options:
description:
R: >
The data as a data frame.
jamovi: >
The data as a data frame.
- name: vars
title: Variables
Expand All @@ -34,6 +36,9 @@ options:
R: >
a string naming the variables from `data` that contains the
values used for the Table One.
jamovi: >
a string naming the variables from `data` that contains the
values used for the Table One.
- name: sty
Expand All @@ -49,12 +54,22 @@ options:
- title: janitor
name: t4
default: t1
description:
R: >
a string naming the style of the table.
jamovi: >
a string naming the style of the table.
- name: excl
title: Exclude Missing (NA)
type: Bool
default: false
description:
R: >
a boolean argument whether to exclude missing values. Default is false.
jamovi: >
a boolean argument whether to exclude missing values. Default is false.
# - name: alllevels
Expand Down
58 changes: 58 additions & 0 deletions jamovi/venn.a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,52 +13,110 @@ options:
description:
R: >
The data as a data frame.
jamovi: >
The data as a data frame.
- name: var1
title: 'Variable 1'
type: Variable
suggested: [ ordinal, nominal ]
permitted: [ factor ]
description:
R: >
a string naming the variable from `data` that contains the
the first variable used for the report
jamovi: >
a string naming the variable from `data` that contains the
the first variable used for the report
- name: var1true
title: 'Select True Level'
type: Level
variable: (var1)
description:
R: >
a string naming the level from `var1` that contains the
the true level
jamovi: >
a string naming the level from `var1` that contains the
the true level
- name: var2
title: 'Variable 2'
type: Variable
suggested: [ ordinal, nominal ]
permitted: [ factor ]
description:
R: >
a string naming the variable from `data` that contains the
the second variable used for the report
jamovi: >
a string naming the variable from `data` that contains the
the second variable used for the report
- name: var2true
title: 'Select True Level'
type: Level
variable: (var2)
description:
R: >
a string naming the level from `var2` that contains the
the true level
jamovi: >
a string naming the level from `var2` that contains the
the true level
- name: var3
title: 'Variable 3'
type: Variable
suggested: [ ordinal, nominal ]
permitted: [ factor ]
description:
R: >
a string naming the variable from `data` that contains the
the third variable used for the report
jamovi: >
a string naming the variable from `data` that contains the
the third variable used for the report
- name: var3true
title: 'Select True Level'
type: Level
variable: (var3)
description:
R: >
a string naming the level from `var3` that contains the
the true level
jamovi: >
a string naming the level from `var3` that contains the
the true level
- name: var4
title: 'Variable 4'
type: Variable
suggested: [ ordinal, nominal ]
permitted: [ factor ]
description:
R: >
a string naming the variable from `data` that contains the
the fourth variable used for the report
jamovi: >
a string naming the variable from `data` that contains the
the fourth variable used for the report
- name: var4true
title: 'Select True Level'
type: Level
variable: (var4)
description:
R: >
a string naming the level from `var4` that contains the
the true level
jamovi: >
a string naming the level from `var4` that contains the
the true level
...

0 comments on commit 65e5586

Please sign in to comment.