Create a histogram.
emoji_histogram(
x = x,
bins = 10,
emoji = "🌸",
emojiSize = 20,
xticks = 10,
yticks = 5,
xtitle = "Value",
ytitle = "Count",
title = "Emoji Histogram",
font = "Verdana, Geneva, Tahoma, sans-serif",
xFontSize = 10,
yFontSize = 10,
xtitleFontSize = 14,
ytitleFontSize = 14,
titleFontSize = 18,
stroke = "#444",
strokeWidth = 0.5,
width = 500,
height = 300,
opacity = 0.9,
axisCol = "#555",
bgcol = "#fffafc"
)
A vector of data.
The number of bins to consider. Defaults to 30.
The emoji to use, defaults to "🌸"
Optional. the number of x-axis ticks to consider.
Optional. The number of y-axis ticks to consider.
Optional. The title of the x-axis.
Optional. The title of the y-axis.
Optional. The title of the plot.
The font family to consider for the titles. Defaults to "Verdana, Geneva, Tahoma, sans-serif".
the font size of the x-axis labels. Defaults to 10.
the font size of the y-axis labels. Defaults to 10.
The font size of the x-axis title. Defaults to 16.
The font size of the y-axis title. Defaults to 16.
The font size of the plot title. Defaults to 22.
The stroke color of the bars. Defaults to 'crimson'.
Optional. the stroke width of the bars.
Optional. The width of the SVG output.
Optional. The height of the SVG output.
The color opacity of the bars (from 0 to 1). Defaults to 1.
the color of the x and y axis. It includes the ticks, the labels and titles. Defaults to 'black'.
The background color of the SVG. Defaults to "#CAD0D3" HEX color.
The size of the emoji. Defaults to 20
The color of the bars. Defaults to 'crimson'.
A SVG histogram.
emoji_histogram(
x = mtcars$mpg,
emoji = "🌸",
bins = 20,
fill = "crimson",
stroke = "white",
strokeWidth = 1,
title = "Distribution of the hwy variable",
width = "20",
height = "10"
)
#> Error in emoji_histogram(x = mtcars$mpg, emoji = "🌸", bins = 20, fill = "crimson", stroke = "white", strokeWidth = 1, title = "Distribution of the hwy variable", width = "20", height = "10"): unused argument (fill = "crimson")