Hi, my R code and output in Rstudio looks like below. How do I do the same in alteryx?
data.tb
## Output -->
| name | date |
| john smith | 2022-07-21 |
file.df <- data.frame(
col_a = data.tb[1,1]
col_b = data.tb[1,2]
message = "hello world"
)
file.df
## Output -->
| name | date | message |
| john smith | 2022-07-21 | hello world |
Issue: when I try to do the same in alteryx, only the value is getting filled, but not the column names. I am getting below output in alteryx
## Output -->
| col_a | col_b | message |
| john smith | 2022-07-21 | hello world |