Post With Code

news
code
analysis
Author

Siddharth Vishwanath

Published

January 23, 2023

This is a post with executable code.

This chunk executes R code

library(reticulate)
library(JuliaCall)
plot(
    rnorm(100), 
    rnorm(100),
    pch=20,
    col="dodgerblue1"
)

This chunk executes python code

import os
os.getwd()

This chunk executes Julia code

using Plots
plot(
    1:0.1:5, 
    x -> x^1.1 + log(x) * sinpi(x), 
    label=""
)