Append row to CSV using R Last Updated : 28 Apr, 2021 Comments Improve Suggest changes Like Article Like Report In this article, we will see how to append rows to a CSV file using R Programming Language. By default, the write.csv() function overwrites entire file content. In order to append the data to a CSV File, use the write.table() method instead and set the parameter, append = TRUE. The write.table method prints its required argument x, upon conversion of the .csv file into the data frame to a file or connection. Syntax: write.table(x, file = "", append = FALSE, quote = TRUE, sep = " ", row.names = TRUE, col.names = TRUE) Parameters: x : The row data in the data frame objectfile : The file to append row tosep : The field separator string, that is within each row of x values are separated by this separator. In case the file is empty, the contents are written on to the .csv file upon creation within the same directory. The following code illustrates the applicability of write.table() method on an empty .csv file. Example R # defining the data for the csv file # data is organised into 4 columns data = data.frame(ID = 1:4, Name = c("A","B","C","D"), Post=c("Peon","SDE","Manager","SDE"), Age = c(23,39,28,39)) # write data to a sample.csv file write.table(data, file = "sample.csv") Output The contents are written onto the empty sample.csv file The following snippet shows how to append a row to the CSV file already composed of a few rows. The changes are made to the specified CSV file, and upon each operation, one-row count is incremented. Example: R # defining a row row <- data.frame('1', 'A', 'Manager', '24') # sample csv name csv_fname = "sample.csv" # writing row in the csv file write.table(row, file = csv_fname, sep = ",", append = TRUE, quote = FALSE, col.names = FALSE, row.names = FALSE) Output "sample.csv" : After the execution of Python script Comment M mallikagupta90 Follow 0 Improve M mallikagupta90 Follow 0 Improve Article Tags : R Language R-CSV Explore R Tutorial | Learn R Programming Language 4 min read IntroductionR Programming Language - Introduction 4 min read Interesting Facts about R Programming Language 4 min read R vs Python 5 min read Environments in R Programming 3 min read Introduction to R Studio 4 min read How to Install R and R Studio? 4 min read Creation and Execution of R File in R Studio 5 min read Clear the Console and the Environment in R Studio 2 min read Hello World in R Programming 2 min read Fundamentals of RBasic Syntax in R Programming 3 min read Comments in R 3 min read R-Operators 5 min read R-Keywords 2 min read R-Data Types 5 min read VariablesR Variables - Creating, Naming and Using Variables in R 5 min read Scope of Variable in R 5 min read Dynamic Scoping in R Programming 5 min read Lexical Scoping in R Programming 4 min read Input/OutputTaking Input from User in R Programming 7 min read Printing Output of an R Program 4 min read Print the Argument to the Screen in R Programming - print() Function 2 min read Control FlowControl Statements in R Programming 4 min read Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switch 3 min read Switch case in R 2 min read For loop in R 5 min read R - while loop 5 min read R - Repeat loop 2 min read goto statement in R Programming 2 min read Break and Next statements in R 3 min read FunctionsFunctions in R Programming 5 min read Function Arguments in R Programming 4 min read Types of Functions in R Programming 6 min read Recursive Functions in R Programming 4 min read Conversion Functions in R Programming 4 min read Data StructuresData Structures in R Programming 4 min read R Strings 6 min read R-Vectors 4 min read R-Lists 6 min read R - Array 7 min read R-Matrices 10 min read R-Factors 4 min read R-Data Frames 6 min read Object Oriented ProgrammingR-Object Oriented Programming 7 min read Classes in R Programming 3 min read R-Objects 3 min read Encapsulation in R Programming 3 min read Polymorphism in R Programming 6 min read R - Inheritance 7 min read Abstraction in R Programming 3 min read Looping over Objects in R Programming 5 min read S3 class in R Programming 8 min read Explicit Coercion in R Programming 3 min read Error HandlingHandling Errors in R Programming 3 min read Condition Handling in R Programming 5 min read Debugging in R Programming 3 min read Like