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
This is likely a bug where tidyHeatmap produces the wrong results without an error
I've got a simple data.frame with the fields id (sample id), set (gene set), value (score) and group (group):
ds=data.frame(id= c("12.10-r1", "12.10-r2", "12.10_17w-r1", "12.10_17w-r2"),
set= c("x", "x", "x", "x"),
value= c(1, 2, 3, 4),
group= c("g1", "g1", "g2", "g2"))
as_tibble(ds) |> group_by(group) |> heatmap(id, set, value)
# not sure why I need the as_tibble here
Note that 12.10 belongs to the group g1 and 12.10_17w to the group g2. However, the heatmap assigns 12.10 to the group g2 and 12.10_17w to the group g1:
Warning
This is likely a bug where
tidyHeatmap
produces the wrong results without an errorI've got a simple
data.frame
with the fieldsid
(sample id),set
(gene set),value
(score) andgroup
(group):Note that
12.10
belongs to the groupg1
and12.10_17w
to the groupg2
. However, the heatmap assigns12.10
to the groupg2
and12.10_17w
to the groupg1
:sessionInfo()
The text was updated successfully, but these errors were encountered: