-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrequency.Rmd
53 lines (43 loc) · 1.12 KB
/
frequency.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
---
title: "Rain Gauge Frequency Checks"
# author: "Zack Arno"
output:
# hide_code: true
flexdashboard::flex_dashboard:
vertical_layout: scroll
orientation: columns
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
source("scripts/draft.R")
```
Location- GSB Cox's Bazaar-1227
================================
## Location- GSB Cox's Bazaar-1227
```{r }
precipitation_with_all_date_time$`GSB Cox's Bazaar-1227` %>% AMR::freq()
```
Location- UN Camp 16-1280
================================
## Location- UN Camp 16-1280
```{r }
precipitation_with_all_date_time$`UN Camp 16-1280` %>% AMR::freq()
```
Location- UN Chakmarkul-1278
================================
## Location- UN Chakmarkul-1278
```{r }
precipitation_with_all_date_time$`UN Chakmarkul-1278` %>% AMR::freq()
```
Location- GSB Teknaf-1226
================================
## Location- GSB Teknaf-1226
```{r }
precipitation_with_all_date_time$`GSB Teknaf-1226` %>% AMR::freq()
```
Location- UN Kuturc-1279
================================
## Location- UN Kuturc-1279
```{r }
precipitation_with_all_date_time$`UN Kuturc-1279` %>% AMR::freq()
```