Refactor SurveyDesign and add in-place constructor #320
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR closes issue #232
This commit introduces a significant refactor to the
SurveyDesign
struct in theSurveyDesign.jl
file. A new in-place constructor function,SurveyDesign!
, has been added to allow for direct manipulation of the passedAbstractDataFrame
. This change aims to enhance the flexibility and efficiency of survey design creation by providing an option to modify the data frame in place.Additionally, minor formatting adjustments were made to improve code readability and consistency across the file. These include alignment of default parameter values and minor adjustments to spacing and line breaks.
The introduction of the
SurveyDesign!
function follows the Julia convention of using the!
suffix to indicate functions that modify their arguments in place. This change is expected to make the API more intuitive for users familiar with Julia conventions.Overall, this refactor and the addition of the in-place constructor enhance the library's usability and maintainability.