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
Returns a list of all data qualities in the system.
99
+
load_Data_Qualities(id::Int)
105
100
106
-
- 271 - Unknown dataset. Data set with the given data ID was not found (or is not shared with you).
107
-
- 272 - No features found. The dataset did not contain any features, or we could not extract them.
108
-
- 273 - Dataset not processed yet. The dataset was not processed yet, features are not yet available. Please wait for a few minutes.
109
-
- 274 - Dataset processed with error. The feature extractor has run into an error while processing the dataset. Please check whether it is a valid supported file. If so, please contact the API admins.
println("Unknown dataset. Data set with the given data ID was not found (or is not shared with you).")
121
-
elseif r.status ==272
122
-
println("No features found. The dataset did not contain any features, or we could not extract them.")
123
-
elseif r.status ==273
124
-
println("Dataset not processed yet. The dataset was not processed yet, features are not yet available. Please wait for a few minutes.")
125
-
elseif r.status ==274
126
-
println("Dataset processed with error. The feature extractor has run into an error while processing the dataset. Please check whether it is a valid supported file. If so, please contact the API admins.")
- 361 - Unknown dataset. The data set with the given ID was not found in the database, or is not shared with you.
140
-
- 362 - No qualities found. The registered dataset did not contain any calculated qualities.
141
-
- 363 - Dataset not processed yet. The dataset was not processed yet, no qualities are available. Please wait for a few minutes.
142
-
- 364 - Dataset processed with error. The quality calculator has run into an error while processing the dataset. Please check whether it is a valid supported file. If so, contact the support team.
143
-
- 365 - Interval start or end illegal. There was a problem with the interval start or end.
106
+
load_Data_Features(id::Int)
107
+
108
+
Returns a list of all data qualities for dataset `id`.
println("Unknown dataset. The data set with the given ID was not found in the database, or is not shared with you.")
157
-
elseif r.status ==362
158
-
println("No qualities found. The registered dataset did not contain any calculated qualities.")
159
-
elseif r.status ==363
160
-
println("Dataset not processed yet. The dataset was not processed yet, no qualities are available. Please wait for a few minutes.")
161
-
elseif r.status ==364
162
-
println("Dataset processed with error. The quality calculator has run into an error while processing the dataset. Please check whether it is a valid supported file. If so, contact the support team.")
163
-
elseif r.status ==365
164
-
println("Interval start or end illegal. There was a problem with the interval start or end.")
0 commit comments