alteryx / alteryx/AlteryxRhelper
Notes
Đang mở
- Ngôn ngữ chính
- R
- Star
- 20
- Fork
- 2
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
## 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)
```
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.