alteryx / alteryx/AlteryxRhelper

Notes

Open
#1 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
R
Stars
20
Forks
2
PR merge metrics
No merged PRs in 30d

Description

## 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)
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.