binbwplot: binbwplot

Description Usage Arguments Examples

Description

Produce binbw plot(s) of the given data.

Usage

1
binbwplot(inData, col = "grey", ylim = NULL, breaks = NULL, main = "BinBwPlot", xlab = "", ylab = "Data_Range", notch = FALSE)

Arguments

inData

data frame having two columns

col

Graphical parameters(color of the plot) for the binbwplot

ylim

y limits

breaks

bins of the histogram

main

The main title (on top) of the plot

xlab

X axis label

ylab

Y axis label

notch

Notch in the boxplot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
exampleData1<-read.csv("example.csv")

## Not run: binbwplot(exampleData1,
				col="grey",
				ylim=c(0,1),
				breaks=10,
				xlab="X-axis---Characters",
				ylab="Y-axis---Decimal_Values",
				main="Header of the binbwplot")
## End(Not run)

exampleData2<-read.csv("random.csv")

## Not run: binbwplot(exampleData2,
				col="pink",
				ylim=c(1,100),
				breaks=10,
				xlab="X-axis---Characters",
				ylab="Y-axis---Positive_integer_Values",
				main="Header of the binbwplot")
## End(Not run)

balajior/binbwplot documentation built on May 11, 2019, 6:17 p.m.