Skip to content

Commit

Permalink
remove nominalText and replace by nominal if necessary everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisGoosen committed Apr 16, 2024
1 parent c8c4864 commit 7141c5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inst/qml/ARIMATimeSeries.qml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Form
name: "time"
id: time
label: qsTr("Time")
allowedColumns: ["ordinal", "nominalText"]
allowedColumns: ["ordinal", "nominal"]
singleVariable: true
info: qsTr("Optional. Can either be an ordinal variable indicating the time index/order of the observations, or a text variable indicating the date/time stamp of the observations. Combined date and time values should be in the standard format 'YYYY-MM-DD HH:MM:SS', where seconds (':SS') can also be omitted. Date-only values should be in the format 'YYYY-MM-DD'. If a time variable is not supplied, the row order of the data is used.")
}
Expand Down
2 changes: 1 addition & 1 deletion inst/qml/SpectralTimeSeries.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Form
{
name: "time"
label: qsTr("Time")
allowedColumns: ["ordinal", "nominalText"]
allowedColumns: ["ordinal", "nominal"]
singleVariable: true
info: qsTr("Optional. Can either be an ordinal variable indicating the order of the observations, or a text variable indicating the date/time stamp of the observations. Combined date and time values should be in the standard format 'YYYY-MM-DD HH:MM:SS', where seconds (':SS') can also be omitted. Date-only values should be in the format 'YYYY-MM-DD'. If a time variable is not supplied, the row order of the data is used.")
}
Expand Down
2 changes: 1 addition & 1 deletion inst/qml/StationarityTimeSeries.qml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Form
{
name: "time"
label: qsTr("Time")
allowedColumns: ["ordinal", "nominalText"]
allowedColumns: ["ordinal", "nominal"]
singleVariable: true
allowAnalysisOwnComputedColumns: false
info: qsTr("Optional. Can either be an ordinal variable indicating the order of the observations, or a text variable indicating the date/time stamp of the observations. Combined date and time values should be in the standard format 'YYYY-MM-DD HH:MM:SS', where seconds (':SS') can also be omitted. Date-only values should be in the format 'YYYY-MM-DD'. If a time variable is not supplied, the row order of the data is used.")
Expand Down

0 comments on commit 7141c5a

Please sign in to comment.