knitr::opts_chunk$set(echo = F) library(fidelis)
setup2cols(50,50) # create two column support, each with 50% width. #later call begin_left() ... end_left() to add something to a specific column
This is text
plot(1:50)
plot(50:1)
begin_left() cat('This text should be on the left') br() plot(1:50) end_left() begin_right() cat('This text should be on the right') br() plot(50:1) end_right()
plot((1:50)^-1)
plot((1:50)^-2)
plot((1:50)^-(1/2))
plot((1:50)^(1/2))
plot(1:50)
plot((1:50)^2)
plot((1:50)^-1)
plot((1:50)^-2)
plot((1:50)^-(1/2))
plot((1:50)^(1/2))
This is text!
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.