R/Append.R

Defines functions Append

Documented in Append

Append <-
function(){
  ssdA<-read.table(file.choose(),header=TRUE,sep=',')
  ssdB<-read.table(file.choose(),header=TRUE,sep=',')
  ssdC<-rbind(ssdA,ssdB)
 # {write.csv(ssdC,file = file.choose(new = T),row.names=FALSE)}
{write.csv(ssdC,file = file.choose(new = TRUE),row.names=FALSE)}

}

Try the SSDforR package in your browser

Any scripts or data that you put into this service are public.

SSDforR documentation built on Nov. 24, 2023, 5:08 p.m.