I have a data set where I am trying to compare a difference of means between two different samples. However, I do not have the standard deviation of the mean for each sample.
The sample data consists of a date, a number of visits, and a total number of times the event of interest. For each visit, the event of interest can be triggered multiple times. Example data below.
+----------+-----------+-------+--------+------------+
| Date | Treatment | Vists | Event1 | Avg.Event1 |
+----------+-----------+-------+--------+------------+
| 1/1/2012 | A | 5392 | 12390 | 2.297 |
| 1/1/2012 | B | 5489 | 11499 | 2.094 |
| 1/2/2012 | A | 6030 | 12332 | 2.045 |
| 1/2/2012 | B | 6200 | 12003 | 1.935 |
+----------+-----------+-------+--------+------------+
So with a data set like that, I assume I can't use hypothesis tests directly to compare the sample means.
Is there a statistical method to test the difference between treatment A and treatment B?
Any suggestions or pointers in the right direction would be greatly appreciated.
Thank you.