본문 바로가기

2025/017

duckdb export https://duckdb.org/ An in-process SQL OLAP database management systemDuckDB is an in-process SQL OLAP database management system. Simple, feature-rich, fast & open source.duckdb.org   디비는 15G , csv export 는 거의 50G 안정적임.대비 15G 에서 sum, min 등 산술함수는 오라클보다 빠른것 같다. (export 작업시간은 db 7G , csv 25G 작업 소요시간이 2배이상인듯...)웬만한  업무에서 써도 꽤 괜찮은 대안이지 않을까.. (테스트데이터: 거래소 10년 kospi200 csv파일로 데이터 만든 후 테이블 키 없이 계속 자기자신 .. 2025. 1. 30.
ggplot2 install.packages("ggplot2")library(ggplot2)str(airquality)#--산점도ggplot(airquality, aes(x=Day, y=Temp)) + geom_point(size=3, color="red")#--라인ggplot(airquality, aes(x=Day, y=Temp)) + geom_line()#--산점도+라인ggplot(airquality, aes(x=Day, y=Temp)) + geom_point(size=3 ) + geom_line(color="red")#--막대ggplot(mtcars, aes(x=factor(cyl))) + geom_bar(width=0.5) + labs(x="cyl수", y="자동차수", title="cyl별 자동차수.. 2025. 1. 28.
Thunder /*Down the river, we're drunk, and all of our thumbs went up in the air강 아래서 우린 취했고 우리의 엄지손가락을 하늘로 치켜세웠지Sung in the wind, and sung to the thunder, rolling over and over바람 속에서도, 천둥 속에서도 노래를 부르며, 신나게 춤을 춰We're down the river, we're drunk, and all of our thumbs went up in the air강 아래서 우린 취했고 우리의 엄지손가락을 하늘로 치켜세웠지Sung in the wind, and sung to the thunder, rolling over and over바람 속에서도, 천둥 속에서도 노래를 부르며.. 2025. 1. 23.
Java - Future import java.time.LocalTime;import java.util.concurrent.Callable;import java.util.concurrent.ExecutionException;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;import java.util.concurrent.Future;public class JavaFuture1{ public static void main(String[] args) throws ExecutionException, InterruptedException { //ExecutorService 초기화 ExecutorService .. 2025. 1. 21.
그릭문자 https://namu.wiki/w/%EA%B7%B8%EB%A6%AC%EC%8A%A4%20%EB%AC%B8%EC%9E%90 그리스 문자그리스 문자 ( 그리스어 : Ελληνικό αλφάβητο)는 그리스어 를 표기하는 문자 체계이다. '그리스'의namu.wiki 2025. 1. 13.
단축키 잊어버리네. Ctrl + Shift + M : %>%Alt + - : 2025. 1. 12.