IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 10 and Version 11 of Raw_Images_Files_in_Nebulous


Ignore:
Timestamp:
Feb 29, 2012, 1:12:50 PM (14 years ago)
Author:
Serge CHASTEL
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Raw_Images_Files_in_Nebulous

    v10 v11  
    7676}}}
    7777
    78  * Now to get the histogram of the values in RawImagesWithoutMaximumOta:
     78 * Now to get an idea on how the ota are spread the hosts, let's display the histogram of their values in {{{RawImagesWithoutMaximumOta}}}.
     79
     80First with a (huge) bucket size of 100,000 (Note the log scale for the y axis):
    7981{{{
    8082SELECT ROUND(ota_count, -4) AS bucket, COUNT(*) FROM RawImagesWithoutMaximumOtaNoOutliers GROUP BY bucket;
     
    8385[[Image(histogram_RawImagesWithoutMaximumOtaNoOutliers_10000.png)]]
    8486
    85 Detail of the first part of the histogram:
     87We are interested in the detail of the first part of the histogram. With a bucket size of 100:
    8688{{{
    8789SELECT ROUND(ota_count, -2) AS bucket, COUNT(*) FROM RawImagesWithoutMaximumOtaNoOutliers GROUP BY bucket LIMIT 150;
     
    8991
    9092[[Image(histogram_RawImagesWithoutMaximumOtaNoOutliers_100.png)]]
     93