Learn R Programming

GLDEX (version 2.0.0.9.3)

pretty.su: An alternative to the normal pretty function in R.

Description

Divide a range of values into equally spaced divisions. End points are given as output.

Usage

pretty.su(x, nint = 5)

Value

A vector of endpoints dividing the data into equally spaced regions.

Arguments

x

A vector of values.

nint

Number of intervals required.

Author

Steve Su

Details

This is also used for the plotting of histogram in the histsu function.

See Also

Examples

Run this code
# Generate random numbers from normal distribution:
junk<-rnorm(1000,2,3)

# Cut them into 7 regions, 8 endpoints.
pretty.su(junk,7)

Run the code above in your browser using DataLab