Has anyone been experiencing the issue of R plots not rendering in notebooks, starting a few days ago?
t's not related to splarkly or plotly, or specifc data types, or anything. For example in base R: plot(1:3, 5:7) calculates without error, but does not display a graphic. Re-starting cluster, re-attaching cluster to notebook, etc. make no difference.
It's an R thing because running
%python
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [5, 6, 7])
display(plt)
does what you'd expect.