# Helicopters: example dataSource: `Helicopters/helicopters.Rmd`This early ROS example simply displays a small helicopter flying-time dataset. The Python port loads the same file and gives a quick inspection.```{python}from pathlib import Pathimport pandas as pdroot = Path("../../ROS-Examples")helicopters = pd.read_table(root /"Helicopters/data/helicopters.txt", sep=r"\s+")helicopters``````{python}helicopters.describe(include="all")```