Skip to content

In early 2001, peaceful marches were held around the country protesting United States involvement in Iraq. One of these protest took place in San Francisco, California. The San Francisco Chronicle’s estimated the total number of protestors by taking aerial shots of the protest from more than 2000 ft above. They estimated about 65,000 protesters …

dvcv/StratifiedSampling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Estimating the Number of Protestors in the San Francisco Anti-War Protest
========================================================

Introduction
-------------------------
In early 2001, peaceful marches were held around the country protesting United States involvement in Iraq. One of these protest took place in San Francisco, California. The *San Francisco Chronicle*'s estimated the total number of protestors by taking aerial shots of the protest from more than 2000 ft above. They estimated about 65,000 protesters at the time the photos were taken. 

The purpose of this analysis was to try to replicate their estimate. Using the same *San Francisco Chronicle*'s aerial photographs our estimate rounded to the nearest person was **60,386** compared to *San Francisco Chronicle* estimate of 65,000. Below you can find the methods used to construct our estimate along with a discussions on potential limitations of the data/findings.

Methodology
-------------------------

In order to conduct our estimate we first had to piece together the six photos that were provided by the *San Francisco Chronicle* using a photo editor like *photoshop*. Since some of the photos included parts of other photos the six photos were manually combined into one unifying picture (Reference 1). This was done to avoid over counting. A grid was placed onto the unified photo, making sure the individual squares in the grid were not too large or too small. Each square was numbered if at least one person could be seen either walking or standing (Reference 2). We then used stratified sampling to find the estimated total number of protestors. In order to use stratified sampling we found/defined five things:   

1.) **Observation Unit**  
The observation unit was defined to be any person that can be seen walking/standing in our photo. 

2.) **Sampling Unit**  
The sampling unit was defined to be any grid that consisted of at least one observation unit. Each sampling unit was numbered.  

3.) **Population Size**  
The population size was the total amount of sampling units, which was found to be 582.  

4.) **Stratums**  
Since the density of the crowds varied over the route, the grids were seperated into five stratums. The stratums were defined based on the density in each sampling unit. Sampling units were sorted into a single stratum based on the following conditioins:  

       Stratum 1: 10% or less of the sampling unit is filled with observation units.
  
       Stratum 2: 11%-25% of the sampling unit is filled with observation units.
  
       Stratum 3: 26%-50% of the sampling unit is filled with observation units.

       Stratum 4: 51%-75% of the sampling unit is filled with observation units.

       Stratum 5: 75%-100% of the sampling unit is filled with observation units.   

Visual estimates were used to place each grid into its appropriate stratum. A representative sample of grids for each density was selected. The totals for each group were examined to ensure there were not extreme deviations. This tested the original visual estimate that had assigned grids to density groups. If necessary, a sample grid's category was changed to reflect the count.  A *cvs* file named *DATA.csv* containing all this information was made.

5.)  **Allocation of the Sample**  
Six percent of the grids of each stratum were selected after the grids were sorted. If a stratum was too small then at least two grids were sampled.  


Taking the average for each stratum then multiplying this by the amount of grids in that stratum gives the estimated number of protesters for each stratum. Adding these estimates gives the overall estimated number of protestors in the San Francisco protest at the time the picture was taken. 
  
Results
-------------------------
The total number of grids that were included (sampling units) was 582. The size of each of the five stratum is given below.   
* Stratum 1: 274   
* Stratum 2: 102   
* Stratum 3: 59  
* Stratum 4: 99  
* Stratum 5: 48        

  

Six percent of the grids for each stratum were sampled randomly using the *R* code found in *References* (Reference 3). Our random samples are given below. Each number in the a stratum represents a particular grid (Reference 2).


  * Stratum 1: 112 404 289 401 542 390 581 209 233 421 386 239 423 145 177 399 
  
  * Stratum 2: 24 213 278 570 130 63
  
  * Stratum 3: 326 39 334 470
  
  * Stratum 4: 459 359 457 357 481 117
  
  * Stratum 5: 305 374 475
  
  
