Learn R Programming

ggx (version 0.1.1)

gghelp: Converts a natural language query into a 'ggplot2' command.

Description

Converts a natural language query into a 'ggplot2' command string. Queries should be related to the styling of the plot, such as, axis label font size, axis label title, legend, and similar.

Usage

gghelp(query = "", print = TRUE)

Arguments

query

Character. A natural language command related to the styling of a ggplot.

print

Boolean. Print out the command or just return it.

Value

Returns a string if there is a matching ggplot command in the database. Otherwise returns NULL.

Details

'gghelp' maintains a database of keywords that match typical queries related to styling 'ggplot2' graphs. Based on the users natural language query, the function tries to find the best match and then returns the ggplot2 command as string.

See Also

gg_

Examples

Run this code
# NOT RUN {
gghelp("rotate x-axis labels by 90 degrees")

gghelp("increase font size on x-axis label")

gghelp("set x-axis label to 'Length of Sepal'")


# }

Run the code above in your browser using DataLab