Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic Scatterplots & lot of bar plot fixes #270

Merged
merged 36 commits into from
Feb 26, 2020
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5d23b48
minor docstring change
MerktSimon Jan 7, 2020
f926a1e
fixes #196
MerktSimon Jan 7, 2020
1b5714c
flake8
MerktSimon Jan 9, 2020
64b8f48
resolves #210
MerktSimon Jan 15, 2020
e73d247
resolved merging changes with new develop branch
MerktSimon Jan 15, 2020
5fbd7fa
Flake8
MerktSimon Jan 15, 2020
e6641be
solves #213 in both ways
MerktSimon Jan 15, 2020
7545f71
Flake8
MerktSimon Jan 15, 2020
0d2d2f3
Merge branch 'develop' into fixes_sm
MerktSimon Jan 22, 2020
fe8b117
Codacity
MerktSimon Jan 22, 2020
d8e301c
Merge remote-tracking branch 'origin/fixes_sm' into fixes_sm
MerktSimon Jan 22, 2020
98bff87
Codacity
MerktSimon Jan 22, 2020
409b824
Merge branch 'develop' into fixes_sm
MerktSimon Jan 23, 2020
ed3a033
minor changes
MerktSimon Jan 23, 2020
3d3b3a2
Merge branch 'fixes_sm' of https://github.com/ICB-DCM/PEtab into fixe…
MerktSimon Jan 23, 2020
25d435c
resolves #197
MerktSimon Jan 27, 2020
f44b2da
small fix
MerktSimon Jan 27, 2020
b22d40c
change all barplot colors to blue
MerktSimon Feb 6, 2020
377a5a0
resolve merging conflicts
MerktSimon Feb 6, 2020
a1ea553
fix codacy complaints
MerktSimon Feb 6, 2020
8d5a5b0
travis
MerktSimon Feb 6, 2020
700632f
adjust angle for barplot ticks
MerktSimon Feb 6, 2020
75cf6d8
implementing scatter plots (resolves #263)
MerktSimon Feb 6, 2020
799bfb5
merge develop
MerktSimon Feb 6, 2020
06fed88
small stuff
MerktSimon Feb 7, 2020
72bbb25
barplot: fix noise, legend
MerktSimon Feb 7, 2020
87f83df
Merge branch 'develop' into hackathon_sm
MerktSimon Feb 7, 2020
006412e
Merge branch 'develop' into hackathon_sm
dweindl Feb 10, 2020
2a6e7f0
Merge branch 'develop' into hackathon_sm
yannikschaelte Feb 17, 2020
b41d11f
Merge branch 'develop' into hackathon_sm
yannikschaelte Feb 20, 2020
b1b4e5f
Merge branch 'develop' into hackathon_sm
yannikschaelte Feb 24, 2020
204b868
Merge branch 'develop' into hackathon_sm
dweindl Feb 25, 2020
7d50866
make scatterplots square
MerktSimon Feb 26, 2020
9e43527
Merge branch 'hackathon_sm' of https://github.com/PEtab-dev/PEtab int…
MerktSimon Feb 26, 2020
7db88d5
small fix
MerktSimon Feb 26, 2020
657b4bd
Merge branch 'develop' into hackathon_sm
MerktSimon Feb 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small fix
  • Loading branch information
MerktSimon committed Jan 27, 2020
commit f44b2dae0ab255c626ccaac363dee6f74d3acab7
2 changes: 1 addition & 1 deletion petab/visualize/plotting_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def plot_lowlevel(vis_spec: pd.DataFrame,
# set yScale
if vis_spec.yScale[i_visu_spec] == 'lin':
ax[axx, axy].set_yscale("linear")
elif vis_spec.xScale[i_visu_spec] == 'log10':
elif vis_spec.yScale[i_visu_spec] == 'log10':
ax[axx, axy].set_yscale("log")

if vis_spec.plotTypeSimulation[i_visu_spec] == 'LinePlot':
Expand Down