From 65e5586e32002decba4c2cb50dbffffe7a325228 Mon Sep 17 00:00:00 2001 From: sbalci Date: Wed, 1 Jan 2025 20:51:31 +0300 Subject: [PATCH] WIP --- jamovi/agepyramid.a.yaml | 25 ++++++++++++++++- jamovi/alluvial.a.yaml | 37 +++++++++++++++++++++++++ jamovi/benford.a.yaml | 12 +++++++++ jamovi/tableone.a.yaml | 15 +++++++++++ jamovi/venn.a.yaml | 58 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 146 insertions(+), 1 deletion(-) diff --git a/jamovi/agepyramid.a.yaml b/jamovi/agepyramid.a.yaml index 81bd216..fcb9815 100644 --- a/jamovi/agepyramid.a.yaml +++ b/jamovi/agepyramid.a.yaml @@ -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 ... diff --git a/jamovi/alluvial.a.yaml b/jamovi/alluvial.a.yaml index 7fd0416..f97a297 100644 --- a/jamovi/alluvial.a.yaml +++ b/jamovi/alluvial.a.yaml @@ -11,6 +11,8 @@ options: description: R: > The data as a data frame. + jamovi: > + The data as a data frame. - name: vars title: Variables @@ -19,6 +21,9 @@ 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 @@ -26,16 +31,28 @@ options: 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 @@ -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 @@ -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 @@ -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'. @@ -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 diff --git a/jamovi/benford.a.yaml b/jamovi/benford.a.yaml index 8f91ee4..0e68eb2 100644 --- a/jamovi/benford.a.yaml +++ b/jamovi/benford.a.yaml @@ -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 diff --git a/jamovi/tableone.a.yaml b/jamovi/tableone.a.yaml index 6547cff..032cab4 100644 --- a/jamovi/tableone.a.yaml +++ b/jamovi/tableone.a.yaml @@ -26,6 +26,8 @@ options: description: R: > The data as a data frame. + jamovi: > + The data as a data frame. - name: vars title: Variables @@ -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 @@ -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 diff --git a/jamovi/venn.a.yaml b/jamovi/venn.a.yaml index 8591c9b..1908347 100644 --- a/jamovi/venn.a.yaml +++ b/jamovi/venn.a.yaml @@ -13,17 +13,33 @@ 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 @@ -31,11 +47,25 @@ options: 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 @@ -43,22 +73,50 @@ options: 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 ...