Read an sqlite3 databases with RDataFrame and plot statistics on ROOT downloads. 
Plot the downloads of different ROOT versions reading a remote sqlite3 file with RSqliteDS. Then a TH1F histogram is created and filled using a lambda expression which receives the recorded values in the "version" column of the sqlite3 database. The histogram shows the usage of the ROOT development version.
 
 
      ROOT::RDF::FromSqlite(
"http://root.cern/files/root_download_stats.sqlite", 
"SELECT Version FROM accesslog;");
 
 
 
   };
 
 
 
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
 
R__EXTERN TStyle * gStyle
 
1-D histogram with a float per channel (see TH1 documentation)
 
void SetOptStat(Int_t stat=1)
The type of information printed in the histogram statistics box can be selected via the parameter mod...
 
RDataFrame FromSqlite(std::string_view fileName, std::string_view query)
Factory method to create a SQlite RDataFrame.
 
  
 
- Date
 - August 2018 
 
- Author
 - Alexandra-Maria Dobrescu 
 
Definition in file df030_SQliteVersionsOfROOT.C.