File tree 4 files changed +11
-0
lines changed
4 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ import JASP 1.0
24
24
Form
25
25
{
26
26
27
+ info: qsTr (" This example shows how to load a dataset and perform a simple operation on it" ) // Used for populating the info tab
28
+
27
29
Text
28
30
{
29
31
text: qsTr (" This example shows how to load a dataset and perform a simple operation on it" )
Original file line number Diff line number Diff line change @@ -24,13 +24,18 @@ import JASP 1.0
24
24
Form
25
25
{
26
26
27
+ info: qsTr (" This analysis just adds one to the input. \
28
+ It's purpose is to show an easy example of manual input." ) // Used for populating the info tab
29
+
27
30
Text
28
31
{
29
32
text: qsTr (" This example shows how to manually introduce an input and perform a simple operation on it" )
30
33
}
31
34
32
35
IntegerField
33
36
{
37
+ info: qsTr (" This is the number that will be used in the operation" )
38
+
34
39
name: " my_number" // This will map to options$my_number in R
35
40
label: qsTr (" Type a number" ) // qsTr allows for future translations
36
41
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import JASP 1.0
23
23
24
24
Form
25
25
{
26
+ info: qsTr (" This example shows how to plot a curve." )
26
27
27
28
Text
28
29
{
31
32
32
33
IntegerField
33
34
{
35
+ info: qsTr (" The shape of the parabola is dynamically determined by this number" )
36
+
34
37
name: " a" // This will map to options$a in R
35
38
label: qsTr (" Type a number" ) // qsTr allows for future translations
36
39
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import JASP 1.0
23
23
24
24
Form
25
25
{
26
+ info: qsTr (" This example shows how to load a dataset and output it as a table" )
26
27
27
28
Text
28
29
{
You can’t perform that action at this time.
0 commit comments