Establishing crisp, clear column names is essential to keeping a large statistics project organized, especially if you are using a dataframe with multiple column or row names. At some point you will need to rename a column in r without having to create a new column. Fortunately, there are mu...
Read an OpenFAST binary output file and convert it to a pandas DataFrame ```python from pyFAST.input_output import FASTOutputFile from openfast_toolbox.io import FASTOutputFile df = FASTOutputFile('5MW.outb').toDataFrame() time = df['Time_[s]'] Omega = df['RotSpeed_[rpm]'] ``` ...