Commit 910248ab authored by Boulangeat Isabelle's avatar Boulangeat Isabelle
Browse files

recompile

parent c8644b08
No related merge requests found
Showing with 96 additions and 192 deletions
+96 -192
This diff is collapsed.
......@@ -10,7 +10,7 @@ editor_options:
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(echo = TRUE, warning=FALSE)
```
## Reading data
......@@ -18,20 +18,20 @@ knitr::opts_chunk$set(echo = TRUE)
```{r load_data}
library("openxlsx")
datphyto = read.xlsx("releves_phyto_CEPAZ_2013+.xlsx")
head(datphyto)
head(datphyto,3)
library(rgdal)
polyZone = readOGR("CEPAZ_Zone_Etude_et_ZP", "CEPAZ_Zones_Pastorales")
head(polyZone@data)
head(polyZone@data,3)
nrow(polyZone@data)
tabZP = read.csv2("ZP_table.csv", encoding = "UTF-8")
head(tabZP)
head(tabZP,3)
colnames(tabZP)[1] = "CODE"
nrow(tabZP)
status = read.xlsx("stat_taxons_zp_statuts.xlsx")
head(status)
head(status,3)
nrow(status)
```
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment