Can I output a model (or workflow) created with Alteryx as source code (Pytho etc.)?
Try the above. Alteryx Designer does work on a Unix / Linux environment.
Another option is maybe explore Alteryx Promote if you are only using Alteryx Designer for now.
When you state 'source code', can you provide some more context?
Thank you for your reaction.
For example, suppose that I created a workflow that uses Summarize Tool to obtain and display average, maximum, minimum, and standard deviation using training data file "file1".
In that case, it means that "Can Alteryx output the source code like below".
(python source code)
----------------------------------------------------------------
import pandas as pd
# read csvdf = pd.read_csv("file1.csv", index_col=0)
# sumsum = df['ATK'].sum()print("sum:", sum)
# meanmean = df['ATK'].mean()print("mean:", mean)
# maxdfmax = df['ATK'].max()print("max:", dfmax)
# mindfmin = df['ATK'].min()print("min:", dfmin)
# stdstd = df['ATK'].std()print("std:", std)
# variancevar = df['ATK'].var()print("var:", var)
We would like to do something similar to this, for example, with respect to models created with regression tools.