Learn R Programming

soil.spec (version 2.1.3)

explore.data: Data summary

Description

Another way of getting data summary statitics and organized in a user friendly way- tabular form

Usage

explore.data(datafile)

Arguments

datafile

Value

  • complete.casesNumber of complete observations
  • AverageMean of each numeric column
  • MinMinimum value of each numeric column
  • MaxMaximum value of each numeric column
  • SdStandard deviation value of each numeric column

Details

This takes a table and returns the total number of complete cases (excluding missing values), mean,minimum, maximum and standard deviation values for numeric columns in a data table. The output is well formated for a quick and useful exploration view

Examples

Run this code
#Start by reading a file with data to be explored
	soil<-read.csv(file.choose())
	explore.data(soil)

Run the code above in your browser using DataLab