Commit 2584b552 authored by Monnet Jean-Matthieu's avatar Monnet Jean-Matthieu
Browse files

Special character removal

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -260,9 +260,9 @@ f <- ...@@ -260,9 +260,9 @@ f <-
# number of points # number of points
npoints = length(rn), npoints = length(rn),
# number of first points (proxy for pulse number) # number of first points (proxy for pulse number)
npulses = sum(rn == 1), npulses = sum(rn == 1),
# number of points of class ground # number of points of class ground
nground = sum(c == 2), nground = sum(c == 2),
# number of unique values of strips # number of unique values of strips
nstrip = length(unique(pid)) nstrip = length(unique(pid))
) )
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment