This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mix.install([ | |
{:explorer, "~> 0.8.0"} | |
]) | |
# Update to the filepath. | |
filepath = "./data/weather_stations.csv" | |
defmodule Challenge do | |
import Explorer.Series | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# UNIDIMENSIONAL | |
# Vamos começar do início, e com algo que você já sabe: vetores. | |
vec <- c(8, 9, 10, 11) | |
vec # 8 9 10 11 | |
# Consultamos elementos específicos utilizando colchetes | |
# (Observe que R começa a contar a partir de 1) | |
vec[1] # 8 | |
letters[18] # "r" | |
LETTERS[13] # "M" | |
month.name[9] # "September" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "LaTeX Box Test" | |
author: "Halian Vilela" | |
date: "2/2/2022" | |
header-includes: | |
- \usepackage{tcolorbox} | |
- \tcbuselibrary{raster} | |
output: pdf_document | |
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ggplot2::ggplot(data = mtcars, aes(x = mpg, y = wt) ) + | |
geom_smooth(method = "lm", se = FALSE, aes(alpha = "A") ) + | |
geom_point(aes(alpha = "B"), size = 3) + | |
geom_point(aes(alpha = "C"), size = 3) + | |
## This will let you customize legend aesthetics as you want... | |
scale_alpha_manual(name = NULL, | |
values = c(1, 1, 1), | |
breaks = c("A", "B", "C"), | |
guide = guide_legend(override.aes = list( shape = c(21,21,22), | |
linetype = c(1,1,1), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Google Cloud Speech Recognition - Fluxo de Trabalho" | |
author: "Halian Vilela" | |
date: "13/11/2019" | |
output: | |
pdf_document: default | |
html_document: default | |
--- | |
```{r setup, include=FALSE} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am attesting that this GitHub handle halian-vilela is linked to the Tezos account tz1f3KAYDr5xTYXb9mtHdUBmcoQf6cmQfit5 for tzprofiles | |
sig:edsigtzPNccYVDNfPZ2qhFVdyHPofoAzaWrWVJ3ddGAQx9EWk6cg7tgPxKG2WUvHMFiXFnDGyZWQGMGLLguMDfTPcHnVQJVYoQM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Automators | |
CorConsult Rx: Evidence-Based Medicine and Pharmacy | |
Darknet Diaries | |
Data Hackers | |
Data Skeptic | |
Data Stories | |
Data Viz Today | |
Economic Rockstar | |
egghead.io developer chats | |
Elixir Mix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' Convertion to title case with lower case for some classes of words. | |
#' | |
#' In written Portuguese, when converting to title case, it is not usual | |
#' to keep in title case some words, like prepositions, conjunctions, | |
#' articles and some kinds of pronouns. This functions locates those | |
#' cases and converts them to lower case. | |
#' | |
#' @param string vector of characters to be converted to title case | |
#' but with connector words (one-word prepositions and conjunctions) | |
#' and articles (both definite and indefinite) and some pronouns |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shiny) | |
library(palmerpenguins) | |
library(tidyverse) | |
pg <- penguins %>% | |
filter(!is.na(sex)) %>% | |
count(island, sex) | |
ui <- fluidPage( | |
fluidRow( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Test function for onEdit. Passes an event object to simulate an edit to | |
* a cell in a spreadsheet. | |
* | |
* Check for updates: http://stackoverflow.com/a/16089067/1677912 | |
* | |
* See https://developers.google.com/apps-script/guides/triggers/events#google_sheets_events | |
* | |
* on Script editor, set to debug THIS function, but create breakpoints | |
* on the onEdit Function |
NewerOlder