グラフの軸を一括してログ表示にする( gStyle->SetOptLogx

1gStyle->SetOptLogx(1)    // X-axis
2gStyle->SetOptLogy(1)    // Y-axis
1from ROOT import gStyle
2gStyle.SetOptLogx(1)
3gStyle.SetOptLogy(1)