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 noticed yesterday that with the new version of ggplot, my extension ggupset breaks when I add a scale_x_mergelist().
On the positive side, the main functionality of the package is still intact and my replacement combination matrix axis still works.
However, I have a helper function scale_x_mergelist() that converts a list column into a character vector with paste(..., collapse = "-"). Previously, the collapsed string was shown on the x-axis, now it is blank:
From my preliminary investigations, I think the issue might be related to #3398. However, I cannot figure out how to adapt the code of my package to make it work again.
The text was updated successfully, but these errors were encountered:
Hi,
I noticed yesterday that with the new version of ggplot, my extension ggupset breaks when I add a
scale_x_mergelist()
.On the positive side, the main functionality of the package is still intact and my replacement combination matrix axis still works.
However, I have a helper function
scale_x_mergelist()
that converts a list column into a character vector withpaste(..., collapse = "-")
. Previously, the collapsed string was shown on the x-axis, now it is blank:Created on 2020-03-29 by the reprex package (v0.3.0)
Before the change the plot looked like this:
From my preliminary investigations, I think the issue might be related to #3398. However, I cannot figure out how to adapt the code of my package to make it work again.
The text was updated successfully, but these errors were encountered: