We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the case where a column is added to the self.data dataframe, but not by a wwdata Class function, the self.columns command fails. Example:
dataset.columns
Gives ['airflow1','airflow2'] Executing:
dataset.data['airflow_total'] = dataset.data['airflow1']+dataset_control.data['airflow2'] dataset.columns
Gives the same result, while
dataset.data.columns
Does give ['airflow1','airflow2','airflow_total']
The text was updated successfully, but these errors were encountered:
jorasinghr
No branches or pull requests
In the case where a column is added to the self.data dataframe, but not by a wwdata Class function, the self.columns command fails. Example:
Gives ['airflow1','airflow2']
Executing:
Gives the same result, while
Does give
['airflow1','airflow2','airflow_total']
The text was updated successfully, but these errors were encountered: