I am running below code and get this:
import pandas as pd
pf=pd.read_csv("https://www.dropbox.com/s/08kuxi50d0xqnfc/demo.csv?dl=1")
x=pf[pf['fuv1'] == 0].count()*100/1892
x
id          0.528541
date        0.528541
count       0.528541
idade       0.528541
site        0.528541
baseline    0.528541
fuv1        0.528541
fuv2        0.475687
fuv3        0.528541
fuv4        0.475687
dtype: float64
What I want is just to get this result 0.528541 and forgot all the above results.
What to do? Thanks.
 
     
    