简体   繁体   English

R Plotly 添加图片水印

[英]R Plotly add image watermark

I would like to have an image/watermark added to a double y-axis plot, somehow my code doesnt work..... How is this possible?我想将图像/水印添加到双 y 轴 plot,不知何故我的代码不起作用.....这怎么可能? It doesnt error but the image is not added它没有错误,但没有添加图像

df <- data.frame(x = 1:50,
                 y1 = c(20:5,6:10,9:3,4:20, 19:15),
                 y2 = c(100:115,200:204,50:44,4:20, 66:62))

And my code还有我的代码

plot_ly(df) %>% 
  add_lines(type = 'scatter', mode = "lines", 
            name = "test", 
            x = ~x, y = ~y1,
            line = list(color = '#999999'),
            hoverinfo = "text",
            text = ~paste(round(y1, 1), x))  %>%
  add_lines(type = 'scatter', mode = "lines", 
            name = "test", yaxis = 'y2',
            x = ~x, y = ~y2,
            line = list(color = '#CC79A7'),
            hoverinfo = "text",
            text = ~paste(round(y2, 1), x)) %>%
  #layout
  layout(title = "test",
         xaxis = list(titel = "Date", 
                      rangeslider = list(thickness = 0.05)),
         yaxis = list(side = 'left', title = 'test', 
                      showgrid = F, zeroline = F, type = "log",
                      showline = T),
         images = list(source = "https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo.png",
                       xref = "paper",
                       yref = "paper",
                       xanchor = "left", 
                       yanchor = "bottom",
                       x= 4,
                       y=4,
                       sizex = 5,
                       sizey = 5,
                       opacity = 0.8),
         yaxis2 = list(side = 'right', overlaying = "y", 
                       title = 'test', 
                       showgrid = F, zeroline = F, 
                       showline = T))

在此处输入图像描述

The problem is that you have no access to the Rstduio-logo.png.问题是您无权访问 Rstduio-logo.png。

  1. Create a www folder创建一个 www 文件夹
  2. Put a.png in this www folder let's say I call it test.png将 a.png 放在这个 www 文件夹中,假设我称之为 test.png
  3. Then simply:然后简单地说:

layout(images = list(source = "test.png"))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM