This tutorial illustrates the usage of the standard scaler as preprocessing method.
void tmva004_RStandardScaler()
{
std::string inputFile = std::string(
gROOT->GetTutorialDir()) +
"/machine_learning/data/tmva_class_example.root";
TH1F h1(
"h1",
";x_{4};N_{Events}", 20, -4, 4);
TH1F h2(
"h2",
";x_{4};N_{Events}", 20, -4, 4);
for (std::size_t i = 0; i <
x.GetShape()[0]; i++) {
}
h2.SetLineWidth(2);
h2.Draw("HIST");
TLegend legend(0.7, 0.7, 0.89, 0.89);
legend.SetBorderSize(0);
legend.AddEntry("h1", "Unscaled", "l");
legend.AddEntry("h2", "Scaled", "l");
legend.Draw();
}
ROOT's RDataFrame offers a modern, high-level interface for analysis of data stored in TTree ,...
1-D histogram with a float per channel (see TH1 documentation)
void Fit(const RTensor< T > &x)
std::vector< T > Compute(const std::vector< T > &x)
RTensor< T > AsTensor(U &dataframe, std::vector< std::string > columns={}, MemoryLayout layout=MemoryLayout::RowMajor)
Convert the content of an RDataFrame to an RTensor.
- Date
- July 2019
- Author
- Stefan Wunsch
Definition in file tmva004_RStandardScaler.C.