Skip to content

Commit

Permalink
Merge pull request #69 from kaklise/master
Browse files Browse the repository at this point in the history
Replaced the use of Excel files with CSV files and other minor updates
  • Loading branch information
kaklise authored Mar 5, 2021
2 parents cb46d30 + 4513e4c commit 39543fa
Show file tree
Hide file tree
Showing 23 changed files with 567 additions and 54 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![Pecos](documentation/figures/logo.png)
=======================================
=========================================

[![TravisCI](https://travis-ci.org/sandialabs/pecos.svg?branch=master)](https://travis-ci.org/sandialabs/pecos)
[![Coverage Status](https://coveralls.io/repos/github/sandialabs/pecos/badge.svg?branch=master)](https://coveralls.io/github/sandialabs/pecos?branch=master)
Expand Down
1 change: 0 additions & 1 deletion ci/requirements-py36.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ dependencies:
- pvlib
- plotly
- ephem
- xlrd
- sqlalchemy
- pip:
- coveralls
1 change: 0 additions & 1 deletion ci/requirements-py37.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ dependencies:
- pvlib
- plotly
- ephem
- xlrd
- sqlalchemy
- pip:
- coveralls
1 change: 0 additions & 1 deletion ci/requirements-py38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ dependencies:
- pvlib
- plotly
- ephem
- xlrd
- sqlalchemy
- pip:
- coveralls
4 changes: 2 additions & 2 deletions documentation/example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Simple example
================

A simple example is included in the `examples/simple <https://github.com/sandialabs/pecos/tree/master/examples/simple>`_ directory.
This example uses data from an excel file, **simple.xlsx**, which
This example uses data from a CSV file, **simple.csv**, which
contains 4 columns of data (A through D).

* A = elapsed time in days
Expand Down Expand Up @@ -41,7 +41,7 @@ of expected range, data that doesn't change, and data that changes abruptly, as
The script, **simple_example.py** (shown below), is used to run quality control analysis using Pecos.
The script performs the following steps:

* Load time series data from an excel file
* Load time series data from a CSV file

* Run quality control tests

Expand Down
2 changes: 2 additions & 0 deletions documentation/whatsnew.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Release Notes
================

.. include:: whatsnew/v0.2.0.rst

.. include:: whatsnew/v0.1.9.rst

.. include:: whatsnew/v0.1.8.rst
Expand Down
12 changes: 12 additions & 0 deletions documentation/whatsnew/v0.2.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.. _whatsnew_020:

v0.2.0 (master)
--------------------------

* Replaced the use of Excel files in examples/tests with CSV files. The Excel files were causing test failures.
* Added `min_failures` to the streaming outlier test
* Replaced mutable default arguments with None
* Removed pecos logo from monitoring reports
* Added timestamp to logger
* Updated documentation and tests

Loading

0 comments on commit 39543fa

Please sign in to comment.