-
Notifications
You must be signed in to change notification settings - Fork 51
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
Unable to display or save graph when using geom_path #1168
Comments
Hi! |
Thanks! The code is totally fine. Could you please attach your data ( |
Sure. Here it is. FYI, it's tab-delimited and has about 200,000 records. The original has close to 500,000, but it's too large for me to upload here. Hopefully, this should be good enough. |
Thank you! I'v reproduced the issue. plot = (
ggplot(core_10004_1A_1, aes("value", "depth_m", group="section_no")) +
ggsize(150, 500) +
geom_path(sampling='none') +
facet_grid(x="channel", scales="free") +
scale_y_reverse() +
labs(x="Values", y="Depth (m)") +
theme(legend_position="none")
)
plot |
That works! Thanks! You referred to this as a workaround. I assume that this is not intended behavior? Will this be addressed in a future version? Thank you again! |
Definitely. |
I've been trying out lets-plot through a Jupyter notebook on Windows 11.
I'm experiencing an issue that comes up when I use geom_path. I receive this error message both when trying to view a plot in Jupyter and when trying to save the image using ggsave, regardless of file format:
Exception: Internal error: NullPointerException : <no message>
Unfortunately, that's all I receive. Using geom_line in place of geom_path produces a graph, but not always with the desired result.
The text was updated successfully, but these errors were encountered: