728x90
반응형

 

백신 프로그램이 임시 저장 폴더에서 이동을 금지시킨 것이 원인

백신을 잠시 끄고 실행시키면 정상적으로 설치가 진행됨.

 

 

 

 

 

참조: https://m.blog.naver.com/jjy0501/221300556843

 

R 패키지 설치 및 업데이트 오류 (1)

   R 패키지를 설치하거나 업데이트 하다보면 여러 가지 문제가 생기는 경우들이 있습니다. 이 ...

blog.naver.com

 

728x90
반응형
728x90
반응형

쌩뚱맞은 microsoft.com 에러?

 

에러 발생

> install.packages("ggplot2")
Warning in install.packages :
  unable to access index for repository https://mran.microsoft.com/snapshot/2020-07-16/src/contrib:
  URL 'https://mran.microsoft.com/snapshot/2020-07-16/src/contrib/PACKAGES'를 열 수 없습니다
WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:

https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ‘C:/Users/chpark/Documents/R/win-library/4.0’
(as ‘lib’ is unspecified)
Warning in install.packages :
  unable to access index for repository https://mran.microsoft.com/snapshot/2020-07-16/src/contrib:
  URL 'https://mran.microsoft.com/snapshot/2020-07-16/src/contrib/PACKAGES'를 열 수 없습니다
Warning in install.packages :
  package ‘ggplot2’ is not available (for R version 4.0.2)
Warning in install.packages :
  unable to access index for repository https://mran.microsoft.com/snapshot/2020-07-16/bin/windows/contrib/4.0:
  URL 'https://mran.microsoft.com/snapshot/2020-07-16/bin/windows/contrib/4.0/PACKAGES'를 열 수 없습니다

 

해결

아래 script 실행

local({r <- getOption("repos")
       r["CRAN"] <- "http://cran.r-project.org"
       options(repos=r)})

 

이후 

> install.packages("ggplot2") 

실행하면 됨

 

 

 

 

참고: https://learn.microsoft.com/en-us/answers/questions/544231/unable-to-access-mran-is-there-currently-any-probl

 

Unable to access MRAN: is there currently any problem on your server? - Microsoft Q&A

Hello, I tried to install a package today from MRAN but it failed. Here is the error message: Warning in install.packages : unable to access index for repository https://mran.microsoft.com/snapshot/2020-07-16/src/contrib: cannot open URL…

learn.microsoft.com

 

728x90
반응형
728x90
반응형

 

 

https://www.weather.gov/fwd/teleconnections

 

ENSO Teleconnections

ENSO Teleconnections What Are the Impacts of El Niño/La Niña?  Global Precipitation Impacts During El Niño and La Niña The effects of ENSO are often called teleconnections, emphasizing that changing conditions in one part of the world can affect areas

www.weather.gov

 

728x90
반응형
728x90
반응형

https://www.nature.com/articles/d41586-021-03625-w

 

 

728x90
반응형
728x90
반응형

덕유산 플럭스타워에서의 증발산과 토양수분의 상관성 분석

https://www.dbpia.co.kr/pdf/pdfView.do?nodeId=NODE07076941 

 

DBpia

논문, 학술저널 검색 플랫폼 서비스

www.dbpia.co.kr

 

 

본 연구에서는 에디공분산 방법을 이용하여 덕유산 플럭스타워에서의 증발산량을 분석하였고, 동 지점의토양수분량과 비교하여 상관성을 분석하였으며 다음과 같은 결과를 얻었다. 에디공분산에 의해 측정된 증발산량과 토양수분량의 상관성을 분석한 결과, 증발산량은 토양수분량의 패턴보다 식물의 장과 일사량에 영향을 더 으며, 토양수분량은 강우 사상에 더 영향을 음을 수 있었다.참고문헌

728x90
반응형
728x90
반응형

Learning_IDL.pdf
9.54MB

728x90
반응형
728x90
반응형

지도 저작권 없는 세계지도 데이터 

 

Drawing beautiful maps programmatically with R, sf and ggplot2 — Part 1: Basics (r-spatial.org)

 

Drawing beautiful maps programmatically with R, sf and ggplot2 — Part 1: Basics

view raw Rmd EDIT: Following a suggestion Adriano Fantini and code from Andy South, we replaced rworlmap by rnaturalearth. This tutorial is the first part in a series of three: In this part, we will cover the fundamentals of mapping using ggplot2 associate

r-spatial.org

 

R에서 사용하기 위해 사전에 설치할 패키지들

install.packages("rnaturalearth")

# 아래 패키지 설치에 시간이 많이 걸린다.
install.packages("ggspatial")  
install.packages("sf")
install.packages("s2")

 

예제 코드 

 

library("ggspatial")
ggplot(data = world) +
    geom_sf() +
    annotation_scale(location = "bl", width_hint = 0.5) +
    annotation_north_arrow(location = "bl", which_north = "true", 
        pad_x = unit(0.75, "in"), pad_y = unit(0.5, "in"),
        style = north_arrow_fancy_orienteering) +
    coord_sf(xlim = c(-102.15, -74.12), ylim = c(7.65, 33.97))

## Scale on map varies by more than 10%, scale bar may be inaccurate

 

 

 

 

 

rnaturalearth package - RDocumentation

 

rnaturalearth package - RDocumentation

install_rnaturalearthhires

www.rdocumentation.org

 

 

 

 

728x90
반응형
728x90
반응형

1. Anaconda3 설치

   몇 번 pycaret  설치 하다 버전 충돌로 2021 버전 인스톨 함.

2. 가상 환경 설정

# create a conda environment
conda create --name yourenvname python=3.8   

pycaret은 현재 Python 3.8까지만 지원한다. 


# activate conda environment
conda activate yourenvname

 

