I wanna do some outlier detection with BigQuery and Datalab. MIN and MAX give me the same values but Quantiles are different. BigQuery gave me
Row f0_ f1_ approx_quantiles
1 0.01 820.55 0.01
190.04
820.55
which seems wrong they are just the min & max. Datalab give me other Quantiles.
I did:
SELECT MIN(Menge),MAX(Menge),APPROX_QUANTILES(Menge,2) AS approx_quantiles FROM `nifty-stage-155512.de_veolia_vus_dev_views.tank_data_4`
Do someone else experienced the same or does someone having a solutions???
Edit
From datalab I get
0.25 61.645
0.50 190.000
0.75 253.000
Name: MENGE, dtype: float64