Displaying 2 results from an estimated 2 matches for "tmp_c".
Did you mean:
tmp__
2006 Feb 24
1
(Newbie) Aggregate for NA values
...9;s have
had, if they were included, and is excluding them from the means
causing some sort of bias. So I want the summary stat for the NA's
also.
Here is a simple example session (edited to remove the typos I made,
comments added later):
> tmp_a <- 1:10
> tmp_b <- rep(1:5,2)
> tmp_c <- rep(1:2,5)
> tmp_d <- c(1,1,1,2,2,2,3,3,3,4)
> tmp_df <- data.frame(tmp_a,tmp_b,tmp_c,tmp_d);
> tmp_df$tmp_c[9:10] <- NA ;
> tmp_df
tmp_a tmp_b tmp_c tmp_d
1 1 1 1 1
2 2 2 2 1
3 3 3 1 1
4 4 4 2 2
5...
2018 Feb 02
1
R-gui sessions end when executing C-code
...int K_c = asInteger(K);
double mu_c = asReal(mu);
double mu2_c = 1.0 - mu_c;
double error_c = asReal(err);
double lowest_double = 1e-15;
double tmp_c;
double denom;
double error_temp;
double error_i_c;
/* Make ready vector froms input */
PROTECT(q); n_prot++;
PROTECT(v); n_prot++;...