Skip to content

Commit 6579fe9

Browse files
committed
Fix growth plots missing one column
1 parent ff2c76a commit 6579fe9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/analyses/growth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ impl Analysis for Growth {
142142
names: growth_labels.clone(),
143143
x_label: "taxa".to_string(),
144144
y_label: format!("#{}s", k),
145-
labels: (1..v[0].len()).map(|i| i.to_string()).collect(),
145+
labels: (0..v[0].len()).map(|i| i.to_string()).collect(),
146146
values: v
147147
.iter()
148148
.map(|row| {

0 commit comments

Comments
 (0)