簡體   English   中英

Python 3.5.2中帶有希臘字母(LaTeX)的圖形

[英]Graph in Python 3.5.2 with Greek Letters (LaTeX)

我是Python新手,並嘗試重現下圖:

在此處輸入圖片說明

MWE是:

import numpy as np
import matplotlib.mlab as mlab
import matplotlib.pyplot as plt
mu, sigma = 100, 15
x = mu + sigma*np.random.randn(10000)
# the histogram of the data
n, bins, patches = plt.hist(x, 50, normed=1, facecolor='green',
                            alpha=0.75)
# add a 'best fit' line
y = mlab.normpdf( bins, mu, sigma)
l = plt.plot(bins, y, 'r--', linewidth=1)
plt.xlabel('Smarts')
plt.ylabel('Probability')
plt.title(r'$\mathrm{Histogram\ of\ IQ:}\ \mu=100,\ \sigma=15$')
plt.axis([40, 160, 0, 0.03])
plt.grid(True)
plt.show()

輸出為:

在此處輸入圖片說明

但是,希臘字母不能正確發送。 我可能在這里缺少一些基本知識。 如何在Python 3.5.2中重現原始圖形?

已編輯

我在Ubuntu 16.10上通過Python 2.4.1和IDLE使用了Python 3.5.2。

如果渲染不好,您可以在matplotlibrc指定字體以更改乳膠字體:

from matplotlib import rc

rc('font', **{'family':'serif','serif':['Palatino']})
rc('text', usetex=True)

或者簡單地:

 plt.title("Histogram of IQ: " r'$\mu = 100, \sigma$ =15')

標題的示例輸出: 在此處輸入圖片說明

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM