Displaying 2 results from an estimated 2 matches for "df_data".
Did you mean:
  df_date
  
2004 May 04
1
RE: more on lm(y~x) question: removing NA´s
...once lm(y~x) encounters more than one 
> missing value (I have marked the important bit with "***********"):
> 
> par(mfrow=c(5,5))
> p_seq(3,122,2)
> i_0
> k_0
> number_0
> for (i in p) {
>    j_foranalysis[93:174,i+1]
>    k_foranalysis[93:174,i]  
>    df_data.frame(j,k)
>    mainlab1_substring(names(foranalysis[i]),2,8)
>    mainlab2_"; corr.:"
>    mainlab3_round(cor(j,k,na.method="available"),4)
>    mainlab4_"; excl.Mono:"
>    mainlab5_round(cor(j[j<0.9],k[j<0.9],na.method="available"),4)...
2002 Sep 27
1
Bits of scientific notation in write.table() output
What's the preferred method for avoiding `unexpected' bits of scientific
notation in write.table() output? I've found several inelegant workarounds,
but I'm sure I'm overlooking an obvious answer
A simple example.. . 
> df_data.frame(df=95000+1000*0:10); df 
       df
1   95000
2   96000
3   97000
4   98000
5   99000
6  100000
7  101000
8  102000
9  103000
10 104000
11 105000
> write.table(df,'c:\\df.txt',quote=F,sep='\t',row.names=F,col.names=F)
.. . creates a file with contents .. . 
95000
96000
97...