You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following plot which is incorrect as its missing information on the LHS.
In the R studio console i get the following warning message:
"Warning messages:
1: position_stack() requires non-overlapping x intervals.
2: Removed 144 rows containing missing values or values outside the scale range (geom_col()).
3: Removed 144 rows containing missing values or values outside the scale range (geom_point())."
Ive checked the outputs from temporal_symmetry and these seem correct (i.e i have values from -182 to 182. Therefore i think this is a bug with the plotting function.
The text was updated successfully, but these errors were encountered:
Hi Danielle! I do not know what data you used so I cannot reproduce your specific example. Before I dive more into this, after taking a look in my local, I wonder whether the issue might be minCellCount in summariseTemporalSymmetry()? Have you tried setting it to 0? Maybe you get many counts <5 which are then turned into NA and that is why you do not see anything in the plot.
yep that works! Thank you :) @xihang-chen can we mention this in the vignette stating that min cell count in the function can impact the plot? or not have the min cell count in the function and users can suppress the counts afterwards running this function?
I think the idea would be to deprecate minCellCount and do all the suppressing when exporting the results (i.e in omopgenerics). Not sure about the plot function though. @catalamarti ?
I want to create a plot of the temporal sequence of my intersection of my index and markers.
I can create the correct plot using the following code:
This creates the following plot:
This is what i would expect. However if i put the following code to have this in days:
I get the following plot which is incorrect as its missing information on the LHS.
In the R studio console i get the following warning message:
"Warning messages:
1:
position_stack()
requires non-overlapping x intervals.2: Removed 144 rows containing missing values or values outside the scale range (
geom_col()
).3: Removed 144 rows containing missing values or values outside the scale range (
geom_point()
)."Ive checked the outputs from temporal_symmetry and these seem correct (i.e i have values from -182 to 182. Therefore i think this is a bug with the plotting function.
The text was updated successfully, but these errors were encountered: