Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Simplify data exploration and preparation in R, enabling quicker insights and reducing the time spent on tedious data manipulations.

License

Notifications You must be signed in to change notification settings

ashrithssreddy/dataframe-explorer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dataframeexplorer

CRAN License: MIT CRAN Downloads

A toolkit to simplify data exploration and preparation in R, enabling quicker insights and reducing time spent on tedious data manipulations.

Features

  • Identify constant columns to prevent redundant computations.
  • Detect duplicate columns to streamline datasets.
  • Generate frequency tables for each column, with outputs in Excel format.
  • Create a "glimpse" of your dataset for quick overview.
  • Determine the primary key of your dataset for efficient data manipulation.
  • Calculate percentiles for all numeric columns to understand data distribution.

Installation

To install the package from CRAN, use:

install.packages("dataframeexplorer")

Usage

Here are some common functions you can use with dataframeexplorer:

  • Detect constant columns:
    detect_const_cols(dataset)
  • Find duplicate columns:
    detect_dupl_cols(dataset)
  • Generate a frequency table:
    frequency_table(dataset, output_filename = "frequency_table.xlsx")
  • Create a dataset glimpse:
    glimpse_to_file(dataset, output_filename = "glimpse.txt")
  • Determine primary key:
    level_of_data(dataset, output_filename = "level.txt")
  • Calculate percentiles:
    percentiles_table(dataset, output_filename = "percentiles.xlsx")

Dependencies

  • R (>= 3.3.0)
  • Imports: tibble, data.table, magrittr, openxlsx, dplyr, plyr, tidyr, stringr

License

This package is licensed under the MIT License. See the LICENSE file for details.

Author

Developed and maintained by Ashrith Reddy.

Documentation

For full documentation and examples, please visit the CRAN page.

About

Simplify data exploration and preparation in R, enabling quicker insights and reducing the time spent on tedious data manipulations.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages