Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dataCleaning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SERG
dataCleaning
Merge requests
!3
merge a few edits
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
merge a few edits
ba1e12/datacleaning:master
into
master
Overview
0
Commits
31
Changes
1
Merged
Ben Anderson
requested to merge
ba1e12/datacleaning:master
into
master
4 years ago
Overview
0
Commits
31
Changes
1
Expand
0
0
Merge request reports
Viewing commit
5fd9d3ab
Prev
Next
Show latest version
1 file
+
5
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5fd9d3ab
removed kable_styling() as this produces html which breaks the latex to pdf conversion (sigh)
· 5fd9d3ab
B.Anderson
authored
4 years ago
Rmd/cleaningFeederData.Rmd
+
5
−
10
Options
@@ -77,8 +77,7 @@ origDataDT <- drake::readd(origData) # readd the drake object
uniqDataDT <- drake::readd(uniqData) # readd the drake object
kableExtra::kable(head(origDataDT), digits = 2,
caption = "First 6 rows of data") %>%
kable_styling()
caption = "First 6 rows of data")
```
Do a duplicate check by feeder_ID, dateTime & kW. In theory there should not be any.
@@ -323,23 +322,19 @@ ggplot2::ggplot(aggDT, aes(x = rDate, colour = season,
aggDT[, rDoW := lubridate::wday(rDate, lab = TRUE)]
h <- head(aggDT[season == "Spring"][order(-propExpected)])
kableExtra::kable(h, caption = "Best Spring days overall",
digits = 3) %>%
kable_styling()
digits = 3)
h <- head(aggDT[season == "Summer"][order(-propExpected)])
kableExtra::kable(h, caption = "Best Summer days overall",
digits = 3) %>%
kable_styling()
digits = 3)
h <- head(aggDT[season == "Autumn"][order(-propExpected)])
kableExtra::kable(h, caption = "Best Autumn days overall",
digits = 3) %>%
kable_styling()
digits = 3)
h <- head(aggDT[season == "Winter"][order(-propExpected)])
kableExtra::kable(h, caption = "Best Winter days overall",
digits = 3) %>%
kable_styling()
digits = 3)
```
# Summary
Loading