This file contains 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
##====================================================================== | |
## Script para baixar os livros disponibilizados gratuitamente pela | |
## Springer | |
## https://www.springernature.com/gp/librarians/news-events/all-news-articles/industry-news-initiatives/free-access-to-textbooks-for-institutions-affected-by-coronaviru/17855960 | |
## 2020-04-03 FP Mayer | |
##====================================================================== | |
##====================================================================== | |
## Importa lista de livros | |
library(gdata) |
This file contains 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
```{r expo, echo=FALSE, results='hide'} | |
na <- 5 | |
explanations <- questions <- character(na) | |
solutions <- logical(na) | |
## Auxilar function to calculate exponencial probabilities | |
probexp <- function(alfa, a, b){ | |
exp(-alfa * a) - exp(-alfa * b) | |
} |
This file contains 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
#!/usr/bin/perl | |
## Based on rnw2rmd.pl by Laurent Gatto | |
## https://gist.github.com/lgatto/d9d0e3afcc0a4417e5084e5ca46a4d9e | |
## The script ignores labels and references, un-numbered sections | |
## (section*), quotes and probably a couple of more. It won't deal | |
## with the pre-amble, bibliography and document tags either. Still | |
## useful, though. |
This file contains 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
name: ce083 | |
output_dir: docs | |
exclude: | |
- README.md | |
- \.sh | |
output: | |
html_document: | |
theme: flatly | |
highlight: default | |
code_folding: hide |
This file contains 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
## Segmented regression plots in lattice | |
## Example for view purposes only | |
head(iris) | |
library(xyplot) | |
xyplot(Sepal.Length ~ Sepal.Width, iris, | |
panel = function(x, y, ...){ | |
panel.xyplot(x, y, ...) | |
le <- lm(Sepal.Length ~ Sepal.Width, iris, | |
subset = Sepal.Width <= 3) | |
llines(iris$Sepal.Width[iris$Sepal.Width <= 3], |
This file contains 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: "Some very clever title here" | |
author: "Author 1, Author 2" | |
date: "February, 2016" | |
output: html_document | |
--- | |
```{r setup, include=FALSE, purl=FALSE, eval=TRUE} | |
opts_chunk$set( | |
## knitr options |
This file contains 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
source_https <- function(url, ...) { | |
## Function for sourcing individual R scripts from GitHub | |
## Author: Tony Breyal | |
## Contributions: Kay Cichini | |
## Original URL: http://tonybreyal.wordpress.com/2011/11/24/source_https-sourcing-an-r-script-from-github/ | |
## Load required package | |
require(RCurl) | |
## Parse and evaluate each .R script | |
sapply(c(url, ...), function(u) { | |
eval(parse(text = getURL(u, followlocation = TRUE, |
This file contains 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
## Este exemplo provê um código em R que outros usuários podem reproduzir | |
## para facilitar a solução de problemas observados. | |
## | |
## Na R-br em: http://r-br.2285057.n4.nabble.com/R-br-Produzindo-um-Codigo-Minimo-Reproduzivel-CMR-td3674188.html | |
################################################################# | |
## PASSO 1: Carregue os pacotes necessários no início do código | |
################################################################# | |
library(splines) |
This file contains 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
n_sims = 1_000_000 | |
mle_se = zeros(n_sims) | |
unbiased_se = zeros(n_sims) | |
yatracos_std_se = zeros(n_sims) | |
kourouklis_std_se = zeros(n_sims) | |
for sim in 1:n_sims | |
n = 10 | |
x = randn(n) |
This file contains 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
require(devtools) | |
install_github("FishMaps", username = "fernandomayer") | |
# use mapLL | |
mapLL() | |
# function | |
hw <- function(){ | |
cat("Hello world!") | |
} |