<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Hi all,<br>
<br>
what is wrong with this? R:<br>
---------------------------------------------------------------------------------------------<br>
<br>
<br>
library(DatABEL)<br>
<br>
n = 100 # number of individuals<br>
l = 2    # number of covariates<br>
m = 10 # number of snps<br>
t = 5  # number of traits<br>
<br>
set.seed(1001)<br>
runif(3)<br>
<br>
XL <- matrix(rnorm((l+1)*n),ncol=(l+1)) # first column should be ones (intercept)<br>
for(i in 1:n*l){ if(sample(1:10,1) > 5) XL[i]=0/0}<br>
<br>
colnames(XL) <- c("intercept", paste("cov",1:l,sep=""))<br>
rownames(XL) <- paste("ind",1:n,sep="")<br>
XL_db <- matrix2databel(XL,filename="XL",type="FLOAT")<br>
<br>
<br>
<br>
---------------------------------------------------------------------------------------------<br>
The error that I get is this:<br>
<br>
file contains data of unknown type 5<br>
Error in !.Call("assignDoubleMatrix", x@data, newi, newj, as.double(value),  : <br>
  invalid argument type<br>
<br>
I cannot create any more databel flaot files....<br>
<br>
<br>
A Frank<br>
</div>
</body>
</html>