ggmap 패키지 설치하기, ggmap 패키지 임포트

CODEDRAGON Development/Big Data, R, ...

반응형


 

 

ggmap 패키지 설치하기

> install.packages("ggmap")
Installing package into C:/Users/codedragon/Documents/R/win-library/3.3
(as
lib is unspecified)
also installing the dependencies
maps, sp, proto, RgoogleMaps, png, mapproj, jpeg, geosphere

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/maps_3.2.0.zip'
Content type 'application/zip' length 3631264 bytes (3.5 MB)
downloaded 3.5 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/sp_1.2-5.zip'
Content type 'application/zip' length 1531355 bytes (1.5 MB)
downloaded 1.5 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/proto_1.0.0.zip'
Content type 'application/zip' length 466613 bytes (455 KB)
downloaded 455 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/RgoogleMaps_1.4.1.zip'
Content type 'application/zip' length 958478 bytes (936 KB)
downloaded 936 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/png_0.1-7.zip'
Content type 'application/zip' length 289138 bytes (282 KB)
downloaded 282 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/mapproj_1.2-5.zip'
Content type 'application/zip' length 85179 bytes (83 KB)
downloaded 83 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/jpeg_0.1-8.zip'
Content type 'application/zip' length 227928 bytes (222 KB)
downloaded 222 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/geosphere_1.5-7.zip'
Content type 'application/zip' length 891729 bytes (870 KB)
downloaded 870 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/ggmap_2.6.1.zip'
Content type 'application/zip' length 4562282 bytes (4.4 MB)
downloaded 4.4 MB

package maps successfully unpacked and MD5 sums checked
package ‘sp’ successfully unpacked and MD5 sums checked
package ‘proto’ successfully unpacked and MD5 sums checked
package ‘RgoogleMaps’ successfully unpacked and MD5 sums checked
package ‘png’ successfully unpacked and MD5 sums checked
package ‘mapproj’ successfully unpacked and MD5 sums checked
package ‘jpeg’ successfully unpacked and MD5 sums checked
package ‘geosphere’ successfully unpacked and MD5 sums checked
package ‘ggmap’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in
        C:\Users\Public\Documents\ESTsoft\CreatorTemp\Rtmpuk3vKz\downloaded_packages

>

 

 

 

ggmap 패키지 임포트

> library(ggmap)
Google Maps API Terms of Service: http://developers.google.com/maps/terms.
Please cite ggmap if you use it: see citation('ggmap') for details.

>

 

 

반응형