I wandered if you can help me in measuring the p-value from this simple data.frame. My data frame is called (my_data). By viewing it, you can see similar values I have that I am comparing:
my_data <- read.csv("densityleftOK.csv", stringsAsFactors = FALSE [c(1,2,3),]
P1 P2 P3 P4 P5 T1 T2 T3 T4 T5 T6
A 1008 1425 869 1205 954 797 722 471 435 628 925
B 550 443 317 477 337 383 54 111 27 239 379
C 483 574 597 375 593 553 249 325 238 354 411
Thus, I would like to get a single pvalue for each row by comparing placebo vs treated samples. If you don't mind, I'd like to get also the standard deviation between either placebo (P) and treated (T).
I appreciate any help. Thanks