-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
75 lines (68 loc) · 2.53 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
title: "Análisis de encuestas con R"
author: "Andrés Gutiérrez^[Experto Regional en Estadísticas Sociales - Comisión Económica para América Latina y el Caribe (CEPAL) - [email protected]], Cristian Téllez^[Profesor - Universidad Santo Tomás - [email protected]], Stalyn Guerrero^[Consultor - Comisión Económica para América Latina y el Caribe (CEPAL), [email protected]]"
date: "`r Sys.Date()`"
documentclass: book
# bibliography: [CEPAL.bib]
biblio-style: apalike
link-citations: yes
colorlinks: yes
lot: yes
lof: yes
fontsize: 12pt
geometry: margin = 3cm
header-includes: \usepackage[spanish, spanishkw, onelanguage, linesnumbered]{algorithm2e}
github-repo: psirusteam/HHS-Handbook
description: "Este es el repositorio del libro *Análisis de encuestas con R*."
knit: "bookdown::render_book"
lang: es
linkcolor: blue
output:
pdf_document:
toc: true
toc_depth: 3
keep_tex: true
latex_engine: xelatex
gitbook:
df_print: kable
css: "style.css"
# Compilar así:
# bookdown::render_book("index.Rmd", "bookdown::pdf_book")
# bookdown::render_book("index.Rmd", "bookdown::epub_book")
# bookdown::render_book("index.Rmd", "bookdown::word_document2")
# bookdown::preview_chapter("01.Rmd", "bookdown::word_document2")
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(warning = FALSE,
message = FALSE,
cache = TRUE)
library("dplyr")
library("tidyverse")
library("readstata13")
library("survey")
library("srvyr")
library("ggplot2")
library("TeachingSampling")
library("samplesize4surveys")
library(convey)
library(rstan)
library(printr)
library(knitr)
rstan_options (javascript = FALSE)
library(thematic)
library(ggplot2)
theme_set(theme_bw())
thematic_on(
bg = "white", fg = "black", accent = "red",
font = font_spec("Oxanium", scale = 1.25)
)
```
# Prefacio {-}
```{r results = 'asis', out.width="100px", fig.cap="Licencia de Creative Commons", echo=FALSE}
# download.file(url = "https://mirrors.creativecommons.org/presskit/buttons/88x31/png/by-nc-sa.png",
# destfile = "Pics/CClicence.png",
# mode = 'wb')
# knitr::include_graphics(path = "Pics/CClicence.png")
```
La versión online de este libro está licenciada bajo una [Licencia Internacional de Creative Commons para compartir con atribución no comercial 4.0](http://creativecommons.org/licenses/by-nc-sa/4.0/).
Este libro es el resultado de un compendio de las experiencias internacionales prácticas adquiridas por el autor como Experto Regional en Estadísticas Sociales de la CEPAL.