You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: inst/qml/Descriptives.qml
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ Form
26
26
{
27
27
info:qsTr("Descriptives allows the user to obtain basic descriptive statistics, histograms and density plots, correlation plots, boxplots, and frequency tables.")
28
28
infoBottom:"## "+qsTr("References") +"\n"
29
+
+"- Hyndman, R. J., & Fan, Y. (1996). Sample quantiles in statistical packages. *The American Statistician, 50*(4), 361–365."+"\n"
30
+
+"- Langford, E. (2006). Quartiles in elementary statistics. *Journal of Statistics Education, 14*(3)."+"\n"
29
31
+"- Moore, D. S., McCabe, G. P., & Craig, B. A. (2012). *Introduction to the practice of statistics (7th ed.)*. New York, NY: W. H. Freeman and Company."+"\n"
30
32
+"- Schwarz, G. (1978). Estimating the dimension of a model. *Annals of Statistics, 6*, 461-464."+"\n"
31
33
+"- Whitlock, M. C., & Schluter, D. (2015). *The analysis of biological data (2nd ed.)*. Greenwood Village, Colorado: Roberts and Company Publishers."+"\n"
AssignedVariablesList { name:"splitBy"; title:qsTr("Split"); info:qsTr("Can be split by a categorical variable such as experimental condition.") ; singleVariable:true; allowedColumns: ["nominal"]; id: splitBy; minLevels:2; maxLevels:256 } // without maxLevels entering a continuous variable can freeze/ crash jasp, so we need an arbitrary maximum
51
53
}
52
54
@@ -75,6 +77,26 @@ Form
75
77
title:qsTr("Quantiles")
76
78
info:qsTr("Percentile Values")
77
79
80
+
DropDown
81
+
{
82
+
name:"quantilesType"
83
+
label:qsTr("Type")
84
+
id: quantilesType
85
+
indexDefaultValue:6// Type 7, the default in R
86
+
info:qsTr("Method used to compute quantiles (see Hyndman & Fan, 1996; Langford, 2006, for more information). The selection carries over to the inter-quartile range (IQR), box- and QQ-plot calculations. Note that ordinal variables are treated as continuous for the computations.\n")
87
+
values: [
88
+
{label:qsTr("1"), value:1},
89
+
{label:qsTr("2 (SAS)"), value:2},
90
+
{label:qsTr("3"), value:3},
91
+
{label:qsTr("4"), value:4},
92
+
{label:qsTr("5"), value:5},
93
+
{label:qsTr("6 (Minitab, SPSS)"), value:6},
94
+
{label:qsTr("7 (R)"), value:7},
95
+
{label:qsTr("8"), value:8},
96
+
{label:qsTr("9"), value:9}
97
+
]
98
+
}
99
+
78
100
CheckBox { name:"quartiles"; label:qsTr("Quartiles"); info:qsTr("Displays the 25th, 50th, and 75th percentiles of the data points.") }
0 commit comments