-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rendering ggplot in html output #351
Comments
Possible duplicate of #340 |
What should happen if you call
in a |
in the interactive mode in a |
It certainly renders, but is there no way to get the output included in the weaved markdown file? |
doing this has the same result: using RCall, DataFrames
d = DataFrame(v = [3,4,5], w = [5,6,7], x = [1,2,3], y = [4,5,6], z = [1,1,2])
ggplot(d, aes(x=:x,y=:y)) + geom_line() |
I am using RCall in
.jmd
file where I used themtcars
dataset to make a simple ggplot.using RCall
What do I need to do to get this rendered in the html file that is weaved? This the output I get
Obviously, just printing
p
in the julia chunk throws an error. Am I missing something?The text was updated successfully, but these errors were encountered: