plot.ly Quick experiment on embedding plot.ly graphics. library(ggplot2) library(plotly) Basic plotly plot_ly(iris, x = Petal.Length, y = Petal.Width, color = Species, mode = "markers") ## Error in html_screenshot(x): Please install the webshot package (if not on CRAN, try devtools::install_github("wch/webshot")) Now using ggplot2 ggiris <- qplot(Petal.Width, Sepal.Length, data = iris, color = Species) ggplotly(ggiris) ## Error in html_screenshot(x): Please install the webshot package (if not on CRAN, try devtools::install_github("wch/webshot")) This next one is embedded from plot.ly. Previous Next
Model vs. Algorithm As discussion about Artificial Intelligence has become a mainstream topic, we hear a lot of terms used in loosely.
Using Days of the Week to Understand Modulo Today is Monday January 1st 2024, what day of the week will it be in 7 days?
BGV in R We begin by loading 2 packages, polynom for dealing with polynomials and my package HomomorophicEncryption which has several helper functions.