Creating-maps-in-R

(★ 571)

Introductory tutorial on graphical display of geographical information in R.

파일 탐색기

  • .gitignore
  • bradforddata.txt
  • citation.bib
  • Creating-maps-in-R.Rproj
  • intro-spatial-rl.pdf
  • movie.txt
  • myscript.R
  • r-spatial-ref-card.pdf
  • README.md
  • README.Rmd
  • spatial-data.md
  • spatial-data.Rpres
  • stplanr-example.md
  • vspd-pres.Rmd
  • wyoming.geojson

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

join

설명 보기 ▼

두 정렬된 파일의 공통 필드를 기준으로 줄을 결합.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/join-invocation.html>.

join {{path/to/file1}} {{path/to/file2}}

기본 필드(첫 번째 필드)를 기준으로 두 파일 결합:

join -t ',' {{path/to/file1}} {{path/to/file2}}

쉼표(공백 대신)를 필드 구분자로 사용하여 두 파일 결합:

join -1 {{3}} -2 {{1}} {{path/to/file1}} {{path/to/file2}}

파일1의 필드3과 파일2의 필드1을 기준으로 결합:

🔍

tidy

설명 보기 ▼

HTML, XHTML 및 XML 파일을 정리하고 보기 좋게 출력.
참고: `tidy`는 원래 들여쓰기를 보존할 수 없습니다.
더 많은 정보: <https://api.html-tidy.org/tidy/tidylib_api_next/group__options__cli.html#gad7a9fcaf7b2a712a82e625e84c042b28>.

tidy {{path/to/file.html}}

HTML 파일을 보기 좋게 출력:

tidy {{[-i|--indent]}} y {{[-w|--wrap]}} 100 {{[-o|-output]}} {{path/to/output.html}} {{path/to/file.html}}

[i]ndentation을 활성화하고, 줄을 100으로 [w]rapping하여 `output.html`에 저장:

tidy -config {{path/to/configuration}} {{[-m|-modify]}} {{path/to/file.html}}

설정 파일을 사용하여 HTML 파일을 직접 수정:

🔍

col

설명 보기 ▼

입력에서 역방향 줄바꿈 필터링.
더 많은 정보: <https://manned.org/col>.

{{command}} | col

입력에서 역방향 줄바꿈 필터링:

{{command}} | col {{[-x|--spaces]}}

역방향 줄바꿈을 필터링하고 탭 대신 공백으로 출력:

{{command}} | col {{[-b|--no-backspaces]}}

백스페이스를 제거하고, 각 위치의 마지막 문자만 출력:

// repository documentation