- [R을 이용하여 COLOR 색좌표]2024-05-16 22:54:56library(SpecHelpers)library(pavo)library(magick)dev.off()# Generate a fake datasetset.seed(20190320)coldat
- [R을 이용한 3D contour 쌓기] Plotly2024-05-11 22:04:43Plotly를 이용하여 3D Contour 이미지 연습하기 https://plotly.com/r/3d-surface-plots/ 3dDetailed examples of 3D Surface Plots including changing color, size, log axes, and more in R.plotly.com 마이크로 렌즈를 지나고 난 빛의 intensity 데이터 패키지 불러오기, 데이터 로드library(tidyverse)library(htmlwidgets)library(plotly)df plotly로 3d 그래프 그리기plot_ly( z = ~ scale(as.matrix(df)), x = ~ as.numeric(1:nrow(df)), y = ~ as.numeric(1:ncol..
- [R을 이용한 2D Contour 이미지]2024-05-11 21:54:47참고 https://www.rdocumentation.org/packages/graphics/versions/3.6.2/topics/filled.contour filled.contour function - RDocumentationlocations of grid lines at which the values in z are measured. These must be in ascending order. (The rest of this description does not apply to .filled.contour.) By default, equally spaced values from 0 to 1 are used. If x is a list, its components x$x anwww.rdocument..
- R을 이용한 달력 만들기 (calendR)2024-03-30 19:05:40프로젝트를 하다보면 달력을 만들어야 할 때가 많다. 그래서 각 날짜별로 할 일을 정하고 프로젝트를 관리한다. R을 이용하여 달력을 만들어보자. 패키지는 calendR 이다. [참고] https://r-coder.com/calendar-plot-r/ 패키지 설치 및 불러오기 install.packages("calendR") library(calendR) 다음은 2024년 달력을 출력해보자. calendR() # Defaults to current year calendR(year = 2024) # Specify the year you prefer 뭔가 밋밋하다. 좀 더 꾸며보자. 토요일, 일요일은 음영 처리를 해보자. calendR(year = 2024, start = "M", special.days = "..
- R을 이용한 일정표, 스케줄 테이블 만들기 [vistime]2024-03-30 12:09:49회사에서 과제를 진행하다보면 일정표를 많이 작성하게 된다. 엑셀로도 만들지만 대부분 PPT를 이용하여 아래와 같이 한장으로 만든다. 그런데 이런 표들을 만들다보면 글씨 크기와 색깔, 화살표등을 만드는 것이 쉽지 않다. R을 이용해서 이런 일정표를 만들 수는 없을까 찾아보니 좋은 패키지를 찾았다. "vistime" https://cran.r-project.org/web/packages/vistime/index.html CRAN - Package vistime vistime: Pretty Timelines in R A library for creating time based charts, like Gantt or timelines. Possible outputs include 'ggplot2' diagram..
- R을 이용한 논문용 그래프 (흑백용 패턴 색칠)2024-01-21 22:35:28요즘엔 온라인으로 논문을 볼 수 있으므로 그래프에 색을 넣어서 사용할 수 있다. 그러나 흑백으로 여전히 보는 사람이 있으므로 색깔만으로 구분하기 어려울 수 있다. 그래서 흑백 패턴으로 그래프 색을 구별하는 그래프 그리는 패키지를 찾아 보았다. https://coolbutuseless.github.io/package/ggpattern/articles/geom-gallery-geometry.html#b-w-example Geom Gallery - Geometry-based Patternsggpatterncoolbutuseless.github.io 예를 들어 아래와 같은 그래프를 넣는다고 해보자. 이걸 흑백으로 보는 사람은 아래와 같다. 온도별 그래프를 구별할 수 없을 것이다. 그래서 ggpattern 패키지..
- R을 이용한 논문 그래프 그리기22023-12-17 20:47:43간단하게 그래프의 품질을 높이는 패키지가 있어 이걸로 논문 그래프를 그리면 좋겠다 해서 소개한다. 사용법도 간단하다. install.packages("remotes") remotes::install_github("HanjoStudy/quotidieR") Scatter
- R을 이용한 과학 저널 그래프 그리기2023-12-17 20:35:02최근에 논문에 들어갈 그래프 형태를 검색하다가 좋은 패키지를 찾았다. 한국의 민승현 교수님이 공부하면서 필요에 의해 만든 R 패키지라 더 친근감이 들었다. (감사합니다. ^^) smplot 이 한번 더 발전하여 smplot2가 되었다. https://github.com/smin95/smplot2 GitHub - smin95/smplot2 Contribute to smin95/smplot2 development by creating an account on GitHub. github.com 그럼 본격적으로 기존의 ggplot과 비교해보자. devtools::install_github('smin95/smplot2', force = TRUE) library(tidyverse) # it has ggplot2 p..
- R을 이용한 2020년 국회의원 선거 시각화2023-11-12 15:09:02datatoys 패키지를 이용하여 2020년 국회의원 선거데이터 분석했다. 이외에도 82개의 데이터가 존재하니 데이터 분석 놀이하기에 가장 좋다. https://github.com/statgarten/datatoys GitHub - statgarten/datatoys: Let's play with data! We prepared toy data for data newbies.Let's play with data! We prepared toy data for data newbies. - GitHub - statgarten/datatoys: Let's play with data! We prepared toy data for data newbies.github.com 1. 패키지 로드 및 데이터 로드rm(li..
- R을 이용한 통계청 API로 남은 기대 수명 알아보기2023-11-11 17:29:47통계청 데이터를 쉽게 받는 패키지를 이용하여 편하게 데이터 분석을 할 수 있게 되었다 . (패키지 만드신 분께 감사합니다. ) https://github.com/seokhoonj/kosis GitHub - seokhoonj/kosis: 국가통계포털 Korean Statistical Information Service (Open API Service)국가통계포털 Korean Statistical Information Service (Open API Service) - GitHub - seokhoonj/kosis: 국가통계포털 Korean Statistical Information Service (Open API Service)github.com 통계청 사이트 회원 가입 수 API KEY 받기 https:/..
728x90
반응형