alteryx / alteryx/AlteryxRhelper
Notes
オープン
- 主要言語
- R
- スター
- 20
- フォーク
- 2
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
## Authoring R based Macros in Alteryx
### UI
``` r
# Configuration
config <- list(
inputMode = '%Question.inputMode%',
solver = '%Question.solver%'
)
# Inputs
inputs <- list(
A = read.Alteryx("#1"),
B = read.Alteryx("#2")
)
payload = list(config = config, inputs = inputs)
```
### BackEnd
``` r
results <- outputs(payload)
```
### Reporting
``` r
write.Alteryx(results$data, 1)
write.Alteryx(results$plot, 2)
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
評価
この issue はまだ評価されていません。