タグ付けされた質問 「ggvis」

5
Rパイプ演算子を使用する場合の条件付き評価%>%
パイプ演算子を使用するとき%>%のようなパッケージでdplyr、ggvis、dycharts、など、どのように行うの私は条件付きでステップを実行しますか?例えば; step_1 %>% step_2 %>% if(condition) step_3 これらのアプローチは機能していないようです。 step_1 %>% step_2 if(condition) %>% step_3 step_1 %>% step_2 %>% if(condition) step_3 長い道のりがあります: if(condition) { step_1 %>% step_2 }else{ step_1 %>% step_2 %>% step_3 } すべての冗長性なしでより良い方法はありますか?
93 r  dplyr  ggvis  magrittr 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.