3. sklearn  버전 맞추기

 Anaconda3 인스톨 후 Installation - PyCaret Official (gitbook.io)  문서 먼저 참조

 

문서 중간에 아래와 같이  sklearn 지원 버전이 나와있다. 

*** PyCaret is not yet compatible with sklearn>=0.23.2.

필자의 버전은 conda list 로 확인 결과 0.24.2 이므로 downgrade 해야 된다.

 conda install scikit-learn=0.22.2

 

4. # install pycaret
pip install pycaret

5. # create notebook kernel
python -m ipykernel install --user --name yourenvname --display-name "display-name"

 

6. python 환경에서 import 해서 pycaret, sklearn 정상 작동하는지 확인

 

7. 다른 패키지 설치하고 가상환경 복사하기

 

https://dschloe.github.io/python/newpkgs/pycaret_install/

 

[Python] PyCaret Windows 10 아나콘다 설치 방법

강의 홍보 취준생을 위한 강의를 제작하였습니다. 본 블로그를 통해서 강의를 수강하신 분은 게시글 제목과 링크를 수강하여 인프런 메시지를 통해 보내주시기를 바랍니다. 스타벅스 아이스 아

dschloe.github.io

 

728x90
반응형
728x90
반응형

MakingRobot :: Window 10에서 Anaconda 삭제 (tistory.com)

 

Window 10에서 Anaconda 삭제

1. 가상환경 목록 확인 아래와 같이 명령어를 입력하여 컴퓨터에 설치된 가상환경 리스트를 확인합니다. conda env list or conda info --envs 2. 가상환경 삭제 삭제를 원하는 가상환경 이름을 입력하여

makingrobot.tistory.com

 

 

728x90
반응형
728x90
반응형

HDF5 tools

     • tested with version 1.6.4

   • obtained from: http://www.hdfgroup.org/HDF5  -deprecated

   • Downloads (hdfgroup.org)

 

 

 

 

Downloads

HDF5 1.10 is the recommended branch to use for HDF5 development that doesn't use the virtual object layer (VOL).

confluence.hdfgroup.org

HDF5 인스톨하기 :: 이름이 없는 블로그 (tistory.com) 

기억할 점. zlib 은 /usr 에 깔았고 szip 은 /opt/szip-2.1 에 깔았다.  ==> zlib과 szip을 먼저 설치해야 !!!

 

zlib 설치

zlib 인스톨하기 :: 이름이 없는 블로그 (tistory.com)

1. http://www.zlib.net/ 에 들어가서 최신버전을 받자.

2. 그리고 거기다가 바로 압축을 풀고

tar zxf zlib-1.2.8.tar.gz

3. 그 디렉토리에 들어가서

cd zlib-1.2.8

4. 컨피겨를 한다. 인스톨은 /usr 에 하도록 한다.

./configure --prefix=/usr

5. 만든다.

make

6. 인스톨한다.

sudo make install

 

 

szip 설치

szip 인스톨하기 :: 이름이 없는 블로그 (tistory.com)

1. szip 을 다운받는다.

2. /opt 에 옮긴다.

sudo mv ~/Download/szip-2.1.tar.gz /opt

3. 압축을 푼다.

sudo tar zxf szip-2.1.tar.gz

4. 내 생각에는 sudo 를 쓰는 것 보다 root 로 까는 게 더 편한 것 같다.

cd ~/

sudo -s

암호

source .bashrc

cd /opt/szip-2.1

5. configure 한다. 딱히 따로 설정할 건 없는 듯.

./configure

6. 설치한다.

make

make check

make install

7. root 를 빠져나온다.

exit

 

 

HDF5 설치

HDF5 인스톨하기 :: 이름이 없는 블로그 (tistory.com)

HDF5 를 parallel 로 zlib 와 szip 을 쓰면서 깔아보자. 포트란, MPI, zlib, szip 은 이미 깔려있다고 가정하고 시작한다.

1. 우선 여기서 다운받는다.

2. root privilege 로 들어간다.

cd ~/

sudo -s

암호

source .bashrc

3. environmental variable 을 지정한다.

export CC=mpicc

export FC=mpif90

4. 압축을 푼다.

cd /opt

mv /home/사용자명/Download/hdf5-1.10.0.tar.gz ./

tar zxf hdf5-1.10.0.tar.gz

5. 압축을 푼 디렉토리로 들어가서

cd hdf5-1.10.0

6. configure 하자. fortran 과 szip 을 쓰는 옵션으로 parallel 로 깔 거다. parallel 로 깔면 C++ 은 못 쓴다.

기억할 점. zlib 은 /usr 에 깔았고 szip 은 /opt/szip-2.1 에 깔았다.

./configure --enable-fortran --enable-fortran2003 --enable-parallel --with-zlib=/usr --with-szlib=/opt/szip-2.1

7. 인스톨을 하자.

make

make check

make install

 

https://hdfeos.org/software/hdfeos.php

 

How to build HDF-EOS

How to build HDF-EOS This page explains how to build the HDF-EOS2 library and the HDF-EOS5 library. HDF-EOS2 You can get the latest release from here. As of August 2021, HDF-EOS 3.0 is the latest version, and you can get the library from NASA web site . Th

hdfeos.org

 

HDF5 Version 1.8.4 Requires Zlib and SZip ?

 

Downloads

HDF5 1.10 is the recommended branch to use for HDF5 development that doesn't use the virtual object layer (VOL).

confluence.hdfgroup.org

HDF5 Version 1.8.4 Requires Zlib and SZip ? - Hdf-forum archives - HDF Forum (hdfgroup.org)

 

 

Downloads

HDF5 1.10 is the recommended branch to use for HDF5 development that doesn't use the virtual object layer (VOL).

confluence.hdfgroup.org

 

728x90
반응형

+ Recent posts