matplotlib的默认字体_浅谈matplotlib默认字体设置探索

3bc90872e8674a2e0008cb10987b3c9f.png

控制默认字体的设置

根据官方文档https://matplotlib.org/tutorials/text/text_props.html#default-font可知:

The base default font is controlled by a set of rcParams

默认字体是由一组rcParams控制的。

rcParam

usage

‘font.family"

List of either names of font or {‘cursive", ‘fantasy", ‘monospace", ‘sans", ‘sans serif", ‘sans-serif", ‘serif"}

‘font.style"

The default style, ex ‘normal", ‘italic"

‘font.variant"

Default variant, ex ‘normal", ‘small-caps" (untested)

‘font.stretch"

Default stretch, ex ‘normal", ‘condensed" (incomplete)

‘font.weight"

Default weight. Either string or integer

‘font.size"

Default font size in points. Relative font sizes (‘large", ‘x-small") are computed against this size

我们最关心的当然是"font.family","font.family"的取值有三种:

单一字体名称。

字体名称列表。

{"cursive", "fantasy", "monospace", "sans", "sans serif", "sans-serif", "serif"}中的某一个值。

对于字体名称,可以通过ttflist获取。

from matplotlib.font_manager import fontManager

fontManager.ttflist

对于{"cursive", "fantasy", "monospace", "sans", "sans serif", "sans-serif", "serif"} ,它与实际字体名称之间的映射关系由以下rcParams控制:

family alias

rcParam with mappings

‘serif"

‘font.serif"

‘monospace"

‘font.monospace"

‘fantasy"

‘font.fantasy"

‘cursive"

‘font.cursive"

{‘sans", ‘sans serif", ‘sans-serif"}

‘font.sans-serif"

"font.sans-serif"等取值其实都代表一个字体列表。

如何设置默认字体

官方文档给出了设置默认字体的方法建议:

To set the default font to be one that supports the code points you need, prepend the font name to ‘font.family" or the desired alias lists

matplotlib.rcParams[‘font.sans-serif"] = [‘Source Han Sans TW", ‘sans-serif"]

or set it in your .matplotlibrc file:

font.sans-serif: Source Han Sans TW, Arial, sans-serif

To control the font used on per-artist basis use the ‘name", ‘fontname" or ‘fontproperties" kwargs documented above.

通过常见的方法设置: matplotlib.rcParams["font.sans-serif"] = ["Source Han Sans TW", "sans-serif"]

设置.matplotlibrc文件

.matplotlibrc文件中的字体设置

配置文件中重要的就是"font.sans-serif"等字体家族列表,列表是有优先级的,越靠前字体的优先级越高,所有很多教程中都要求把需要设置的字体设置为列表的第一个元素。

## ***************************************************************************

## * FONT *

## ***************************************************************************

## The font properties used by `text.Text`.

## See https://matplotlib.org/api/font_manager_api.html for more information

## on font properties. The 6 font properties used for font matching are

## given below with their default values.

##

## The font.family property has five values:

## - "serif" (e.g., Times),

## - "sans-serif" (e.g., Helvetica),

## - "cursive" (e.g., Zapf-Chancery),

## - "fantasy" (e.g., Western), and

## - "monospace" (e.g., Courier).

## Each of these font families has a default list of font names in decreasing

## order of priority associated with them. When text.usetex is False,

## font.family may also be one or more concrete font names.

##

## The font.style property has three values: normal (or roman), italic

## or oblique. The oblique style will be used for italic, if it is not

## present.

##

## The font.variant property has two values: normal or small-caps. For

## TrueType fonts, which are scalable fonts, small-caps is equivalent

## to using a font size of "smaller", or about 83%% of the current font

## size.

##

## The font.weight property has effectively 13 values: normal, bold,

## bolder, lighter, 100, 200, 300, ..., 900. Normal is the same as

## 400, and bold is 700. bolder and lighter are relative values with

## respect to the current weight.

##

## The font.stretch property has 11 values: ultra-condensed,

## extra-condensed, condensed, semi-condensed, normal, semi-expanded,

## expanded, extra-expanded, ultra-expanded, wider, and narrower. This

## property is not currently implemented.

##

## The font.size property is the default font size for text, given in pts.

## 10 pt is the standard value.

##

## Note that font.size controls default text sizes. To configure

## special text sizes tick labels, axes, labels, title, etc, see the rc

## settings for axes and ticks. Special text sizes can be defined

## relative to font.size, using the following values: xx-small, x-small,

## small, medium, large, x-large, xx-large, larger, or smaller

#font.family: sans-serif

#font.style: normal

#font.variant: normal

#font.weight: normal

#font.stretch: normal

#font.size: 10.0

#font.serif: DejaVu Serif, Bitstream Vera Serif, Computer Modern Roman, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif

#font.sans-serif: DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif

#font.cursive: Apple Chancery, Textile, Zapf Chancery, Sand, Script MT, Felipa, cursive

#font.fantasy: Comic Neue, Comic Sans MS, Chicago, Charcoal, ImpactWestern, Humor Sans, xkcd, fantasy

#font.monospace: DejaVu Sans Mono, Bitstream Vera Sans Mono, Computer Modern Typewriter, Andale Mono, Nimbus Mono L, Courier New, Courier, Fixed, Terminal, monospace

通过rc函数设置默认字体属性的方法

根据文档可知

传统的字体设置方法plt.rcParams["font.sans-serif"] = ["simhei"]等价于

font = {"sans-serif" : ["simhei"]}

plt.rc("font", **font)

matplotlib.pyplot.rc(group, **kwargs)

Set the current rcParams. group is the grouping for the rc, e.g., for lines.linewidth the group is lines, for axes.facecolor, the group is axes, and so on. Group may also be a list or tuple of group names, e.g., (xtick, ytick). kwargs is a dictionary attribute name/value pairs, e.g.,:

rc("lines", linewidth=2, color="r")

sets the current rcParams and is equivalent to:

rcParams["lines.linewidth"] = 2

rcParams["lines.color"] = "r"

到此这篇关于浅谈matplotlib默认字体设置探索的文章就介绍到这了,更多相关matplotlib默认字体 内容请搜索云海天教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持云海天教程!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/339760.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何使用Apache Camel,Quarkus和GraalVM快速运行100个骆驼

今天,我继续在youtube上练习,并录制了10分钟的视频,介绍了如何创建一个新的Camel and Quarkus项目,该项目包括Rest和HTTP服务以及开箱即用的健康检查和指标。 然后比较以JVM模式运行示例与使用GraalVM编译的本机内存的使用情况。…

java空心菱形_java 空心菱形

分为两部分,先打印前四行,再打印后三行,int n 4;    //设初始值为4for(int i0;ifor(int j0;jSystem.out.print(" ");}for(int k0;kif(k0||k2*i) {    //打印前四行的*,中间部分输出空格System.out.print(&quo…

java接口版本控制_为什么要在Java中控制类和接口的可见性

java接口版本控制维护是软件开发的重要方面之一,并且经验证明,保持较低组件可视性的软件比暴露更多组件的软件更易于维护。 您不会在一开始就意识到它,但是在重新设计应用程序时会严重错过它。 由于保持向后兼容性是许多应用程序的“必须具备…

遮掩java_css之图片下方定位遮掩层

需要的效果如图,图片下方加个遮掩层:html:css:.listContent>div{width:300px;height: 300px;float: left;margin-top: 20px;margin-left: 20px;position:relative;}.mask{width:300px;height: 40px;background-color:#FFCCCC;p…

使用JDK的密码流的加密怪癖(以及如何做)

在我们的日常工作中,我们经常遇到经常性的主题,即将数据(例如文件)从一个位置传输到另一个位置。 这听起来像是一个非常简单的任务,但让我们通过声明这些文件可能包含机密信息并可以通过非安全的通信渠道进行传输这一事…

python中函数的定义实例_Python基础之函数的定义与使用实例

此文实例介绍了Python基础之函数的定义与使用。推荐给大伙学习一下,内容如下:Python 定义函数使用 def 关键字,一般格式如下:def 函数名(参数列表):函数体让我们使用函数来输出"Hello World!"&am…

log4j 程序日志_使用log4j监视和筛选应用程序日志到邮件

log4j 程序日志在今天的帖子中,我将向您展示如何将日志语句过滤为警告电子邮件。 这是出于监视我正在处理的一个应用程序的一些关键点的需要。 您可以使用一些工具来执行应用程序监视。 我不会详细介绍这些工具,但有时让应用程序发送警告电子邮件会更容易…

python切换消息窗_用Python切换窗口

The way that user had defined find_window only allows you to choose by the classname of the window用户定义它的方式是将这两个参数class_name和window_name传递给^{}(后者反过来只调用Win32 API函数^{})。所以,就这样做:windowmgr.find_window(No…

Java UnknownHostException –服务器的无效主机名–如何解决?

An UnknownHostException的快速指南,如果在为远程方法调用创建到远程主机的连接时发生java.net.UnknownHostException,则会抛出该快速指南。 UnknownHostException的预防方法。 1.简介 在本教程中,我们将学习什么是UnknownHostException以及…

mongodb连接java_如何从Java EE无状态应用程序连接到MongoDB

mongodb连接java在本文中,我将介绍如何从无状态Java EE应用程序连接到MongoDB,以利用与MongoDB Java驱动程序提供的数据库的内置连接池。 如果您开发的REST API对MongoDB执行操作,则可能是这种情况。 获取Java MongoDb驱动程序 要将Java连接…

学java专科_专科学历可以学习java开发吗

学习Java的热潮越来越高涨,除了转行而来的人,很多刚毕业的学生也加入到其中。很多人都觉得学习Java需要有一个高学历作为基础,一些专科生在学习之前会犹豫,他们是否能学习Java,首先学程序开发,入行Java开发…

具有InlfuxDB的Spring Boot和Micrometer第3部分:Servlet和JDBC

在上一个博客中,我们使用由InfluxDB支持的千分尺设置了反应式应用程序。 在本教程中,我们将使用传统的带JDBC阻塞式Servlet的Spring Stack。 我选择的数据库是postgresql。 我将使用与先前博客文章相同的脚本。 因此,我们将拥有初始化数据库…

java linkedlist实例_Java Linkedlist原理及实例详解

这篇文章主要介绍了Java Linkedlist原理及实例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下定义:linkedlist属于链表结构,方便添加和删除元素,但查询不方便&#xff0c…

jsf xhtml调用方法_JSF的工作方式以及调试方法–可以使用polyglot吗?

jsf xhtml调用方法JSF不是我们通常认为的那样。 这也是一个调试起来可能有些棘手的框架,尤其是在初次遇到时。 在这篇文章中,让我们继续探讨为什么会出现这种情况,并提供一些JSF调试技术。 我们将讨论以下主题: JSF不是我们经常想…

java 分别编译_Java源文件和编译后的文件扩展名分别为()_学小易找答案

【单选题】( )下列关于逻辑运算符AND,描述正确的是哪一项?【单选题】如果声明一个类时使用abstract修饰符,则表明该类是()【填空题】要查询student表中name字段值以字符“m”开始,以字符“d”结束的记录应该在WHERE子句后跟 LIKE________。【填空题】不允许在关系中出现重复记…

将Auth0 OIDC(OAUTH 2)与授权(组和角色)集成

如果您正在使用Auth0对多个现有应用程序中的用户进行身份验证和授权,则可能需要将下一个Web应用程序与Auth0集成。 有多种方法可以执行此操作,例如,如果要将Jenkins与Auth0集成,则可以使用SAML v2;否则,可…

power of two java_LeetCode算法题-Power Of Two(Java实现)

这是悦乐书的第194次更新,第200篇原创01 看题和准备今天介绍的是LeetCode算法题中Easy级别的第56题(顺位题号是231)。给定一个整数,写一个函数来确定它是否是2的幂。例如:输入:1输出:true说明:2^0 1输入&a…

tomee_一罐将其全部统治:Apache TomEE + Shrinkwrap == JavaEE引导

tomee警告:我不是Spring Boot的专家。 我发现很多事情对此非常有趣,并且当然可以真正改善您的日常工作。 而且,我对Spring Boot没有任何反对,也没有开发或使用它的人。 但是我认为社区高估了该产品。 一年前,我开始收…

java比较equlse_java基础知识要点

一、抽象:二、封装:有了封装才有数据类型!个体更多的设置为封装体,这样更加安全。该公开的公开(方法),该隐藏的隐藏(属性),配置一个访问窗口方法的调用(按值传递和按引用传递)1、在栈中分配空间(暂时给方法…

使用Spring Boot和Project Reactor处理SQS消息

我最近参与了一个项目,在该项目中,我不得不有效地处理通过AWS SQS Queue流入的大量消息。 在这篇文章(可能还有一篇)中,我将介绍使用出色的Project Reactor处理消息的方法。 以下是我要进行的设置: 设置本…