Skip to content

Commit 0005e98

Browse files
Merge pull request #77 from atpage/master
Use subscripts in Poincare plot labels
2 parents 9f4a16b + b0f3f6c commit 0005e98

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The module is also to some extent described in my tutorial series:
8888

8989

9090
## License
91-
The module is licensed under the [GNU General Public License Version3, GPL-v3](https://opensource.org/licenses/GPL-3.0)
91+
The module is licensed under the [MIT License](https://opensource.org/licenses/MIT)
9292

9393
## Validation
9494
Initial results of the validation have been reported in [1, 2].

heartpy/visualizeutils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ def plot_poincare(working_data, measures, show = True, figsize=None,
290290
el.set_edgecolor((0,0,0))
291291
el.fill = False
292292

293-
ax.set_xlabel('RRi_n (ms)')
294-
ax.set_ylabel('RRi_n+1 (ms)')
293+
ax.set_xlabel(r'RRi$_n$ (ms)')
294+
ax.set_ylabel(r'RRi$_{n+1}$ (ms)')
295295
ax.legend(loc=4, framealpha=0.6)
296296
ax.set_title(title)
297297

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"Programming Language :: Python :: 3.6",
4545
"Programming Language :: Python :: 3.7",
4646
"Programming Language :: Python :: 3.8",
47-
"License :: OSI Approved :: GNU General Public License (GPL)",
47+
"License :: OSI Approved :: MIT License",
4848
"Operating System :: OS Independent",
4949
],
5050
)

0 commit comments

Comments
 (0)