library(vip) library(tidymodels) library(DBI)
knitr::opts_chunk$set(echo = FALSE)
DC
knitr::include_graphics("15-153902_superman-dc-comics-logo-comic-book-the-new.png")
library(tidyverse) library(readxl) dc <- read.csv(file = 'dc-wikia-data.csv', stringsAsFactors = TRUE) top10 <- dc %>% slice_max(order_by = APPEARANCES, n = 10)
DC TOP 10 por aparições
knitr::kable(top10)
import numpy as np import matplotlib.pyplot as plt plt.bar(r.top10.name, r.top10.APPEARANCES) plt.xticks(rotation='vertical') plt.tight_layout() plt.show()
Note that the echo = FALSE
parameter was added to the code chunk to prevent printing of the R code that generated the plot.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.