Endurance: Endurance and vitamin C

EnduranceR Documentation

Endurance and vitamin C

Description

The effect of a single 600 mg dose of ascorbic acid versus a sugar placebo on the muscular endurance (as measured by repetitive grip strength trials) of fifteen male volunteers (19-23 years old).

Format

A data frame with 15 observations on the following 5 variables.

vitamin

number of repetitions until reaching 50 maximal grip after taking viatimin

first

which treatment was done first, a factor with levels Placebo Vitamin

placebo

number of repetitions until reaching 50 strength after taking placebo

Details

Three initial maximal contractions were performed for each subject, with the greatest value indicating maximal grip strength. Muscular endurance was measured by having the subjects squeeze the dynamometer, hold the contraction for three seconds, and repeat continuously until a value of 50 maximum grip strength was achieved for three consecutive contractions. Endurance was defined as the number of repetitions required to go from maximum grip strength to the initial 50 positive verbal encouragement in an effort to have them complete as many repetitions as possible.

The study was conducted in a double-blind manner with crossover.

Source

These data are available from OzDASL, the Australasian data and story library (https://dasl.datadescription.com/).

References

Keith, R. E., and Merrill, E. (1983). The effects of vitamin C on maximum grip strength and muscular endurance. Journal of Sports Medicine and Physical Fitness, 23, 253-256.

Examples


data(Endurance)
t.test(Endurance$vitamin, Endurance$placebo, paired = TRUE)
t.test(log(Endurance$vitamin), log(Endurance$placebo), paired = TRUE)
t.test(1/Endurance$vitamin, 1/Endurance$placebo, paired = TRUE)
gf_qq( ~ vitamin - placebo, data = Endurance)
gf_qq( ~ log(vitamin) - log(placebo), data = Endurance)
gf_qq( ~ 1/vitamin - 1/placebo, data = Endurance)


fastR2 documentation built on Nov. 9, 2023, 9:06 a.m.