0

I am currently using R for work statics and whenever I want to add a column or a row I always go back to .csv file.

What command should i use to input the data via the terminal ? I use Linux OS.

thelatemail
  • 91,185
  • 12
  • 128
  • 188
Madona wambua
  • 1,408
  • 1
  • 21
  • 37
  • Your screenshot and `java` tag were both irrelevant to your question - i've removed them. – thelatemail Apr 20 '15 at 01:27
  • You had a `java` **tag** on this question. I'm more than well aware what R is, as are most people around these parts. We just don't need a screenshot of your desktop to figure this question out. – thelatemail Apr 20 '15 at 03:35

1 Answers1

2

For a single, command-line addition rbind will do.

r rbind(Data, newrow)

Just keep in mind that for repeated application, rbind is known to be slow.

Community
  • 1
  • 1
Justin Fletcher
  • 2,319
  • 2
  • 17
  • 32