Skip to content
Prev 5527 / 7420 Next

adehabitatLT merge different bursts for same ID

Hey Giulia,

By definition, you cannot have a single burst with different burst names.
If you really want to merge all bursts into one, you need to have a unique
burst ID:

* Either in your simulations
* or later one after your call to ld:

migrdf <- ld(migr)
migrdf$movtype <- migrdf$burst    # If you want to keep the movement type
migrdf$burst <- "Prova"           # Same as ID, but does not need to be
migr_singleburst <- dl(migrdf)

Hope this helps,
Mathieu.
On 02/02/2017 10:00 AM, g.cerritelli wrote: