2

我有一组给定的点(x,y,F(x,y)),我想绘制一个等高线图,(x,y)显示为点,等高线计算为 F(x ,y)。有谁知道如何用seaborn做到这一点?

我想要类似于http://goo.gl/SWThWS的 sepal_width 与 sepal_length 图(没有边际),除了内核密度估计不应该使用点的空间密度而是 F(x ,y) 代替。

4

1 回答 1

1

您可以将数据插入到 2D 网格中。有很多方法可以做到这一点- 可能与核密度估计最接近的类比是使用径向基函数进行插值:

import numpy as np
from scipy.interpolate import Rbf
from matplotlib import pyplot as plt

def f(x, y):
    return np.sin(x) + np.cos(2 * y)

# 1D arrays of points
x = np.random.rand(100) * 2 * np.pi
y = np.random.rand(100) * 2 * np.pi
z = f(x, y)

# initialize radial basis function
rb = Rbf(x, y, z)

# interpolate onto a 100x100 regular grid
X, Y = np.mgrid[:2*np.pi:100j, :2*np.pi:100j]
Z = rb(X.ravel(), Y.ravel()).reshape(X.shape)

# plotting
fig, ax = plt.subplots(1, 1)
ax.set_aspect('equal')
ax.hold(True)
m = ax.contourf(X, Y, Z, 20, cmap=plt.cm.Greens)
ax.scatter(x, y, c=z, s=60, cmap=m.cmap, vmin=m.vmin, vmax=m.vmax)
cb = fig.colorbar(m)
cb.set_label('$f(x, y)$', fontsize='xx-large')
ax.set_xlabel('$x$', fontsize='xx-large')
ax.set_ylabel('$y$', fontsize='xx-large')
ax.margins(0.05)
fig.tight_layout()
plt.show()

在此处输入图像描述

于 2015-11-14T18:55:40.747 回答