general.plotting <- function(df, col){
# create unique variable beforehand, as well as filtering.
p = ggplot(df, aes(x=time_to_hour, y = value, color = strain, group=well)) +
geom_point() +
geom_line() +
facet_grid(signal ~ . , scales = "free")
return(p)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.