The purpose of the blast_graph function is to easily create a graph displaying the species in your BLAST+ output file.
library(funkyfigs) blast_graph("data/sample_example.txt", 10)
The spectrophoto_boxplot function makes it easier to quickly generate a boxplot on your spectrophotography data. Note: for the example, no actual spectophotography data was used. It's just an example of what the output should look like.
library(funkyfigs) spectrophoto_boxplot(iris, iris$Species, iris$Sepal.Length)
The spectrophoto_bar function easily gives an overview of your spectrophotography measurements, per group. Note: for the example, no actual spectophotography data was used. It's just an example of what the output should look like.
library(funkyfigs) spectrophoto_bar(iris, iris$Species, iris$Sepal.Length)
Want to add some urls to your dataset, but it's too much of a hassle to put it per cell? url_table easily adds a column with the desired urls, per cell!
library(funkyfigs) url_table(iris, iris$Species, urls = c(rep(c("https://en.wikipedia.org/wiki/Iris_setosa"), times = 50), rep(c("https://en.wikipedia.org/wiki/Iris_versicolor"), times = 50), rep(c("https://en.wikipedia.org/wiki/Iris_virginica"), times = 50)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.