pvanalytics.quality.util.daily_min#

pvanalytics.quality.util.daily_min(series, minimum, inclusive=False)#

Return True for data on days when the day’s minimum exceeds minimum.

Parameters
  • series (Series) – A Datetimeindexed series of floats.

  • minimum (float) – The smallest acceptable value for the daily minimum.

  • inclusive (boolean, default False) – Use greater than or equal to when comparing daily minimums from series to minimum.

Returns

True for values on days where the minimum value recorded on that day is greater than (or equal to) minimum.

Return type

Series

Notes

This function is derived from code in the pvfleets_qa_analysis project under the terms of the 3-clause BSD license. Copyright (c) 2020 Alliance for Sustainable Energy, LLC.