-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[DF] Beauty fixes to Display #9116
Copy link
Copy link
Closed
Description
Current output:
root [5] ROOT::RDataFrame(10).Define("x", "rdfentry_").Define("y", "rdfentry_*2").Display()->Print()
x | y |
0 | 0 |
1 | 2 |
2 | 4 |
3 | 6 |
4 | 8 |
Desired output is more like (suggestions welcome):
entry | x | y |
---------------
0 | 0 | 0 |
---------------
1 | 1 | 2 |
---------------
2 | 2 | 4 |
---------------
3 | 3 | 6 |
---------------
4 | 4 | 8 |
---------------
Reactions are currently unavailable