Lines Matching refs:columns
172 df = df.pivot(index=df.index, columns='next_comm').fillna(method='ffill')
180 Helper method to re-order the columns of a power DataFrame
183 they are easier to understand if the columns are in a logical order.
186 return pd.DataFrame(df, columns=[c for c in node_cpus if c in df])
227 columns = power.keys()
228 return pd.Series([power[c] for c in columns], index=columns)
242 "power" column with the sum of other columns. Shows the
253 columns = power.keys()
254 return pd.Series([power[c] for c in columns], index=columns)