Entering edit mode
slava.ilyntskyy
•
0
@slavailyntskyy-13608
Last seen 7.3 years ago
Hi,
I believe the spia() function code contains a bug in the line where it checks whether de list of ids is contained within all list of ids. Specifically, it checks 'de' names against 'all' values instead of names:
IDsNotP<-names(de)[!names(de)%in%all]
And it should be:
IDsNotP<-names(de)[!names(de)%in%names(all)]
Thanks!