Displaying 1 result from an estimated 1 matches for "cl12".
Did you mean:
  c12
  
2002 Feb 21
0
data.dump from S to R: no functions
...a[a[,1]!="function",]
Get the names:
Splus/G:/path-8/meteo/smeteo>b <- dimnames(a)[[1]]
Splus/G:/path-8/meteo/smeteo>b
 [1]            ".Last.fixed"            ".Last.value"
"INM.cods"     "INMS.clima.pre.cl1"
 [5]    "INMS.clima.pre.cl12"     "INMS.clima.pre.cl4"
etc.
Then if you want you can select in b:
Splus/G:/path-8/meteo/smeteo>b <- b[-c(1,2,32,33,34)]
And finally data.dump:
Splus/G:/path-8/meteo/smeteo>data.dump(b,file="G:/nofunciones.dmb")
You can also write a simple function that woul...