Replies: 2 comments 1 reply
-
I found some examples where instead of using a time domain related column an index column is created so in my case it would be df = df.withColumn("index", F.monotonically_increasing_id())
settings=Settings(
reference_type="external",
time_axis="index"
)
features = [
"index:revenue",
"index:impressions"
] would this be the proper way of approaching the problem and how would I interpret the profiles and comparisons then, seems a bit confusing 😕 |
Beta Was this translation helpful? Give feedback.
-
Hi, Let me know if that solves your problem. Best, -Max |
Beta Was this translation helpful? Give feedback.
-
Hi
I'm trying to use Popmon for monitoring changes in my inventory, and can't make it run properly in my setup.
My setup consists of a pipeline that process a lot of data and I would like to generate profile and comparison metrics based on historical histograms that I've stored.
With each run I would have only access to a dataframe that consists of one hour of data and I would then compare it with the pre-computed hourly histograms, that I've beforehand precomputed and stored
When running:
So I assume that some time-axis is needed so when I've tried to use datetime then I'm getting:
which also looks weird? is it possible to use popmon in my setup? don't know how to properly validate this setup
my data:
Beta Was this translation helpful? Give feedback.
All reactions