ggwatercolor | R Documentation |
This function takes a ggplot2 output and request a handpainted watercolor painting of it! Running this function will bring you to a webpage to confirm the request–a followup email will contain the details and how to pay. No painting will be made until after an email exchange and the payment sent.
ggwatercolor(
plot,
orientation = c("landscape", "portrait"),
contact_email,
address,
...
)
plot |
the plot to use as an art print. |
orientation |
should the plot be landscape or portrait? |
contact_email |
email address to send order updates. |
address |
the physical address to mail the painting to. Use the |
... |
other options to pass to |
quantity |
the number of prints to order (defaults to 1). |
Watercolor paintings will be made 8"x10" on 140lb cold-press paper with professional light-safe paints. Since these are painted by hand, they may not be exactly accurate to the original, and may be simplified depending on the complexity of the original (which will be discussed by email).
The paintings take up to 4 weeks to be delivered.
address()
to format an address for ggirl
library(ggplot2)
library(ggirl)
delivery_address <- address(name = "Fake person", address_line_1 = "101 12th st",
address_line_2 = "Apt 17", city = "Seattle", state = "WA",
postal_code = "98102", country = "US")
contact_email = "fakeemail275@gmail.com"
plot <- ggplot(data.frame(x=1:10, y=runif(10)),aes(x=x,y=y))+geom_line()+geom_point()+theme_gray(48)
ggwatercolor(plot, orientation = "landscape",
contact_email = contact_email, address = delivery_address)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.