There was a total of 35 samples. If the  The average number of observation units for each stratum is given below (Reference 4).

  * Stratum 1: 6.875
  
  * Stratum 2: 33.83 
  
  * Stratum 3: 167
  
  * Stratum 4: 244.857  
  
  * Stratum 5: 426 

The estimatated number of protesters in each stratum is graphed below.  
  
![](Photos/Photo3.png?raw=true)
  
* Stratum 1: 1,883.75  
* Stratum 2: 3,960.66  
* Stratum 3: 9,853.00  
* Stratum 4: 24,240.84  
* Stratum 5: 20,448.00        
* Total: 60,386.25  
    
Adding these estimates gives the overall estimated number of protestors in the San Francisco protest at the time the picture was taken, which we estimated at **60,386**. 
The standard error of our estimate was **1,751.78**(Reference 5). 
With a 95% confidence interval of **(56,952.76, 63,819.75)**(Reference 6).

Discussion
-------------------------
Taking more samples from stratums that have higher variances and less samples from samples with lower variances would most likely give a better estimate, also increasing the total sample size can improve the accuracy of our estimate. However, these methods are time consuming and therefore not worth the small increase in accuracy. 
  
A limitation of the data was the use of visual estimates to sort grids into their stratums. The visual estimates were done by first deciding what sampling unit belonged to what stratum. For example, if sampling unit was almost entirely full with protesters then it was placed in the 76-100% stratum.

Summary
-------------------------
Following the methods described above the estimated number of protestors was **60,386** compared with the *San Francisco Chronicle*'s estimate of 65,000. With a 95% confidence interval of **(56952.76, 63819.75)**. 

References
-------------------------
(1)   

![](Photos/Photo1.png?raw=true)


(2)  

![](Photos/Photo2.png?raw=true)


(3)
```{r results='hide'}
#random sample generator to find which sampling units we need to count 
#observation units in 

#a six percent sample size from each stratum
sampleSizePerStratum=round(Nh*(.06))

#totalSampleSize holds total sample size
totalSampleSize=sum(sampleSizePerStratum)

for(i in 1:5){
  #randomSampleStratum holds what random samples need to be observed/counted
  randomSampleStratum=sample(DATA[,i][!is.na(DATA[,i])],sampleSizePerStratum[[i]])
  print(paste("Stratum",i))
  print(randomSampleStratum)
}
#prints total sample size
paste("Total Sampled ",totalSampleSize)
```

(4)
```{r results='hide'}
#stratum.1 through stratum.5 hold the observed units per sampling unit 
stratum.1=(c(11,4,5,7,2,0,3,18,16,0,0,11,0,12,17,4))
stratum.2=(c(27,67,30,23,46,40))
stratum.3=(c(157,135,186,190))
stratum.4=(c(248,278,209,207,265,220,287))
stratum.5=(c(435,397,446))

#outputs the mean of observed units per stratum
mean(stratum.1)
mean(stratum.2)
mean(stratum.3)
mean(stratum.4)
mean(stratum.5)
```
(5)
```{r results='hide'}
#lStratums hold stratum1 through stratum5 
lStratums=list(stratum.1,stratum.2,stratum.3,stratum.4,stratum.5)
sum=0
#Calculates the standard variance of the estimated total of observation units
for(i in 1:5){

  x=((1-(length(lStratums[[i]])/(Nh[[i]]))))*((Nh[[i]])^2)*((var(lStratums[[i]]))/
  length(lStratums[[i]]))
  sum=sum+x

}
#Standard Error
SE=sqrt(sum)

print(paste("The estimated Standard Error of our stratified sample estimate is", SE, ""))
```
(6)
```{r results='hide'}
#Confidence Intervals
lower.bound=pl[6]-1.96*SE
higher.bound=pl[6]+1.96*SE
confidence.interval=c(lower.bound,higher.bound)
confidence.interval
```

About

In early 2001, peaceful marches were held around the country protesting United States involvement in Iraq. One of these protest took place in San Francisco, California. The San Francisco Chronicle’s estimated the total number of protestors by taking aerial shots of the protest from more than 2000 ft above. They estimated about 65,000 protesters …

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published