search for: naf

Displaying 6 results from an estimated 6 matches for "naf".

Did you mean: na
2010 Jun 03
2
two columns into one
...iable from two variables incorporating all possible combinations of the values?? test<-sample(c("A",NA,"B"),100,replace=T) test2<-sample(c("E",F,"A"),100,replace=T) tes<-cbind(test,test2) pseduocode: r<-function(test,test2) r AE AF AA NAE NAF NAA BE BF BA //M [[alternative HTML version deleted]]
2000 Nov 07
1
coercion of LHS to a list
...39;m using R to manipulate some data for testing nebulisers. I have a data frame as follows: Volt ABal 0.4208 A1 0.3982 AF 0.4353 B1 0.3954 BF 0.4355 C1 0.3975 CF 0.4345 I also have a calibration curve loaded Voltage NaF LogNaF 1 0.3588 20 1.30103 2 0.3990 100 2.00000 3 0.4391 500 2.69897 If I try to create a new column at the R command line, as follows: nebdata$logconc<-nebdata$Volt*nebcal.fm$coefficients[2]+nebcal.fm$coefficients[1] I get this (as I expected): > nebdata Volt lo...
2008 Oct 29
3
Installer stopped short
Hi, I just tried to install a CentOS 5 desktop on very recent hardware, an Acer desktop machine. The installer stopped short very early. I gave Ubuntu 8.04 a shot, and it installed without a problem. Now what can I do about this? Is there a way to use some "enhanced" kernel (like the centos.plus kernel) to perform the install? I guess what's missing there is a specific driver
2016 Oct 19
2
Increasing Icecast input buffering ?
Hello, My question is : is there a way to have Icecast buffer the input / increase the input buffering ? Even though the latency would increase ? Why : On some radio streams, the listeners to a Icecast stream experience very frequent silences / disconnections. I strongly suspect that the source has a slow/bursty connection to Icecast so that the data sent to the Icecast server arrives in
2005 Feb 15
3
using poly in a linear regression in the presence of NA f ails (despite subsetting them out)
This smells like a bug to me. The error is triggered by the line: variables <- eval(predvars, data, env) inside model.frame.default(). At that point, na.action has not been applied, so poly() ended being called on data that still contains missing values. The qr() that issued the error is for generating the orthogonal basis when evaluating poly(), not for fitting the linear model itself.
2005 Feb 15
3
using poly in a linear regression in the presence of NA f ails (despite subsetting them out)
This smells like a bug to me. The error is triggered by the line: variables <- eval(predvars, data, env) inside model.frame.default(). At that point, na.action has not been applied, so poly() ended being called on data that still contains missing values. The qr() that issued the error is for generating the orthogonal basis when evaluating poly(), not for fitting the linear model itself.