using Plots
f(x) = x^3 + 2x^2 - 7x + 35
plot(f)
About
This is an experimental site generated by Darren Irwin on 16 May 2023.
Quarto can be used to write formatted text along with snippets of runnable code from Julia (or Python, R, etc.).
Some Julia code:
You can even run R from Julia:
using RCall
"""
Rx <- c(1, 3, 5, 6, 7, 9, 11, 13)
y <- x + rnorm(length(x))
plot(x, y, type = "b", col = "blue")
y
"""
RObject{RealSxp}
[1] -0.1455922 2.4625628 3.5308117 6.4308776 7.6302361 8.3769841 10.0811398
[8] 13.7372896