Skip to content

Commit

Permalink
New tsfresh logo! (#694)
Browse files Browse the repository at this point in the history
* Added new logo

* Renaming and cropping

* Added to README

* Use the logo in readthedocs and change the color accordingly

* Fix another style problem

* Increase width

* Change the order

* Better convert to full path

* Changelog

Co-authored-by: Sophie Walther <sophie.n.walther@googlemail.com>
Co-authored-by: Nils Braun <nilslennartbraun@gmail.com>
  • Loading branch information
3 people authored May 17, 2020
1 parent c6edd38 commit 3854e2a
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Unreleased
- Implemented the Lempel-Ziv-Complexity and the Fourier Entropy (#688)
- Prevent #524 by adding an assert for common identifiers (#690)
- Added permutation entropy (#691)
- Added a logo :-) (#694)

Version 0.16.0
==============
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<div align="center">
<img width="70%" src="./docs/images/tsfresh_logo.svg">
</div>

-----------------

# tsfresh

[![Documentation Status](https://readthedocs.org/projects/tsfresh/badge/?version=latest)](https://tsfresh.readthedocs.io/en/latest/?badge=latest)
[![Build Status](https://travis-ci.org/blue-yonder/tsfresh.svg?branch=master)](https://travis-ci.org/blue-yonder/tsfresh)
[![Coverage Status](https://coveralls.io/repos/github/blue-yonder/tsfresh/badge.svg?branch=master)](https://coveralls.io/github/blue-yonder/tsfresh?branch=master)
Expand All @@ -7,9 +15,6 @@
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/blue-yonder/tsfresh/master?filepath=notebooks)
[![Downloads](https://pepy.tech/badge/tsfresh)](https://pepy.tech/project/tsfresh)


# tsfresh

This repository contains the *TSFRESH* python package. The abbreviation stands for

*"Time Series Feature extraction based on scalable hypothesis tests"*.
Expand Down
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
# html_theme_options = {}
html_theme_options = {
"style_nav_header_background": "#51b63c"
}

# Add any paths that contain custom themes here, relative to this directory.
# html_theme_path = []
Expand Down
144 changes: 144 additions & 0 deletions docs/images/tsfresh_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.. image:: images/tsfresh_logo.svg
:width: 70 %
:alt: some characteristics of the time series
:align: center

=======
tsfresh
=======
Expand Down
6 changes: 2 additions & 4 deletions docs/text/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ To start, we load the data into python
and end up with a pandas.DataFrame `timeseries` having the following shape

.. code:: python
print(timeseries.head())
+-----+-----+-----+-----+-----+-----+-----+-----+-----+
| | id | time| F_x | F_y | F_z | T_x | T_y | T_z |
+=====+=====+=====+=====+=====+=====+=====+=====+=====+
Expand Down Expand Up @@ -85,7 +85,6 @@ In the following we illustrate the time series of the sample id 3 reporting no f
plt.show()
.. image:: ../images/ts_example_robot_failures_nofail.png
:scale: 100 %
:alt: the time series for id 3 (no failure)
:align: center

Expand All @@ -98,7 +97,6 @@ And for id 20 reporting a failure:
plt.show()
.. image:: ../images/ts_example_robot_failures_fail.png
:scale: 100 %
:alt: the time series for id 20 (failure)
:align: center

Expand Down

0 comments on commit 3854e2a

Please sign in to comment.