import matplotlib
matplotlib.rc('xtick', labelsize=20)
matplotlib.rc('ytick', labelsize=20)
但是如何更改其余部分?
import matplotlib
matplotlib.rc('xtick', labelsize=20)
matplotlib.rc('ytick', labelsize=20)
但是如何更改其余部分?
font = {'family' : 'normal',
'weight' : 'bold',
'size' : 22}
matplotlib.rc('font', **font)
这将所有项目的字体设置为kwargs对象指定的字体font
。
或者,您还可以使用rcParams
update
方法,如this answer中建议的那样。
matplotlib.rcParams.update({'font.size': 22})
或者
import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})
您可以在自定义matplotlib页面上找到所有可用属性的完整列表。
如果你像我一样是个控制狂,你可能想要明确地设置所有的字体大小:
import matplotlib.pyplot as plt
SMALL_SIZE = 8
MEDIUM_SIZE = 10
BIGGER_SIZE = 12
plt.rc('font', size=SMALL_SIZE) # controls default text sizes
plt.rc('axes', titlesize=SMALL_SIZE) # fontsize of the axes title
plt.rc('axes', labelsize=MEDIUM_SIZE) # fontsize of the x and y labels
plt.rc('xtick', labelsize=SMALL_SIZE) # fontsize of the tick labels
plt.rc('ytick', labelsize=SMALL_SIZE) # fontsize of the tick labels
plt.rc('legend', fontsize=SMALL_SIZE) # legend fontsize
plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title
请注意,您还可以通过在matplotlib
上调用rc
方法来设置大小:
import matplotlib
SMALL_SIZE = 8
matplotlib.rc('font', size=SMALL_SIZE)
matplotlib.rc('axes', titlesize=SMALL_SIZE)
# and so on ...
plt.rc('axes', titlesize=BIGGER_SIZE)
。 - Fernando Irarrázaval Gplt.rc('axes', titlesize=SMALL_SIZE, labelsize=MEDIUM_SIZE)
。 - BallpointBen如果你想改变已经创建的某个具体图表的字体大小,请尝试以下方法:
import matplotlib.pyplot as plt
ax = plt.subplot(111, xlabel='x', ylabel='y', title='title')
for item in ([ax.title, ax.xaxis.label, ax.yaxis.label] +
ax.get_xticklabels() + ax.get_yticklabels()):
item.set_fontsize(20)
ax=plt.gca()
。 - dylnanax.get_legend().get_texts()
,因为ax.legend()
会在返回ax.get_legend()
的值之上重新绘制整个图例,并使用默认参数。 - Guimoutematplotlib.rcParams.update({'font.size': 22})
这篇答案适用于任何想要更改所有字体(包括图例)以及任何想要为每个元素使用不同字体和大小的人。它不使用rc(在我看来似乎无法工作)。可能有点繁琐,但我个人无法掌握其他方法。
我已经找到了一种比我的原始答案更简洁的方法。它允许您系统中的任何字体,甚至是.otf
字体。要为每个元素设置单独的字体,只需编写更多的font_path
和font_prop
变量即可。
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.font_manager as font_manager
import matplotlib.ticker
# Workaround for Matplotlib 2.0.0 log axes bug https://github.com/matplotlib/matplotlib/issues/8017 :
# matplotlib.ticker._mathdefault = lambda x: '\\mathdefault{%s}'%x
# Set the font properties (can use more variables for more fonts)
font_path = 'C:\Windows\Fonts\AGaramondPro-Regular.otf'
font_prop = font_manager.FontProperties(fname=font_path, size=14)
ax = plt.subplot() # Defines ax variable by creating an empty plot
# Define the data to be plotted
x = np.linspace(0, 10)
y = x + np.random.normal(x)
plt.plot(x, y, 'b+', label='Data points')
for label in (ax.get_xticklabels() + ax.get_yticklabels()):
label.set_fontproperties(font_prop)
label.set_fontsize(13) # Size here overrides font_prop
plt.title("Exponentially decaying oscillations", fontproperties=font_prop,
size=16, verticalalignment='bottom') # Size here overrides font_prop
plt.xlabel("Time", fontproperties=font_prop)
plt.ylabel("Amplitude", fontproperties=font_prop)
plt.text(0, 0, "Misc text", fontproperties=font_prop)
lgd = plt.legend(loc='lower right', prop=font_prop) # NB different 'prop' argument for legend
lgd.set_title("Legend", prop=font_prop)
plt.show()
原始答案
这基本上将ryggyr在此处的答案与SO上的其他答案结合起来。
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.font_manager as font_manager
# Set the font dictionaries (for plot title and axis titles)
title_font = {'fontname':'Arial', 'size':'16', 'color':'black', 'weight':'normal',
'verticalalignment':'bottom'} # Bottom vertical alignment for more space
axis_font = {'fontname':'Arial', 'size':'14'}
# Set the font properties (for use in legend)
font_path = 'C:\Windows\Fonts\Arial.ttf'
font_prop = font_manager.FontProperties(fname=font_path, size=14)
ax = plt.subplot() # Defines ax variable by creating an empty plot
# Set the tick labels font
for label in (ax.get_xticklabels() + ax.get_yticklabels()):
label.set_fontname('Arial')
label.set_fontsize(13)
x = np.linspace(0, 10)
y = x + np.random.normal(x) # Just simulates some data
plt.plot(x, y, 'b+', label='Data points')
plt.xlabel("x axis", **axis_font)
plt.ylabel("y axis", **axis_font)
plt.title("Misc graph", **title_font)
plt.legend(loc='lower right', prop=font_prop, numpoints=1)
plt.text(0, 0, "Misc text", **title_font)
plt.show()
通过拥有多个字体词典,您可以选择不同的字体/大小/重量/颜色来为各种标题进行设置,选择刻度标签的字体,并独立选择图例的字体。
这里提供一个完全不同的做法,以惊人的效果改变字体大小:
改变图像尺寸!
我通常会使用类似以下的代码:
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure(figsize=(4,3))
ax = fig.add_subplot(111)
x = np.linspace(0,6.28,21)
ax.plot(x, np.sin(x), '-^', label="1 Hz")
ax.set_title("Oscillator Output")
ax.set_xlabel("Time (s)")
ax.set_ylabel("Output (V)")
ax.grid(True)
ax.legend(loc=1)
fig.savefig('Basic.png', dpi=300)
图形尺寸越小,字体相对于绘图区域就越大,标记也会放大。请注意我还设置了每英寸点数dpi
。我从AMTA(美国建模教师协会)论坛的一个帖子中学到了这些知识。
bbox_inches
参数:`fig.savefig('Basic.png', bbox_inches="tight")`
- Pawplt.tight_layout()
。 - Ramon Crehuetplt.figure(figsize=(4,3), dpi=300)
,以达到不保存文件的相同效果。 - dnalow您可以使用 plt.rcParams["font.size"]
设置 matplotlib
中的文本字体大小,也可以使用 plt.rcParams["font.family"]
设置 matplotlib
中的字体族。试试这个例子:
import matplotlib.pyplot as plt
plt.style.use('seaborn-whitegrid')
label = [1,2,3,4,5,6,7,8]
x = [0.001906,0.000571308,0.0020305,0.0037422,0.0047095,0.000846667,0.000819,0.000907]
y = [0.2943301,0.047778308,0.048003167,0.1770876,0.532489833,0.024611333,0.157498667,0.0272095]
plt.ylabel('eigen centrality')
plt.xlabel('betweenness centrality')
plt.text(0.001906, 0.2943301, '1 ', ha='right', va='center')
plt.text(0.000571308, 0.047778308, '2 ', ha='right', va='center')
plt.text(0.0020305, 0.048003167, '3 ', ha='right', va='center')
plt.text(0.0037422, 0.1770876, '4 ', ha='right', va='center')
plt.text(0.0047095, 0.532489833, '5 ', ha='right', va='center')
plt.text(0.000846667, 0.024611333, '6 ', ha='right', va='center')
plt.text(0.000819, 0.157498667, '7 ', ha='right', va='center')
plt.text(0.000907, 0.0272095, '8 ', ha='right', va='center')
plt.rcParams["font.family"] = "Times New Roman"
plt.rcParams["font.size"] = "50"
plt.plot(x, y, 'o', color='blue')
使用plt.tick_params(labelsize=14)
这是我在Jupyter Notebook中通常使用的内容:
# Jupyter Notebook settings
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:95% !important; }</style>"))
%autosave 0
%matplotlib inline
%load_ext autoreload
%autoreload 2
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
# Imports for data analysis
import pandas as pd
import matplotlib.pyplot as plt
pd.set_option('display.max_rows', 2500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.max_colwidth', 2000)
pd.set_option('display.width', 2000)
pd.set_option('display.float_format', lambda x: '%.3f' % x)
#size=25
size=15
params = {'legend.fontsize': 'large',
'figure.figsize': (20,8),
'axes.labelsize': size,
'axes.titlesize': size,
'xtick.labelsize': size*0.75,
'ytick.labelsize': size*0.75,
'axes.titlepad': 25}
plt.rcParams.update(params)
rcParams
的更改非常细致,大多数情况下,你只需要缩放所有字体大小,以便在图中更清晰地看到它们。图形大小是一个好技巧,但是您必须为所有图形都进行设置。另一种方法(不纯粹是matplotlib,或者如果您不使用seaborn可能过于复杂)就是使用seaborn仅设置字体比例:
sns.set_context('paper', font_scale=1.4)
免责声明:我知道,如果您只使用matplotlib,那么您可能不想为缩放图表而安装整个模块(我的意思是为什么不这样做),或者如果您使用seaborn,则具有更多的选项控制权。 但是,在您的数据科学虚拟环境中安装了seaborn,但在此笔记本中未使用它的情况下,存在这种情况。无论如何,这是另一种解决方案。
import matplotlib.pyplot as plt
开始的,所以你可能需要指出pyplot
也有rc
。你可以使用plt.rc(...
而不必更改导入的内容。 - LondonRobfor label in (ax.get_xticklabels() + ax.get_yticklabels()): label.set_fontsize(22)
的操作来影响单个图中的文本大小。 - Terry Brown