-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve documentation for new design, continuation of draft PR #49 #54
Conversation
…nto design_update
Improved SRS Design with args error checking, better types
Design update merge Stratified Sample mean total and variance estimators
Add test cases and change `...` to `reduce`
…-13-02-09-54-577-01107001681 CompatHelper: bump compat for CairoMakie to 0.9, (keep existing compat)
Minor corrections
Synch branch with main
I think I messed up using git.. The code is fine, but the history is all cluttered. Sorry about that! :( |
Codecov Report
@@ Coverage Diff @@
## design_update #54 +/- ##
==================================================
- Coverage 55.26% 37.83% -17.43%
==================================================
Files 12 14 +2
Lines 266 370 +104
==================================================
- Hits 147 140 -7
- Misses 119 230 +111
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
This is a very long PR containing documentation work. It is not completely up to date (or at least it won't be up to date when PR #69 is merged). I think we can manage the conflicts. Edit: I added more details about the changes I made.
|
@@ -0,0 +1,17 @@ | |||
# TODO: add docstrings | |||
function HorwitzThompson_HartleyRaoApproximation(y::AbstractVector, design::AbstractSurveyDesign, HT_total) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these modifications part of this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These come from my git mess up. I merged this branch with the design_update
branch at some point in a wrong way.
|
||
# StratifiedSample | ||
|
||
function svymean(x::Symbol, design::StratifiedSample) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This also shouldn't be part of this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this is the same git mess up.
This is a continuation of my draft PR #49 which comes from a different branch (
docs_improve
instead ofdesign_update
). I will close PR #49 and continue working on this PR.