lm<-lm(yp~xp)
abline(lm, col="white")
text(x=100, y=400-count, col=color,
labels=paste(seasons$name[[index]],
" slope=",
round(lm$coefficients[[2]],3)))
## track slope to compute average
slopesum <- slopesum + lm$coefficients[[2]]
Last Edited At: 2018-04-25 - Creator: Edouard
Updated version of the Cyclist Fatigue Resistance Profile Based on Allen and Coggan (2010) Training and Racing with a Power Meter: 2nd Edition. This version will only work with GC v3.5-DEV1804. I would like to thank Manuel and Otokarz for their comments on this fatigue profile graph. The Normalized Power NP variable was replaced by the IsoPower variable in order for it to work in this version of GC. Indeed, TrainingPeak varaibles are not available anymore in GC due to copyright. This Fatigue Resitance Profile should complement the Cyclist Power Profile. For each metabolic level, powers of longer durations are expressed relative to a power of a shorter duration. Level 7 - Noromuscular power: 10s and 20s power relative to 5s. Level 6 - Anaerobic capacity: 1min and 2min power relative to 30s. Level 5 - VO2max: 5min and 8min power relative to 3min. Level 4 - Lactate threshold: 60min and 90min Normalized Power (now IsoPower in GC) relative to 20min power. The color scale represents the fatigue resistance levels according to Allen and Coggan (2010). There are five fatigue levels for Level 7 and 6 as power is highly variable for those levels: Well-Below-Average Fatigue Resistance, Below-Average Fatigue Resistance, Average Fatigue Resistance, Above Average Fatigue Resistance, Well-Above Average Fatigue Resistance. There are only three fatigue levels for Level 5 and 4 as power is less variable here: Below-Average Fatigue Resistance, Average Fatigue Resistance, Above Average Fatigue Resistance. For each metabolic level, the metabolic level and your fatigue resistance level will be indicated in yellow at the top of each graph. The reference power for each metabolique level will be indicated in white. When your fatigue resistance levels are located within Allen and Coggan's limits (2010), you will need to interprete by yourself the results in order for you to develop the best workout to inprove those results according to the characteristics of your next A priority race. When your fatigue resistance levels are located outside Allen and Coggan's limits (2010), indications on which power duration need to be retested will be provided in cyan.
I've been using GC for about 9 months and have previously been using the 'Fatigue Profile' trend, 'Peak' trend & 'Fatigue' trend. Since the latest release they stopped working
I was alerted to the fact that NP no longer exists and has been replaced replaced by IsoPower, so was able to get the 'Fatigue Profile' working again by correcting the entries in the R console.
I am now left with errors in the 'Peak' trend which says that 'function 'lm' cant be found': Has that also been renamed?
## linear regressionlm<-lm(yp~xp)
abline(lm, col="white")
text(x=100, y=400-count, col=color,
labels=paste(seasons$name[[index]],
" slope=",
round(lm$coefficients[[2]],3)))
## track slope to compute average
slopesum <- slopesum + lm$coefficients[[2]]
I'm also left with an error in the 'Bike Fatigue Profile' trend which says it can't open 'stats.dll' in the x64 folder - saying the specified module could not be found (see screenshot of R console above) . The 'stats.dll' file does exist on my PC at that location - I've checked....
--
_______________________________________________
Golden-Cheetah-Users mailing list
golden-cheetah-users@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.
For more options, visit https://groups.google.com/d/optout.
This has often been reported after an upgrade.
The R installer does not put Rcmd.exe (nor any other R
executable) on your PATH. What seems to have happened is that
people did this for themselves in the past, upgraded R (which by default
will install to a different location) and un-installed the old version
of R. If you do that (or install R for the first time), you need to
edit the PATH.
The element you want to add to the path is something like
c:\Program Files\R\R-3.1.0\bin\x64
for 64-bit Rcmd.exe, replacing x64 by i386 for
32-bit.
How you set the path depends on your OS version. Under recent versions, go to ‘User Accounts’ in the Control Panel, and select your account and then ‘Change my environment variables’. (System policies can prevent end users making changes.)
An alternative is to set the PATH in the shell you are running
(Rcmd.exe is a command-line program). For those using the
standard Windows ‘Command Prompt’ Duncan Murdoch suggested:
The simple way to do it just for the command prompt is to write a little
batch file setpath.bat containing
set PATH=newstuff;%PATH%
and then run cmd with
CMD /K setpath.bat
Cracked it!