Skip to content
/ atmor Public

An experimental R package to handle multiple dataset issues i.e., from data cleaning/handling to plotting and so on. Currently handles NAs only.

Notifications You must be signed in to change notification settings

kjibran/atmor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

atmor

An experimental R package to handle multiple dataset issues i.e., from data cleaning/handling to plotting and so on. Currently handles NAs only.

Functions

There are three basic functions as part of this package.

check_NA This function checks whethere there are NA in the data frame.

find_NA This function locates rows and columns in a data frame having NA.

fix_NA This function replaces NAs with blanks.

mysummary Added just to test addition of new fucntion to an existing R package.

Installation

library(devtools)
#if you don't have the package, run install.packages("devtools")
install_github("kjibran/atmor")

Test dataset

The sample data is also provided to test the package. However, users are welcome to test the functions on other dataset.

Usage

library(atmor)
#assuming dat=dataset to be tested
atmor::check_NA(dat)
atmor::find_NA(dat)
atmor::fix_NA(dat)

Example

atmor::check_NA(dat)
#[1] "NA exists"

About

An experimental R package to handle multiple dataset issues i.e., from data cleaning/handling to plotting and so on. Currently handles NAs only.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published