R Dataset / Package DAAG / gaba
Attachment | Size |
---|---|
dataset-80933.csv | 1 KB |
Documentation |
---|
On this Picostat.com statistics page, you will find information about the gaba data set which pertains to Effect of pentazocine on post-operative pain (average VAS scores). The gaba data set is found in the DAAG R package. Try to load the gaba data set in R by issuing the following command at the console data("gaba"). This may load the data into a variable called gaba. If R says the gaba data set is not found, you can try installing the package by issuing this command install.packages("DAAG") and then attempt to reload the data with library("DAAG") followed by data("gaba"). Perhaps strangley, if R gives you no output after entering a command, it means the command succeeded. If it succeeded you can see the data by typing gaba at the command-line which should display the entire dataset. If you need to download R, you can go to the R project website. You can download a CSV (comma separated values) version of the gaba R data set. The size of this file is about 1,028 bytes. Effect of pentazocine on post-operative pain (average VAS scores)DescriptionThe table shows, separately for males and females, the effect of pentazocine on post-operative pain profiles (average VAS scores), with (mbac and fbac) and without (mpl and fpl) preoperatively administered baclofen. Pain scores are recorded every 20 minutes, from 10 minutes to 170 minutes. Usagegaba FormatA data frame with 9 observations on the following 7 variables.
Details15 females were given baclofen, as against 3 males. 7 females received the placebo, as against 16 males. Averages for the two treatments (baclofen/placebo), taken over all trial participants and ignoring sex, are misleading. SourceGordon, N. C. et al.(1995): 'Enhancement of Morphine Analgesia by the GABA_B against Baclofen'. Neuroscience 69: 345-349. Examplesdata(gaba) mr <- range(gaba$min) tran <- range(gaba[, c("mbac","mpl","fbac","fpl")]) ## Means by treatment and sex par(mfrow=c(1,2)) plot(mr, tran, xlab = "Time post pentazocine (min)", ylab = "Reduction in VAS pain rating", type = "n", xlim = c(0, 170), ylim = tran) points(gaba$min, gaba$fbac, pch = 1, col = 8, lwd = 2, lty = 2, type = "b") points(gaba$min, gaba$fpl, pch = 0, col = 8, lwd = 2, lty = 2, type = "b") points(gaba$min, gaba$mbac, pch = 16, col = 8, lty = 2, type = "b") points(gaba$min, gaba$mpl, pch = 15, col = 8, lty = 2, type = "b") box() ## Now plot means, by treatment, averaged over all participants plot(mr, tran, xlab = "Time post pentazocine (min)", ylab = "Reduction in VAS pain rating", type = "n", xlim = c(0, 170), ylim = tran) bac <- (15 * gaba$fbac + 3 * gaba$mbac)/18 plac <- (7 * gaba$fpl + 9 * gaba$mpl)/16 points(gaba$min, plac, pch = 15, lty = 1, col=1, type = "b") points(gaba$min, bac, pch = 16, lty = 1, col=1, type = "b") box() par(mfrow=c(1,1)) -- Dataset imported from https://www.r-project.org. |
Picostat Manual |
---|
How To Register With a Username
How To Register With Google Single Sign On (SSO)
How To Login With a Username and Password
How To Login With Google Single Sign On (SSO)
How To Import a Dataset
How To Perform Statistical Analysis with Picostat
How To Use Educational Applications with Picostat
|
Recent Queries For This Dataset |
---|
No queries made on this dataset yet. |
Title | Authored on | Content type |
---|---|---|
R Dataset / Package datasets / sunspot.year | March 9, 2018 - 1:06 PM | Dataset |
R Dataset / Package datasets / airmiles | March 9, 2018 - 1:06 PM | Dataset |
R Dataset / Package Stat2Data / SampleFG | March 9, 2018 - 1:06 PM | Dataset |
OpenIntro Statistics Dataset - toy_anova | August 9, 2020 - 2:38 PM | Dataset |
swiss | February 26, 2017 - 11:28 AM | Dataset |