This message was deleted.
# ask-questions
w
This message was deleted.
f
With a manual data source, it will ask you to input the count, mean, and stddev for all the metrics manually instead of pulling them from your data source.
Probably not what you want for that use case. Is it possible to insert those user ids into the experiment table so it looks like a real experiment? Or is that not feasible to do?
g
Not directly to the experiment table, but we could potentially find a workaround, like rather than writing directly to the experiment table, we can have a union query on another "pretend to be real experiment" table that have these user_id
Just wondering if there's a cleaner way of doing it instead of a workaround
f
how many user ids would it be? Like would it be feasible to have them in a giant
IN(...)
clause in a SQL query?
Adding a union to the main experiments query would work, but would definitely be a little ugly.
140 Views