有没有办法控制DiagramR软件包中的流程图

时间:2020-01-30 03:56:41

标签: r graphviz diagram flowchart

我正在使用diagramR软件包来创建流程图。我没有流程图标题的问题(图)。另外,我也没有标签来解释该过程。 有关如何解决此问题的任何建议?

grViz("digraph flowchart {
      # node definitions with substituted label text
      node [fontname = Helvetica, shape = rectangle]        
      tab1 [label = '@@1']
      tab2 [label = '@@2']
      tab3 [label = '@@3']
      tab4 [label = '@@4']
      tab5 [label = '@@5']
      tab6 [label = '@@6']

      # edge definitions with the node IDs
      tab1 -> tab2;
      tab2 -> tab3;
      tab2 -> tab4 -> tab5
      tab6

      }

      [1]: 'Questionnaire sent to n=1000 participants'
      [2]: 'Participants came to clinic for evaluation n=700'
      [3]: 'Participants non-eligible for the study n=100'
      [4]: 'Participants eligible for the study n=600'
      [5]: 'Study sample n=600'
      [6]: 'Eligibility: >18, Live in an urban area'
      ")

0 个答案:

没有答案
相关问题