Skip to content
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

More plot packages support in RMarkdown document #124

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

Non-Contradiction
Copy link
Owner

Description

This PR wants to support more Julia plot packages in RMarkdown document like PyPlots.

Related Issue

#121
#123

Example

If the PR is finished, then things like

using PyPlot
# use x = linspace(0,2*pi,1000) in Julia 0.6
x = range(0; stop=2*pi, length=1000); y = sin.(3 * x + 4 * cos.(2 * x));
plot(x, y, color="red", linewidth=2.0, linestyle="--")
title("A sinusoidally modulated sinusoid")

should give a plot in a julia chunk in an RMarkdown document.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant