Currently, this code ``` image_data = np.array([ [1.0, np.nan, 1.0], [np.nan, 1.0, np.nan], [1.0, np.nan, 1.0] ]) ggplot() + geom_imshow(image_data) ``` renders a solid all grey image. Expected: transparency of NaN pixels.
Currently, this code
renders a solid all grey image.
Expected: transparency of NaN pixels.