From 2584b552d123d63a02020745e480b4ee388cb8d4 Mon Sep 17 00:00:00 2001 From: jmmonnet <jean-matthieu.monnet@inrae.fr> Date: Tue, 21 Sep 2021 17:29:40 +0200 Subject: [PATCH] Special character removal --- R/ALS_data_preprocessing.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/ALS_data_preprocessing.Rmd b/R/ALS_data_preprocessing.Rmd index a33fa81..1d1311e 100644 --- a/R/ALS_data_preprocessing.Rmd +++ b/R/ALS_data_preprocessing.Rmd @@ -260,9 +260,9 @@ f <- # number of points npoints = length(rn), # number of first points (proxy for pulse number) - npulses = sum(rn == 1), + npulses = sum(rn == 1), # number of points of class ground - nground = sum(c == 2), + nground = sum(c == 2), # number of unique values of strips nstrip = length(unique(pid)) ) -- GitLab