我正在尝试让ggplot2在R中使用xkcd字体。但是我遇到了一些问题。
到目前为止,这是我所做的。
1)从xkcd站点的〜/.fonts目录中安装了“Humor Sans”字体
2)安装了“extrafont”软件包。此安装工作顺利。
3)加载库

library(extrafont)

但是,当我尝试导入字体时,出现以下错误。
> font_import(pattern="Humor Sans")
 Importing fonts may take a few minutes, depending on the number of fonts and the speed of the system.
 Continue? [y/n] y
 Scanning ttf files in /usr/share/fonts/, ~/.fonts/ ...
 Extracting .afm files from .ttf files...
 Error in data.frame(fontfile = ttfiles, FontName = "", stringsAsFactors = FALSE) :
 arguments imply differing number of rows: 0, 1

关于我可能做错了什么或应该做些什么的任何建议?
在此先感谢

编辑:运行ubuntu 12.04

最佳答案

你有没有尝试过:

font_import(paths = "~/.fonts", pattern="Humor Sans")

在我看来,“〜/.fonts”不是Mac的默认字体文件夹,因此,如果不是(或不是)您的操作系统,则在编辑原始问题时应包括更多详细信息。

关于R ggplot2字体问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16509719/

10-12 14:04