Skip to content
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

Add support for coord_polar() in geom_raster() #1036

Open
IKupriyanov-HORIS opened this issue Mar 7, 2024 · 0 comments
Open

Add support for coord_polar() in geom_raster() #1036

IKupriyanov-HORIS opened this issue Mar 7, 2024 · 0 comments
Milestone

Comments

@IKupriyanov-HORIS
Copy link
Collaborator

Code snippet:

import numpy as np
from scipy.stats import multivariate_normal
from lets_plot import *
LetsPlot.setup_html()
np.random.seed(42)
n = 25
x = np.linspace(-1, 1, n)
y = np.linspace(-1, 1, n)
X, Y = np.meshgrid(x, y)
mean = np.zeros(2)
cov = [[1, -.5], [-.5, 1]]
rv = multivariate_normal(mean, cov)
Z = rv.pdf(np.dstack((X, Y)))

data = {
    'x': X.flatten(), 
    'y': Y.flatten(), 
    'z': Z.flatten()
}

p = ggplot(data) \
    + geom_raster(aes(x='x', y='y', fill='z')) \
    + scale_fill_gradient(low='#54278f', high='#f2f0f7')

gggrid([
    p ,
    p + coord_polar(),
])

Output:
image

@alshan alshan added this to the New milestone Mar 7, 2024
@alshan alshan modified the milestones: New, 2024Q2 Apr 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants