- [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을 이용한 대한민국 민주주의 점수 변화2024-04-06 18:46:3422대 총선 기간이라 정치 관심도가 높다. 아래 사이트를 통해서 연도별, 각 나라별 민주주의를 분석해서 점수화 한 걸 토대로 분석하였다. https://rforpoliticalscience.com/2024/04/04/how-to-download-and-graph-the-of-democracy-v-dem-dataset-in-r/ How to download and animate the Varieties of Democracy (V-DEM) dataset in R In this blog post, we will download the V-DEM datasets with their vdemdata package. It is still in development, so we will use the install..
- 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..
- Quarto로 논문쓰기2023-12-16 15:39:50# 1. 형식보다 내용이 중요한 세상이 되었다. 최근에 아래 유투브 영상을 보면서 quarto journal acticle 이란 것을 접하게 되었다. 그리고 직접 해보면서 내린 결론은 이제 형식은 quarto에게 맡기고 내용에 집중할 수 있는 시대가 되었다는 것이다. https://www.youtube.com/watch?feature=shared&v=EbAAmrB0luA #2. Quarto가 점점 발전하여 논문 쓰는 툴이 되다. 논문을 쓰다 보면 가장 신경 쓰는 것이 각 저널에 맡게 형식을 맞추어 써야 하는 것이다. 특히 이공계 저널은 그림, 표, 수식 등이 많은데 이에 대한 표시 방법이 각 저널에 따라 달라 먼저 저널에서 알려준 template 파일을 받아서 수정해 가면서 써야 한다. 그리고 또 하나 ..
728x90
반응형