@@ -61,7 +61,7 @@ pp_addhdr('
61
61
);
62
62
63
63
pp_def('fill_m',
64
- Pars => 'a(n); float+ [o]b(n)',
64
+ Pars => 'a(n); [o]b(n)',
65
65
Inplace => 1,
66
66
GenericTypes => [F, D],
67
67
HandleBad => 1,
@@ -165,7 +165,7 @@ The output pdl badflag is cleared.
165
165
);
166
166
167
167
pp_def('dev_m',
168
- Pars => 'a(n); float+ [o]b(n)',
168
+ Pars => 'a(n); [o]b(n)',
169
169
Inplace => 1,
170
170
GenericTypes => [F, D],
171
171
HandleBad => 1,
@@ -191,7 +191,7 @@ Replaces values with deviations from the mean. Can be done inplace.
191
191
);
192
192
193
193
pp_def('stddz',
194
- Pars => 'a(n); float+ [o]b(n)',
194
+ Pars => 'a(n); [o]b(n)',
195
195
Inplace => 1,
196
196
GenericTypes => [F, D],
197
197
HandleBad => 1,
@@ -221,7 +221,7 @@ Standardize ie replace values with z_scores based on sample standard deviation f
221
221
);
222
222
223
223
pp_def('sse',
224
- Pars => 'a(n); b(n); float+ [o]c()',
224
+ Pars => 'a(n); b(n); [o]c()',
225
225
GenericTypes => [F, D],
226
226
HandleBad => 1,
227
227
Code => '
@@ -240,7 +240,7 @@ Sum of squared errors between actual and predicted values.
240
240
);
241
241
242
242
pp_def('mse',
243
- Pars => 'a(n); b(n); float+ [o]c()',
243
+ Pars => 'a(n); b(n); [o]c()',
244
244
GenericTypes => [F, D],
245
245
HandleBad => 1,
246
246
Code => '
@@ -262,7 +262,7 @@ Mean of squared errors between actual and predicted values, ie variance around p
262
262
);
263
263
264
264
pp_def('rmse',
265
- Pars => 'a(n); b(n); float+ [o]c()',
265
+ Pars => 'a(n); b(n); [o]c()',
266
266
GenericTypes => [F, D],
267
267
HandleBad => 1,
268
268
Code => '
@@ -284,7 +284,7 @@ Root mean squared error, ie stdv around predicted value.
284
284
);
285
285
286
286
pp_def('pred_logistic',
287
- Pars => 'a(n,m); b(m); float+ [o]c(n)',
287
+ Pars => 'a(n,m); b(m); [o]c(n)',
288
288
GenericTypes => [F, D],
289
289
HandleBad => 1,
290
290
Code => '
@@ -312,7 +312,7 @@ Calculates predicted prob value for logistic regression.
312
312
);
313
313
314
314
pp_def('d0',
315
- Pars => 'a(n); float+ [o]c()',
315
+ Pars => 'a(n); [o]c()',
316
316
GenericTypes => [F, D],
317
317
HandleBad => 1,
318
318
Code => '
@@ -343,7 +343,7 @@ Null deviance for logistic regression.
343
343
);
344
344
345
345
pp_def('dm',
346
- Pars => 'a(n); b(n); float+ [o]c()',
346
+ Pars => 'a(n); b(n); [o]c()',
347
347
GenericTypes => [F, D],
348
348
HandleBad => 1,
349
349
Code => '
@@ -370,7 +370,7 @@ Model deviance for logistic regression.
370
370
);
371
371
372
372
pp_def('dvrs',
373
- Pars => 'a(); b(); float+ [o]c()',
373
+ Pars => 'a(); b(); [o]c()',
374
374
GenericTypes => [F, D],
375
375
HandleBad => 1,
376
376
Code => '
0 commit comments