diff options
Diffstat (limited to 'R Scripts/duplicate-shotings.R')
| -rw-r--r-- | R Scripts/duplicate-shotings.R | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/R Scripts/duplicate-shotings.R b/R Scripts/duplicate-shotings.R new file mode 100644 index 0000000..0d17a4e --- /dev/null +++ b/R Scripts/duplicate-shotings.R @@ -0,0 +1,9 @@ +vic_times = vic_times_lcc[vic_ids,] +rows=c() +for(i in 1:dim(vic_times[1])){ + row = as.numeric(vic_times[i,2:7]) + if(max(table(row))>1){ + rows = c(rows,i) + } +} + |
