Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢创建一堆 googleVis 图表,其中一个是我创建的图表,我喜欢创建一个具有自定义名称的不同 html 文件,以便我可以在我的首页中使用 div 引用它们。
例如,我正在这样做:
x <- gvisTable(mtcars) writeLines(x, "cars.html")
我收到此错误:
writeLines(x, "cars.html") 中的错误:'text' 参数无效
想法我将如何解决这个问题?
我得到了答案,我可以简单地把它写到我喜欢的任何 html 文件中:
cat(x$html$chart, file="tmp.html")