Learn R Programming

⚠️There's a newer version (1.2.0) of this package.Take me there.

bulkreadr

The Ultimate Tool for Reading Data in Bulk

About the package

bulkreadr is an R package designed to simplify and streamline the process of reading and processing large volumes of data. With a collection of functions tailored for bulk data operations, the package allows users to efficiently read multiple sheets from Microsoft Excel/Google Sheets workbooks and multiple CSV files from a directory. It returns the data as organized data frames, making it convenient for further analysis and manipulation.

Whether dealing with extensive data sets or batch processing tasks, “bulkreadr” empowers users to effortlessly handle data in bulk, saving time and effort in data preparation workflows.

Additionally, the package seamlessly works with labelled data from SPSS and Stata. For a quick video tutorial, I gave a talk at the International Association of Statistical Computing webinar. The recorded session is available here and the webinar resources here.

The Concept Map

Installation

You can install bulkreadr package from CRAN with:

install.packages("bulkreadr")

or the development version from GitHub with

if(!require("devtools")){
 install.packages("devtools")
}

devtools::install_github("gbganalyst/bulkreadr")

Usage

Now that you have installed bulkreadr package, you can simply load it by using:

library(bulkreadr)

To get started with bulkreadr, read the docs.

Context

bulkreadr is designed to integrate with and augment the capabilities of established packages such as readxl, readr, and googlesheets4, offering enhanced functionality for reading bulk data within the R programming environment.

Copy Link

Version

Install

install.packages('bulkreadr')

Monthly Downloads

291

Version

1.1.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Ezekiel Ogundepo

Last Published

May 26th, 2024

Functions in bulkreadr (1.1.1)

%>%

Pipe operator
generate_dictionary

Create a data dictionary from labelled data
read_csv_files_from_dir

Reads all CSV files from a directory
pull_out

Extract or replace parts of an object
look_for

Look for keywords variable names and descriptions in labelled data
read_excel_files_from_dir

Read Excel Workbooks data from a directory
fill_missing_values

Fill missing values in a data frame
inspect_na

Summarize missingness in data frame columns
convert_to_date

User friendly date parsing function
read_excel_workbook

Import data from multiple sheets of an Excel workbook
read_gsheets

Import data from multiple sheets in Google Sheets
read_stata_data

Read Stata data file
read_spss_data

Read SPSS data file
bulkreadr-package

bulkreadr: The Ultimate Tool for Reading Data in Bulk