Learn R Programming

lessR (version 2.1.1)

help.me: Help System for Statistics by Topic that Suggests Related Functions

Description

R works by entering function names and arguments. R provides extensive help for each available function based on a function's name, but these names are not apparent to someone who has not memorized them or has access to their definitions. To alleviate this problem, this help system suggests and briefly explains various function calls regarding a requested topic for statistical analysis.

Usage

help.me(topic=NULL)

Arguments

topic
Message reference, either null to specify a list of available topics or a specific argument to reference a specific help message.
...
Other parameter values to be passed to help.me.

Details

help.me() displays a list of help topics, listed below.

help.me("topic") generally displays the available functions relevant for the specified topic.

help.me("help.to.pdf") generates a pdf file of the full contents of all the help topics.

---

data: Create a csv data file from a worksheet application.

read: Read an external data file in csv format.

write: Write the contents of mydata to a data file in csv format.

library: Many libraries of functions developed by others can be added to R.

---

prob: Probabilities for Normal and t-distributions.

random: Random number generation.

sample: Generate random samples.

---

histogram: Histogram of a numeric variable.

bar.chart: Bar chart of a categorical variable.

plot: Run charts, scatterplots, function graphs.

---

stats: Summary statistics.

one.sample: Analysis of a single sample of data.

two.samples: The mean difference and related statistics.

many.samples: Compare means across two or more groups.

props: Compare proportions across two or more groups.

power: Power analysis for the t-test.

cor: Correlation analysis.

reg: Regression analysis.

See Also

help.

Examples

Run this code
# list the information needed to access a specific topic
help.me()

# specific help message regarding summary statistics
help.me("stats")

Run the code above in your browser using DataLab