Technology News

How to Import Data and Export Results in R

How to Import Data and Export Results in R

With the craze for “big” data, analytics tools have gained popularity. One of these tools is the programming language R. In this guide, I’ll show how to extract data from text files, CSV files, and databases. Then I’ll show how to send that data to a web server.

You may be wondering, Do I need to learn a new language all over again? The answer is no! All you need to know is a few commands.

Programmers from diverse backgrounds who work on web applications in a variety of programming languages can import the data into R and, after processing, export it in the format they require.

Note: If you’re not familiar with R, I recommend SitePoint’s article on how to install R and RStudio. It provides basic commands in R and a general introduction to the language. This post covers commands that can be run on the R terminal without the use of the RStudio IDE. However, handling large datasets on a terminal could turn out to be difficult for beginners, so I’d suggest using RStudio for an enriched experience. In RStudio, you can run the same commands in the Console box.

Handling Text Files

A text file present on your local machine can be read using a slightly modified read.table command. Because it’s designed for reading tables, you can set the separator to an empty string ("") to read a text file line by line:

file_contents = read.table("<path_to_file>", sep = "") 

Note: where you see angled brackets such as in <path_to_file>, insert the necessary number, identifier, etc. without the brackets.

The path to the file may also be the relative path to the file. If your rows have unequal length, you have to set fill = TRUE as well. The output of this command is a data frame in R.

If your file is too large to be read in one go, you can try reading it in steps using the skip and nrow options. For instance, to read the lines 6–10 in your file, run the following commands:

connection <- file("<path_to_file>") lines6_10 = read.table(connection, skip=5, nrow=5) # 6-10 lines 

Continue reading How to Import Data and Export Results in R on SitePoint.

Amazon partners with Seraphim on AWS accelerator for space startups
How to Build an Engaged Online Community: 7 Tips

Related Articles

A healthcare worker administers…

a-healthcare-worker-administers
A healthcare worker administers the coronavirus disease (COVID-19) vaccine to a pregnant woman, amidst the spread of the SARS-CoV-2 variant Omicron, in Johannesburg, South Africa, December 9, 2021. REUTERS/ Sumaya…

Getting Started With The cPanel® API

Exploring the Potential of the Metaverse: A New World Awaits
cPanel & WHM’s web interfaces offer a comprehensive server and web hosting management solution, but hosts and developers often want to automate tasks or integrate cPanel’s tools with other software.…

Zooming Images in a Grid Layout

Zooming Images in a Grid Layout
Creating a grid of images is easy, thanks to CSS Grid. But making the grid do fancy things after the images have been placed can be tricky to pull off.…

How to Revamp Your Phone Case

How to Revamp Your Phone Case
Every so often, a new ‘trendy’ phone case is launched that becomes a staple for everyone. For this very reason, we’re going to discuss budget-friendly methods you can use to…