Im trying to download and show an image from an URL in R.. but the package im tryin to use is not available in my version of R:
Im trying this:
library(EBImage)
img = readImage("https://www.yr.no/assets/images/logo-yr-50.png")
display(img, method = "raster")
Previously, when I try to install the package:
install.packages("EBImage")
Warning in install.packages :
package ‘EBImage’ is not available (for R version 3.4.4)
Is there another package to download and show the Image in R?
PS: Im new in R.