Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Heimann
grond
Commits
6242e0a0
Commit
6242e0a0
authored
Jun 17, 2016
by
Sebastian Heimann
Browse files
cleanup, removed savefig hacks
parent
a7ba38e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plot.py
View file @
6242e0a0
...
...
@@ -636,7 +636,6 @@ def draw_solution_figure(
axes
.
axison
=
False
axes
.
set_xlim
(
-
2.25
,
9.75
)
axes
.
set_ylim
(
-
0.5
,
3.5
)
fig
.
savefig
(
'test.pdf'
)
def
draw_contributions_figure
(
model
,
plt
):
...
...
@@ -830,6 +829,7 @@ def plot_dtrace(axes, tr, space, mi, ma, **kwargs):
clip_on
=
False
,
**
kwargs
)
def
plot_spectrum
(
axes
,
spec_syn
,
spec_obs
,
fmin
,
fmax
,
space
,
mi
,
ma
,
syn_color
=
'red'
,
obs_color
=
'black'
,
...
...
@@ -861,7 +861,6 @@ def plot_spectrum(
axes2
.
plot
([
fmin
,
fmin
],
[
-
1.0
-
space
,
-
1.0
],
color
=
color_vline
)
axes2
.
plot
([
fmax
,
fmax
],
[
-
1.0
-
space
,
-
1.0
],
color
=
color_vline
)
for
(
text
,
fx
,
ha
)
in
[
(
'%.3g Hz'
%
fmin
,
fmin
,
'right'
),
(
'%.3g Hz'
%
fmax
,
fmax
,
'left'
)]:
...
...
@@ -1151,7 +1150,8 @@ def draw_fits_figures(ds, model, plt):
elif
target
.
misfit_config
.
domain
==
'frequency_domain'
:
asmax
=
amp_spec_maxs
[
target
.
super_group
,
target
.
group
]
fmin
,
fmax
=
target
.
misfit_config
.
get_full_frequency_range
()
fmin
,
fmax
=
\
target
.
misfit_config
.
get_full_frequency_range
()
plot_spectrum
(
axes2
,
...
...
@@ -1166,7 +1166,6 @@ def draw_fits_figures(ds, model, plt):
color_vline
=
tap_color_annot
,
fontsize
=
fontsize
)
else
:
plot_dtrace
(
axes2
,
dtrace
,
space
,
0.
,
1.
,
...
...
@@ -1198,9 +1197,11 @@ def draw_fits_figures(ds, model, plt):
[
tmark
,
tmark
],
[
-
0.9
,
0.1
],
color
=
tap_color_annot
)
for
tmark
,
text
,
ha
in
[
(
tmarks
[
0
],
'$\,$ '
+
str_duration
(
tmarks
[
0
]
-
source
.
time
),
(
tmarks
[
0
],
'$\,$ '
+
str_duration
(
tmarks
[
0
]
-
source
.
time
),
'right'
),
(
tmarks
[
1
],
'$\Delta$ '
+
str_duration
(
tmarks
[
1
]
-
tmarks
[
0
]),
(
tmarks
[
1
],
'$\Delta$ '
+
str_duration
(
tmarks
[
1
]
-
tmarks
[
0
]),
'left'
)]:
axes2
.
annotate
(
...
...
@@ -1268,8 +1269,6 @@ def draw_fits_figures(ds, model, plt):
title
+=
' (%i/%i, %i/%i)'
%
(
iyy
+
1
,
nyy
,
ixx
+
1
,
nxx
)
fig
.
suptitle
(
title
,
fontsize
=
fontsize
)
fig
.
savefig
(
'fits-%s-%i-%i.pdf'
%
(
title
,
iyy
,
ixx
))
plt
.
show
()
...
...
@@ -1363,8 +1362,6 @@ def draw_hudson_figure(model, plt):
zorder
=
2
,
linewidth
=
0.5
)
fig
.
savefig
(
'hudson.pdf'
)
def
xpop
(
s
,
k
):
try
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment