Is it possible to get average power over a specific heart rate? This over a larger period (for instance this year), to compare. I know you can see power@150 per activity.I've seen an earlier post on this topic, but couldn't make much of it. Thank you.

Worked, thank you! Now I want this for 171 bpm, but it keeps changing to HEARTRATE < 150 && HEARTRATE > 140. I even can't remove the metric, it keeps showing up again after restarting. I must be overlooking something.
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to the Google Groups "golden-cheetah-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/8db68cec-6065-4e64-8083-26b648becc93%40googlegroups.com.
Hi Adam,In the past I created a python chart for this. This shows for an range of heart rate the average power in an date range, so not an single hr value. I did not use any user metrics for it.So if you got python configured and look in the clouddb chart under uncurated I think it is listed as "power at hr".One note this chart is pretty slow, downside of not using metrics.Hope this helps.Kind regards,Remco
Op ma 11 mei 2020 19:22 schreef Adam Jędrysik <adam.j...@gmail.com>:
Mark could You help me how to add that average power at hr to trends->tracker and as a chart?--
On Monday, May 11, 2020 at 8:57:29 AM UTC+2, Mark Liversedge wrote:On Sunday, 10 May 2020 22:45:35 UTC+1, Sven Bauwens wrote:Worked, thank you! Now I want this for 171 bpm, but it keeps changing to HEARTRATE < 150 && HEARTRATE > 140. I even can't remove the metric, it keeps showing up again after restarting. I must be overlooking something.You will need to create a second user metric and edit it.You will need to press Save when you leave preferences/settings to ensure changes take effect.Mark
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to the Google Groups "golden-cheetah-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-users+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/8db68cec-6065-4e64-8083-26b648becc93%40googlegroups.com.
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to the Google Groups "golden-cheetah-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/2a1a84cb-d226-4344-bc76-860f8d5f23ec%40googlegroups.com.
Hi Thomas,
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-users+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/8db68cec-6065-4e64-8083-26b648becc93%40googlegroups.com.
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to the Google Groups "golden-cheetah-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-users+unsub...@googlegroups.com.
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-che...@googlegroups.com
http://groups.google.com/group/golden-cheetah-users?hl=en
---
You received this message because you are subscribed to the Google Groups "golden-cheetah-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golden-cheetah-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golden-cheetah-users/d882738b-4f64-4eb2-b30e-0cc6a51a4ee9%40googlegroups.com.
Hi all,{
# only calculate for rides containing power
relevant { Data contains "P" && Data contains "H" }
# initialise aggregating variables
init { joules <- 0; time <- 0; }
# joules = power x time, for each sample
sample {
if (HEARTRATE > 134 && HEARTRATE < 150) {
joules <- joulels + (POWER * RECINTSECS );
time <- time + RECINTSECS;
}
}
# calculate metric value at end
value { joules / time; }
count { time; }
}
Then I added this metric to a chart. Please see screenshots.
However, the resulting chart is empty, and in my user metric clicking Test evaluates to 0 results.
What am I doing wrong?
Thanks!

