Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wela
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Swain Lab
wela
Commits
7a785d1d
Commit
7a785d1d
authored
1 year ago
by
pswain
Browse files
Options
Downloads
Patches
Plain Diff
added plot_lineages to plot multiple at once
parent
3b453880
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plotting.py
+39
-0
39 additions, 0 deletions
plotting.py
with
39 additions
and
0 deletions
plotting.py
+
39
−
0
View file @
7a785d1d
...
...
@@ -105,6 +105,45 @@ def plot_random_time_series(time, values, signalname=None, number=5):
print
(
"
.
"
)
def
plot_lineages
(
irange
,
dl
,
signals
=
[
"
volume
"
,
"
growth_rate
"
],
show
=
True
,
figsize
=
(
10
,
5
),
plot_budding_pts
=
True
,
shade_times
=
None
,
shade_colour
=
"
gold
"
,
):
"""
Wrapper of plot_lineage to plot a range of idx values.
Parameters
----------
irange: list of int
Indices of dataloader ids to plot.
dl: dataloader instance
Contains data to plot.
Example
-------
>>>
plot_lineages
(
arange
(
1
,
20
),
dl
,
[
"
flavin
"
])
"""
if
isinstance
(
irange
,
int
):
irange
=
[
irange
]
for
i
in
irange
:
plot_lineage
(
dl
.
ids
[
i
],
dl
.
df
,
signals
,
show
,
figsize
,
plot_budding_pts
,
shade_times
,
shade_colour
,
)
def
plot_lineage
(
idx
,
df
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment