목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
http://gnuplot.sourceforge.net/demo_4.0/fillstyle.html set style fill solid 0.25 border #숫자가 색깔의 진하기를 조절 1이 최대. border/noborder 보더 넣을건지 말건지 set boxwidth 0.5 #박스 너비를 줄이면 박스끼리 딱 안 붙이고 적당한 간격을 유지한다. set style fill pattern border #박스를 전체 한 가지 색으로 채우는 게 아니라 패턴을 넣겠다는 의미 p "hist.txt" w boxes t ''
https://stackoverflow.com/questions/25512006/gnuplot-smooth-confidence-interval-lines-as-opposed-to-error-bars We need three cols for data: mean, low, high# mean low high 3 2.6 3.5 5 4 6 4 3.2 4.3 In script, you can use it set style fill transparent solid 0.2 noborder plot 'data.d' u 1:2:3 w filledcurves t '' Transparent는 eps모드에서 적용이 안되는 것 같다.
https://docs.scipy.org/doc/numpy/reference/generated/numpy.savetxt.htmlhttps://stackoverflow.com/questions/3685265/how-to-write-a-multidimensional-array-to-a-text-file np.savetxt(path, array, output format) For example, np.savetxt("file.txt", res, fmt="%.6f")
https://tex.stackexchange.com/questions/103988/rightarrow-with-text-above-it \xrightarrow를 사용하면 reaction rule 쓸 때 화살표 위나 아래에 글을 적을 수 있다.
함수로 만들어서 .bashrc에 넣어두었다. 1. 커맨드에서 커널로 돌리기math(){/Applications/Mathematica.app/Contents/MacOS/MathKernel -script $1.m} 2. 실행파일로 만들어서 돌리기mathc(){echo "#!/Applications/Mathematica.app/Contents/MacOS/wolframscript" > $1.temp;cat $1.m >> $1.tempcat $1.temp > $1rm -fr $1.tempchmod a+x $1}
ref) https://tex.stackexchange.com/questions/23487/how-can-i-get-roman-numerals-in-text\newcommand{\RNum}[1]{\uppercase\expandafter{\romannumeral #1\relax}} Latex에서 로마자 표기하기
1. vertical dots\vdotshttps://tex.stackexchange.com/questions/305911/3-equations-vertical-dots 2. diagonal dots in matrix\ddotshttps://tex.stackexchange.com/questions/32217/3-dots-in-matrix
http://ayapin-film.sakura.ne.jp/Gnuplot/Docs/ps_guide.pdf 1. average (angled bracket){\Symbol \341} A {\Symbol \361}
http://www.gnuplotting.org/invert-legend-entries-order/ set key invert
###########################References for ggmuller!###########################1. main homepages:https://cran.r-project.org/web/packages/ggmuller/HowtoCite:A BibTeX entry for LaTeX users is@Manual{,title = {ggmuller: Create Muller Plots of Evolutionary Dynamics},author = {Robert Noble},year = {2017},note = {R package version 0.5.1},url = {https://CRAN.R-project.org/package=ggmuller},doi = 10.5281..