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

Description Usage Arguments Details Value See Also Examples

View source: R/ggx.R

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

1
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.

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.

Value

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

See Also

gg_

Examples

1
2
3
4
5
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'")

ggx documentation built on Jan. 22, 2021, 5:09 p.m.