-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalplot.py
134 lines (109 loc) · 5.21 KB
/
calplot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" Short description of this Python module.
Longer description of this module.
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
"""
__author__ = "Daniel Martin-Yerga"
__email__ = "[email protected]"
__copyright__ = "Copyright 2018"
__license__ = "GPLv3"
__program__ = "plotSciFigs"
__version__ = "0.0.1"
from colors import default_color_cycler as dcc
from matplotlib.ticker import MultipleLocator
from scipy import stats
import numpy as np
from matplotlib.patches import Ellipse
class CalPlot():
def __init__(self, plotconfig):
self.plottype, self.filename, self.xlabel1, self.ylabel1, self.ylabel2, self.legends, \
self.xlimit, self.y1limit, self.y2limit, self.doubleaxis, self.legend1loc, self.legend2loc, \
self.xaxislocator, self.y1axislocator, self.y2axislocator, self.converty, self.converty2, \
self.normalized = plotconfig
def plot(self, axis, plotdata, anns):
xdata1, ydata1, xdata2, ydata2 = plotdata
if self.doubleaxis:
if self.legends:
legend1, legend2 = self.legends.split(";;")
legend1 = legend1.split(";")
legend2 = legend2.split(";")
else:
legend1 = [""]*len(xdata1)
legend2 = [""]*len(xdata2)
else:
if self.legends:
legend1 = self.legends.split(";")
else:
legend1 = [""]*len(xdata1)
for i in range(len(ydata1)):
scplot = axis.scatter(xdata1[0], ydata1[i])
axis.errorbar(xdata1[0], ydata1[i], yerr=xdata2[i], fmt='o', ecolor='r', capsize=2, color='k')
slope1, intercept1, r_value1, p_value1, std_err1 = stats.linregress(xdata1[0], ydata1[i])
newx = np.linspace(xdata1[i][0], xdata1[i][len(xdata1[i]) - 1], 100)
line1 = slope1 * np.array(newx) + intercept1
axis.plot(newx, line1, ':')
self.set_format(axis)
# TODO: plot colors, plot style (dots, etc.)
# if self.doubleaxis:
# axis2 = axis.twinx()
# for i in range(len(xdata2)):
# line2, = axis2.plot(xdata2[i], ydata2[i], lineformat, color=dcc._left[i+len(xdata1)]['color'], label=legend2[i])
#
# self.set_format_double(axis2)
# color=dcc._left[1]['color'], ls="-", label=legends[i+1])
self.plotAnnotations(anns, axis)
def plotAnnotations(self, anns, axis):
for i in range(len(anns)):
if anns[i][1] == "Arrow":
axis.arrow(x=float(anns[i][2]), y=float(anns[i][3]), dx=float(anns[i][4]), dy=float(anns[i][5]),
head_width=float(anns[i][6]), head_length=float(anns[i][7]), fc='k', ec='k')
elif anns[i][1] == "Ellipse":
el = Ellipse((float(anns[i][2]), float(anns[i][3])), float(anns[i][4]), float(anns[i][5]),
angle=float(anns[i][6]), edgecolor=anns[i][7], fill=False, linestyle=":")
axis.add_patch(el)
def set_format(self, axis):
axis.set_xlabel(self.xlabel1)
axis.set_ylabel(self.ylabel1)
if self.xlimit:
xlim1, xlim2 = self.xlimit.split(";")
axis.set_xlim(float(xlim1), float(xlim2))
if self.y1limit:
ylim1, ylim2 = self.y1limit.split(";")
axis.set_ylim(float(ylim1), float(ylim2))
leg = axis.legend(loc=self.legend1loc, shadow=False)
if self.xaxislocator:
yml = MultipleLocator(float(self.xaxislocator))
axis.xaxis.set_major_locator(yml)
if self.y1axislocator:
yml = MultipleLocator(float(self.y1axislocator))
axis.yaxis.set_major_locator(yml)
# if color:
# axis.set_ylabel("Abs / a.u.", color=dcc._left[0]['color'])
# axis.tick_params('y', colors=dcc._left[0]['color'])
#TODO: minor locator
# minx = MultipleLocator(0.25)
# axis.xaxis.set_minor_locator(minx)
def set_format_double(self, axis):
axis.set_ylabel(self.ylabel2)
axis.legend(loc=self.legend2loc, shadow=False)
if self.y2limit:
ylim1, ylim2 = self.y2limit.split(";")
axis.set_ylim(float(ylim1), float(ylim2))
if self.y2axislocator:
yml = MultipleLocator(float(self.y2axislocator))
axis.yaxis.set_major_locator(yml)
#TODO: colors, etc.
# TODO: minor locator
# minx = MultipleLocator(0.25)
# axis.xaxis.set_minor_locator(minx)
#self.ax2.set_ylabel('Intensity / kcounts', color=dcc._left[1]['color'])
#self.ax2.tick_params('y', colors='r')