-
Notifications
You must be signed in to change notification settings - Fork 0
Write data #12
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
base: master
Are you sure you want to change the base?
Write data #12
Conversation
I've added a function to return tables from the match query. It can work in addition or in lieu of `matchEpiData()`. I have added documentation for this and also updated the documentation of `matchEpiData()`.
This will allow future development so that we can give the user the scores/weights in the table that is output.
Nice work! I don't think you need to add all the Regarding |
I think I put the
|
Oh I see, really nice function. To be nitpicky:
Other than that , this is awesome |
Nits are meant to be picked!
They are not needed. I can easily get rid of them.
|
It seems to me that it would be more consistent behaviour and make sense to On 5 August 2016 at 19:01, Zhian N. Kamvar [email protected] wrote:
|
This addresses Dean's comment: #12 (comment)
This addresses Dean's comment: #12 (comment)
This partially addresses #9 by adding a function that will create a table or list of tables as output. @daattali, @kplaney, @thibautjombart, what do you think?
NEW FUNCTIONS
tablesFromMatch()
generates a tidy table or a list of tables containing the matchesgetIndexList()
switches the weight output ofmatchEpiData()
to index outputThe function to generate the table(s) will only output the information used for matching. This way, the user can use it as a reference to filter their own data. When the output is a single tidy table, the information of the group, data set, index, and weight/score are included.
SHINY
I've modified server.R slightly to use the
giveWeights = TRUE
argument formatchEpiData()
. This will allow us to write something to display the weights/scores in the future.