#'Critics Ratings vs Audience Ratings Line Plot
#'
#'Displays Critics Ratings vs. Audience Ratings by genre and budget
#'
#'@param
#'
#'@return Point Line Plot
#'
#'@example
#' \dontrun{
#'critvsaud()
#'
#'}
#'
#'@export
critvsaud <- function(){
p <- ggplot(data = movies, aes(x=CriticsRatings,y=AudienceRatings,
color=Genre, size=BudgetinMillions))
p + geom_line(size=0.8)+ geom_point()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.