-
Notifications
You must be signed in to change notification settings - Fork 6
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
Update analysis function #352
Conversation
Hi @pengguanya , On the surface level this looks good, as in the input / output is roughly what I was hoping for. Only thing I can't make up my mind on is wether With regards to the internal implementation though I think it might need to be altered slightly, for a start we made an active decision to not use the tidyverse within this package to try and keep the dependency chain as light as possible so you will need to remove all uses of dplyr/purrr/rlang. Minor point but in terms of consistency with the result of the package please can you replace |
@gowerc Thanks. I will make the changes and add test to each function for next pull request As for now |
…parameter is missing error pops up
This pull request is deprecated. Please review pull request #362 255 02 instead |
@gowerc
Functions modified
New functions added
A new 'analysis_result' class has been defined. Both built-in analysis function ancova and customer analysis function take input such as
The benefits of defining a new class to me are
Various functions are implemented to validate the object, add meta information and extract information for analysis result. The analysis information are printed now in a tabular format with meta information in separate columns.
Tests have not been done yet. want to know your input and advice first. Thanks