1

我第一次尝试使用 matplotlib 和 scipy 制作数据散点图时遇到了一些问题(变量太多,试图一次看到很多东西)。这是我的一些代码,它工作得相当好......

import numpy
from scipy import *
import pylab
from matplotlib import *
import h5py

FileID = h5py.File('3DiPVDplot1.mat','r')
# (to view the contents of: list(FileID) )
group = FileID['/']
CurrentsArray = group['Currents'].value
IvIIIarray = group['IvIII'].value
PFarray = group['PF'].value
growthTarray = group['growthT'].value
fig = pylab.figure()
ax = fig.add_subplot(111)
cax = ax.scatter(IvIIIarray, growthTarray, PFarray, CurrentsArray, alpha=0.75)
cbar = fig.colorbar(cax)
ax.set_xlabel('Cu / III')
ax.set_ylabel('Growth T')
ax.grid(True)
pylab.show()

我试图更改代码以包含乳胶字体和解释,但是,它似乎对我不起作用。这是一个无效的示例尝试:

import numpy
from scipy import *
import pylab
from matplotlib import *
import h5py

rc('text', usetex=True)
rc('font', family='serif')

FileID = h5py.File('3DiPVDplot1.mat','r')
# (to view the contents of: list(FileID) )
group = FileID['/']
CurrentsArray = group['Currents'].value
IvIIIarray = group['IvIII'].value
PFarray = group['PF'].value
growthTarray = group['growthT'].value
fig = pylab.figure()
ax = fig.add_subplot(111)
cax = ax.scatter(IvIIIarray, growthTarray, PFarray, CurrentsArray, alpha=0.75)
cbar = fig.colorbar(cax)
ax.set_xlabel(r'Cu / III')
ax.set_ylabel(r'Growth T')
ax.grid(True)
pylab.show()

我正在使用 fink 安装的 python26 和 scipy matplotlib 等的相应软件包。我一直在使用 iPython 和手动工作而不是 python 中的脚本。

由于我对 python 和 scipy 完全陌生,我确信我犯了一些愚蠢的简单错误。请赐教!我非常感谢您的帮助!

4

2 回答 2

2

对于那些刚开始使用 scipy/matplotlib 的人,我发现这有助于查找有关我的安装的信息,因为我目前正在使用它......来自这个链接

创建一个名为 simple_plot.py 的文件,其中包含最小脚本:

from pylab import *
plot([1,2,3])
show()

然后在命令行运行以下命令:

python simple_plot.py --verbose-helpful

我收到的结果是:

$HOME=/Users/me
CONFIGDIR=/Users/me/.matplotlib
matplotlib data path /sw/lib/python2.6/site-packages/matplotlib/mpl-data
loaded rc file /sw/lib/python2.6/site-packages/matplotlib/mpl-data/matplotlibrc
matplotlib version 0.99.0
verbose.level helpful
interactive is False
units is False
platform is darwin
Using fontManager instance from /Users/me/.matplotlib/fontList.cache
/sw/lib/python2.6/site-packages/pytz/tzinfo.py:5: DeprecationWarning: the sets module is deprecated
  from sets import Set
backend MacOSX version unknown

我希望这可以帮助像我一样刚开始的人!:) 感谢大家对此的想法!

于 2010-05-18T18:02:09.593 回答
0

代码对我来说看起来不错,尤其是rc命令。

检查此页面:Text Rendering with LaTeX。确保安装了 LaTeX、dvipng 和 ghostscript。还要检查您使用的是哪个后端;你的可能不支持 LaTeX。

于 2010-05-18T07:10:11.503 回答