2015-12-30 41 views
1

我是用戶DiagrammeR來製作流程圖。我需要在流程圖框中的文本中插入≥和°C特殊字符(符號)。如何獲得≥和°符號以顯示在文本中?如何使用DiagrammeR將≥和°C符號插入流程圖框中的文本中?

例如,

grViz(" 

digraph boxes_and_circles { 

#add node statements 
node[shape = rectangle, 
     style = open, 
     color = skyblue2, 
     fontname = Helvetica] 
#Node definitions with substituted label text 
R1 [label = 'Oral temp ≥38.3°C × 1 \nor oral temp 38.0 to 38.2°C × 1h \n or axillary temp ≥37.8°C × 1 \nSTOP LEVOFLOXACIN'] 
#... etc. 
+0

可以使用HTML ...'R1 [標號=「口腔溫度≥ 38.3 ° C×1 \也不口服溫度38.0至38.2 ° C×1H \ n或腋窩溫度≥ 37.8 ° C×1 \ nSTOP LEVOFLOXACIN']'。所以'°'和'≥'用於度數大於等於 – user20650

回答

1

大於和程度的符號在文本渲染對我蠻好。

嘗試運行此示例以仔細檢查這不是由於圖表代碼中未包含在您的問題中的某處的另一個問題。

library(DiagrammeR) 
grViz(" 
    digraph boxes_and_circles { 

    # Node statements 
    node[shape = rectangle] 
    node1 [label = 'Test ≥'] 
    node2 [label = 'Test °C'] 

    node1 -> node2 
    } 
") 
相關問題