Packages that rely on access to web resources need to be written carefully. Web resources can change location, can be temporarily unavailable, or can be very slow to access and retrieve.
The easiest way to fix this is to store the data in a local file and use that file in the vignette. This is a common practice in R/Bioconductor packages.
We just need to make sure that the file size is not large.
Here's the reviewer's comment:
The easiest way to fix this is to store the data in a local file and use that file in the vignette. This is a common practice in R/Bioconductor packages.
We just need to make sure that the file size is not large.