Skip to content

Commit

Permalink
overview accounts for example data
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenpp7 committed Feb 18, 2021
1 parent 8e66709 commit 94cfea2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions files/overview.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ knitr::kable(logbook_highlights())
This data frame shows the diving logbook used. Personal information such as eventRemarks are omitted from this data frame

```{r echo=FALSE, rows.print=15}
load('divewatchr_data/scuba_clean.RData')
if(dir.exists("divewatchr_data")){
load('divewatchr_data/scuba_clean.RData')
}
transmute (scuba_clean, eventDate, locationID, locality, maximumDepth = maximumDepthInMeters, bottomTime, diveType, diveClass, platformType, region, country)
Expand All @@ -154,7 +157,10 @@ transmute (scuba_clean, eventDate, locationID, locality, maximumDepth = maximumD
## Certifications

```{r echo=FALSE, rows.print=15}
load('divewatchr_data/scuba_cert.RData')
if(dir.exists("divewatchr_data")){
load('divewatchr_data/scuba_cert.RData')
}
knitr::kable(scuba_cert %>% select (-instructorID))
```
Expand Down

0 comments on commit 94cfea2

Please sign in to comment.