Imagen solo enlazada
Escribir una matriz, guardarla en un txt y abrirla. Por algo se empieza...> a<-(c("hola","adios"))
> a
[1] "hola" "adios"
> b<-(c(1,2))
> b
[1] 1 2
> w<-cbind(a,b)
> w
a b
[1,] "hola" "1"
[2,] "adios" "2"
> z<-rbind(a,b)
> z
[,1] [,2]
a "hola" "adios"
b "1" "2"
> write.table(w,file="c:/r/datos3.txt")
> read.table("c:/r/datos3.txt")
a b
1 hola 1
2 adios 2
>
¿Qué es R?
http://es.wikipedia.org/wiki/R_(lenguaje_de_programaci%C3%B3n)
¿Se pueden hacer cosas bonitas con R?
http://addictedtor.free.fr/graphiques/
No hay comentarios:
Publicar un comentario