2017-11-01 6 views
0

私は次のコードを使用すると、それぞれの間に線があります。添付の画像をご覧ください。 enter image description herehelpTextは余分な線で表示されています(R Shiny)

CODE: 

helpText("method 1 = TwoStepCluster (Complete)"), 
helpText("method 2 = TwoStepCluster (Ward.D2)"), 
helpText("method 3 = TwoStepCluster (none)"), 
helpText("method 4 = Fixed Solution used as a starting point"), 

追加の行なしで結果を表示するにはどうすればよいですか?

答えて

1

helpTextを複数使用しているため、追加行が表示されています。あなたは自分の望む結果を得るために1 helpTextと複数の改行br()を使用する必要があります。

helpText("method 1 = TwoStepCluster (Complete)", 
      br(), 
      "method 2 = TwoStepCluster (Ward.D2)", 
      br(), 
      "method 3 = TwoStepCluster (none)", 
      br(), 
      "method 4 = Fixed Solution used as a starting point") 

結果:

enter image description here

関連する問題