-
Notifications
You must be signed in to change notification settings - Fork 25
Location of Html file in Basic R #13
Comments
Do I understand correctly; you'd like to capture the html generated and save as a static web page? That's an interesting one, might have to be a new feature. |
You can set the library(radarchart)
options(viewer = function(url, ...) print(url))
chartJSRadar(scores = skills)
#> [1] "/var/folders/ws/7rmdm_cn2pd8l1c3lqyycv0c0000gn/T//RtmpThXIWA/viewhtml577e8c720f9/index.html" |
Thanks for this, I guess it need not be a static webpage, but rather if I could control the location of the files created, such that they point to a user defined location (rather than the tempdir()). I'll see what I can do with the options and viewer function. |
@alanmcmahon, the built-in |
@timelyportfolio Thanks, |
Also, this wch/webshot#10 (comment) might help if you are ok using a @gaborcsardi, I think the A lot of |
Excellent. Tried it and it is perfect. Thank you so much :) |
Thanks all, |
Hi,
I'm fairly new to R, so my apologies if my question is basic.
I'm having trouble understanding if I can control the location of the html page when created direct from the R console.
I'm not using shiny or R studio, and the resulting chart loads in my browser from a subfolder within the tempdir() in R. Is there a way to change this?
I've tried to use the chartJSRadar_html, but am unsure what I should specify?
Thanks :)
The text was updated successfully, but these errors were encountered: