Created
February 27, 2016 23:39
-
-
Save fernandomayer/65e44e5fa93236ff4bb8 to your computer and use it in GitHub Desktop.
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: "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 | |
cache = TRUE, | |
tidy = FALSE, | |
## comment = NA, | |
fig.width = 10, | |
fig.height = 8, | |
fig.align = "center", | |
# dpi = 60, ## higher resolution | |
dev = "png" | |
# fig.path = "figures/", | |
) | |
``` | |
# Packages | |
```{r, message=FALSE} | |
library(lattice) | |
library(car) | |
library(Matrix) | |
# library(INLA) | |
# library(FishMaps) | |
## extra functions | |
# source("script_functions.R") | |
``` | |
# Data | |
```{r} | |
## Some data | |
dat <- data.frame(col1 = rnorm(100), | |
col2 = runif(100)) | |
str(dat) | |
summary(dat) | |
``` | |
Now we must create a simple plot of the two variables. | |
```{r} | |
plot(col2 ~ col1, data = dat) | |
``` | |
And now we can do some transformation | |
```{r} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment