Found 133 packages in 0.16 seconds
Simple Data Frames
Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.
Read Rectangular Text Data
The goal of 'readr' is to provide a fast and friendly way to read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly parse many types of data found in the wild, while still cleanly failing when data unexpectedly changes.
Tools to Make Developing R Packages Easier
Collection of package development tools.
Read Excel Files
Import excel files into R. Supports '.xls' via the embedded 'libxls' C library < https://github.com/libxls/libxls> and '.xlsx' via the embedded 'RapidXML' C++ library < https://rapidxml.sourceforge.net/>. Works on Windows, Mac and Linux without external dependencies.
A Simpler Way to Find Your Files
Constructs paths to your project's files. Declare the relative path of a file within your project with 'i_am()'. Use the 'here()' function as a drop-in replacement for 'file.path()', it will always locate the files relative to your project root.
Data from Gapminder
An excerpt of the data available at Gapminder.org. For each of 142 countries, the package provides values for life expectancy, GDP per capita, and population, every five years, from 1952 to 2007.
Read and Write from the System Clipboard
Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.
Read and Write Rectangular Text Data Quickly
The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel and writes to disk asynchronously from formatting.
An Interface to Google Drive
Manage Google Drive files from R.
Access Google Sheets using the Sheets API V4
Interact with Google Sheets through the Sheets API v4 < https://developers.google.com/sheets/api>. "API" is an acronym for "application programming interface"; the Sheets API allows users to interact with Google Sheets programmatically, instead of via a web browser. The "v4" refers to the fact that the Sheets API is currently at version 4. This package can read and write both the metadata and the cell data in a Sheet.