-
Notifications
You must be signed in to change notification settings - Fork 1
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
Handle annotations other than "X" #3
Comments
This table should cover all possible annotations from
|
I just got notice that this issue is of importance when it comes to the html tables that are generated for our new website. The generated tables should be able to display annotated values differently from normal values. This means that STATcubeR will need to keep all imported annotations and the return value One big question here is how aggregation should be performed if one or more values to be aggregated contain annotations. Most of the time, it would make sense to propagate the annotations like so annotations(x+y) = union(annotations(x), annotations(y)) but there might be exceptions for values like |
This issue will most likely be resolved once #39 is implemented. |
Currently,
as.data.frame()
insertsNA
values whenever the annotation"X"
is applied to a cell value.STATcubeR/R/as_data_frame.R
Lines 52 to 54 in 1158d37
Figure out if this makes sense for other annotations and handle those cases in
as.data.frame()
accordingly.The text was updated successfully, but these errors were encountered: