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
ValueError Traceback (most recent call last) in () 30 auto_intensification=auto_intensification, 31 prioritization=prioritization, ---> 32 new_investment=grid_investment) 33 34 onsseter.results_columns(year, time_step, prioritization, auto_intensification)
~\onsset-master\onsset\onsset.py in elec_extension(self, grid_calc, max_dist, year, start_year, end_year, time_step, grid_capacity_limit, grid_connect_limit, new_investment, auto_intensification, prioritization) 1367 filter_lcoe = filter_lcoe[0] 1368 filter_lcoe.loc[electrified == 1] = 99 -> 1369 unelectrified = np.where(filter_lcoe < min_code_lcoes) 1370 unelectrified = unelectrified[0].tolist() 1371
~\Anaconda3\lib\site-packages\pandas\core\ops.py in wrapper(self, other, axis) 1185 1186 elif isinstance(other, ABCSeries) and not self._indexed_same(other): -> 1187 raise ValueError("Can only compare identically-labeled " 1188 "Series objects") 1189
ValueError: Can only compare identically-labeled Series objects
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ValueError Traceback (most recent call last)
in ()
30 auto_intensification=auto_intensification,
31 prioritization=prioritization,
---> 32 new_investment=grid_investment)
33
34 onsseter.results_columns(year, time_step, prioritization, auto_intensification)
~\onsset-master\onsset\onsset.py in elec_extension(self, grid_calc, max_dist, year, start_year, end_year, time_step, grid_capacity_limit, grid_connect_limit, new_investment, auto_intensification, prioritization)
1367 filter_lcoe = filter_lcoe[0]
1368 filter_lcoe.loc[electrified == 1] = 99
-> 1369 unelectrified = np.where(filter_lcoe < min_code_lcoes)
1370 unelectrified = unelectrified[0].tolist()
1371
~\Anaconda3\lib\site-packages\pandas\core\ops.py in wrapper(self, other, axis)
1185
1186 elif isinstance(other, ABCSeries) and not self._indexed_same(other):
-> 1187 raise ValueError("Can only compare identically-labeled "
1188 "Series objects")
1189
ValueError: Can only compare identically-labeled Series objects
The text was updated successfully, but these errors were encountered: