windowsfonts(
a=windowsfont("華文彩雲"),#這裡使用的是字型的主題名稱
b=windowsfont("華文仿宋"),
c=windowsfont("華文行楷"),
d=windowsfont("華文楷體"),
e=windowsfont("華文隸書"),
f=windowsfont("華文中宋"),
g=windowsfont("華文細黑"),
h=windowsfont("微軟雅黑"),
j=windowsfont("華文新魏"),
k=windowsfont("幼圓")
)plot(1:10,1:10,type="n")
text(2,10,"華文彩雲",family="a");
text(2,8,"華文仿宋",family="b");
text(2,6,"華文行楷",family="c");
text(2,4,"華文楷體",family="d");
text(2,2,"幼圓",family="k");
text(6,10,"華文隸書",family="e")
text(6,8,"華文中宋",family="f")
text(6,6,"華文細黑",family="g")
text(6,4,"微軟雅黑",family="h")
text(6,2,"華文新魏",family="j")
效果如下:
R語言中的引號
aa this is an example.1 this is an example.bb this is an example.1 this is an example.identical aa,bb 1 true anne s home 1 anne s home anne s home 1 a...
R語言中的陣列
陣列 不同於矩陣和資料框,維度大於2。r中最簡單的陣列 3維。行,列,面 如下兩行 三列 四面的陣列。dim1 c a1 a2 dim2 c b1 b2 b3 dim3 c c1 c2 c3 c4 dat array 1 24,c 2,3,4 dimnames list dim1,dim2,dim3...
R軟體中呼叫windows字型二
在系統字型儲存盤中找到想要的字型,右鍵 屬性找到其真正的名字。例如 楷書的名字為 simkai.ttf 使用font add函式新增字型 library showtext font add myfont,simkai.ttf 新增字型 font.families 檢視新增的字型 1 sans ser...