项目作者: MohammedFCIS

项目描述 :
Tibble Explorer
高级语言: R
项目地址: git://github.com/MohammedFCIS/tibbleexplorer.git
创建时间: 2019-12-03T19:07:39Z
项目社区:https://github.com/MohammedFCIS/tibbleexplorer

开源协议:Other

下载


tibbleexplorer

Lifecycle:
experimental
Travis build
status
AppVeyor build
status

Overview

The goal of tibbleexplorer is to provide an attractive and easy to use
simple shiny UI for R tibbles fields exploration.

The application consists of the following modules that gives statistical
information about each type category of features and an overview of the
tibble itself:

  • Overview
  • Categorical Features
  • Numerical Features
  • DateTime Features
  • Character Features

Overview

  • Features and their datatypes:
    • Features Diagram
    • Features statistics overview
  • Tibble statistics:
    • Number of observations
    • Number of features
    • Number of categorical features
    • Number of numerical features
    • Number of datetime features
    • Number of character features
  • Charts:
    • Missing data plots

Categorical Features

  • Charts:
    • Levels Frequency
    • Cross Tabulations (with Chi-square)

Numerical Features:

  • Charts:
    • Descriptive Statistics ## Installation

You can install the released version of tibbleexplorer from
CRAN with:

  1. install.packages("tibbleexplorer")

And the development version from GitHub with:

  1. # install.packages("devtools")
  2. devtools::install_github("MohammedFCIS/tibbleexplorer")

Example

This is a basic example which shows you how to solve a common problem:

  1. library(MASS)
  2. tibbleexplorer::run_app(birthwt)