Replies: 1 comment 2 replies
-
Robyn has a evolutionary process (see Nevergrad) that includes certain randomness. Different dataset (incl. different names) might result in different seeds. Although, Robyn outputs multiple results. I believe you should be able to find similar results between these runs. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone!
This is Ivan. I am a newbie here but working with Robyn a few months (newbie too I guess).
I would like to share with you something that happened while running several tests with my dataset, in order to find out whether it might be an issue or not.
I have four channels with costs named in the dataset as: Employment, Events, TP_Events, and Customers.
Running Robyn with these names returns result X (let's call it like that): sorting alphabetically desc (internally) is displayed like below in the one-pagers:
TP_Events, Events, Employment, Customers.
Well, it turns out that if I change the last column name to Sale_Costs, for example, the results are Y, not the same anymore despite the data hasn't been touched, remains the same. Only that column name was changed. The sorting this time in the one-pagers is like:
TP_Events, Sales_Costs, Events, Employment.
Both results pulled out by Robyn are different (R2, model, one-pagers plots, etc.) by only changing one column name (data in dataset and Robyn code remains the same), which modifies the internal alphabetically sorting of Robyn and based on this, it goes towards different outputs.
Might it be an issue? Do you recommend me to raise one?
Many thanks in advance for your help.
Best regards.
Beta Was this translation helpful? Give feedback.
All reactions