Description Usage Arguments Details Examples
Creates time-resolved images series of tracking data with modifiable parameter mapping.
visumot_all
is a wrapper function for visumot_frame
and visumot_summary
. User parameters for both
functions can be passed via the lists visumot_frame.list
and visumot_summary.list
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
df |
dataframe of the form: |
images |
|
frame_range |
|
display_frame |
|
display_summary |
|
visumot_frame.list |
|
visumot_summary.list |
|
save |
|
width |
|
height |
|
rel_width |
|
browse |
|
return |
|
To be written...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # import tracking data
df <- read.csv('hiv_tracking.csv')
# get image files
images <- list.files(pattern='.tif')
# run visumotR with default settings
visumot_all(df, images)
# run visumotR with visumot_frame and visumot_summary
tracks <- c(34, 125, 199, 205)
summary_pars <- list(par.map='angle', time.unit='min', tracks=tracks)
frame_pars <- list(par.map='angle', par.shape='infected', tracks=tracks)
visumot_all(df,
images,
frame_range = c(20,100),
display_summary = 1,
visumot_frame.list = frame_pars,
visumot_summary.list = summary_pars,
file_name = 'hiv_tracking_angle'
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.