Fügen Sie ggvis einen Handlungstitel hinzu
Ich möchte einem ggvis-Plot einen Titel hinzufügen. Ich kann nirgendwo ein Beispiel finden. Es ist einfach, mit anderen R-Plots zu arbeiten, z.
library(ggplot2)
library(ggvis)
x <- 1:10
y <- x^2
df <- data.frame(x, y)
plot(x, y, main = "Plot Title") # Base R with title
ggplot(df, aes(x, y)) + geom_point() + ggtitle("Plot Title") # ggplot2 with title
df %>% ggvis(~x, ~y) %>% layer_points() # ggvis but no title??
Ich habe das Gefühl, etwas Offensichtliches zu verpassen. Jede Hilfe dankbar.