Publications by Rafael
Quais insights podem ser tirados com a coluna Overview? É possível inferir o gênero do filme a partir dessa coluna?
Carregando pacotes e dataset pacotes <- c("readr", "dplyr", "ggplot2", "PerformanceAnalytics", "tidyr", "tm", "caret", "stringr", "tidytext" ) lapply(pacotes, library, character.only = TRUE) filmes <- read_csv("desafio_indicium_imdb.csv") filmes$Runtime <- gsub(" min", "", filmes$Runtime) filmes$Runtime <- as.numeric(filmes$Runtime) filmes$Rele...
2856 sym
Quais são os principais fatores que estão relacionados com alta expectativa de faturamento de um filme? nt
Carregando pacotes e dataset pacotes <- c("readr", "dplyr", "ggplot2", "PerformanceAnalytics", "tidyr" ) lapply(pacotes, library, character.only = TRUE) filmes <- read_csv("desafio_indicium_imdb.csv") filmes$Runtime <- gsub(" min", "", filmes$Runtime) filmes$Runtime <- as.numeric(filmes$Runtime) filmes$Released_Year <- as.numeric(as.character(f...
2458 sym 1 img
Qual filme você recomendaria para uma pessoa que você não conhece?
Carregando pacotes e dataset pacotes <- c("readr", "dplyr", "ggplot2", "PerformanceAnalytics", "tidyr" ) lapply(pacotes, library, character.only = TRUE) filmes <- read_csv("desafio_indicium_imdb.csv") filmes$Runtime <- gsub(" min", "", filmes$Runtime) filmes$Runtime <- as.numeric(filmes$Runtime) filmes$Released_Year <- as.numeric(as.character(f...
1322 sym
EDA-LH
Carregando pacotes e dataset pacotes <- c("readr", "dplyr", "ggplot2", "PerformanceAnalytics", "tidyr" ) lapply(pacotes, library, character.only = TRUE) filmes <- read_csv("desafio_indicium_imdb.csv") filmes$Runtime <- gsub(" min", "", filmes$Runtime) filmes$Runtime <- as.numeric(filmes$Runtime) filmes$Released_Year <- as.numeric(as.character(f...
5204 sym Python (5503 sym/9 pcs) 1 img
Modelos parte 1
A continuación vamos a construir un modelo predictivo de precios de vehículos referencia mazda 3 para la ciudad de Cali, que descargamos con datos del portal carroya. La base de datos contiene las variables precio y año del vehículo como se observa a continuación: library(readxl) mazda <- read_excel("C:/Users/rarestrepo/Downloads/rsconnect...
673 sym R (2787 sym/34 pcs) 1 tbl
ejemplo clase2
R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...
598 sym 1 img
Buscando padrões
# Instalando e carregando o pacote tm pacotes <- c("tm", "readr") lapply(pacotes, library, character.only = TRUE) ## Loading required package: NLP ## [[1]] ## [1] "tm" "NLP" "stats" "graphics" "grDevices" "utils" ## [7] "datasets" "methods" "base" ## ## [[2]] ## [1] "readr" "tm" "NLP" "stats" ...
11 sym
Hipóteses de Negócio
Carregando os pacotes e o dataset pacotes <- c("readr", "dplyr", "ggplot2") lapply(pacotes, library, character.only = TRUE) apts <- read_csv("teste_indicium_precificacao.csv") ## Rows: 48894 Columns: 16 ## ── Column specification ──────────────────────────────────────...
3295 sym
EAD
Carregando pacotes pacotes <- c("readxl", "PerformanceAnalytics", "readr") lapply(pacotes, library, character.only = TRUE) Carregando e olhando os dados originais apts <- read_csv("teste_indicium_precificacao.csv") ## Rows: 48894 Columns: 16 ## ── Column specification ────────────────────────�...
3612 sym 3 img
Document
R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...
5925 sym 1 img