Displaying 3 results from an estimated 3 matches for "acand".
Did you mean:
cand
2009 Oct 26
1
issue with levels of a factor after subsetting
...g a weird problem, i'm importing the next data base:
>car<-read.csv2("Historicos.csv")
'data.frame': 1818 obs. of 6 variables:
$ Dpto : Factor w/ 11 levels "ANTIOQUIA","ATL?NTICO",..: 2 2 2 2 2 1
1 1 1 5 ...
$ Rio : Factor w/ 43 levels "Acand?","Anchicay?",..: 26 26 26 26 26
4 4 4 4 39 ...
$ Var : Factor w/ 13 levels "CAUDAL","CD",..: 1 1 1 1 1 1 1 1 1 1 ...
$ Valor : num 7150 7150 7121 7121 7121 ...
$ A?o : int 2002 2003 2004 2009 2005 2002 2003 2004 2005 2009 ...
$ Regi?n: Factor w/ 2 level...
2009 Oct 26
1
xyplot lines goes forth and backwards
...and the structure of the DB i'm using..
>car<-read.csv2("Historicos.csv")
>str(car)
'data.frame': 1818 obs. of 6 variables:
$ Dpto : Factor w/ 11 levels "ANTIOQUIA","ATLÁNTICO",..: 1 1 1 1 1 1 1 1 1
2 ...
$ Rio : Factor w/ 43 levels "Acandí","Anchicayá",..: 30 31 8 43 20 24 25
13 4 26 ...
$ Var : Factor w/ 13 levels "CAUDAL","CD",..: 1 1 1 1 1 1 1 1 1 1 ...
$ Valor : num 13.1 3 3 2.9 2.8 ...
$ Año : int 2002 2002 2002 2002 2002 2002 2002 2002 2002 2002 ...
$ Región: Factor w/ 2 levels &quo...
2011 Apr 21
0
C source code question (Robustbase edition)
...in ./mc.c
* ----- ---- ------
use
pull(a,n,k): finds the k-th order statistic of an
array a[] of length n (preserving a[])
*/
/*
whimed_i(a,iw,n): finds the weighted high median of an array
a[] of length n, with positive int weights iw[]
(using auxiliary arrays acand[], a_srt[] & iw_cand[]
all of length n).
*/
/* qn0() uses (and for C API:) */
/* Main routines for C API */
double qn(double *x, int n, int p0, int finite_corrn);
/* these have no extra factors (no consistency factor & finite_corr): */
double qn0(double *x, int n, int p0);
/* -----...