코딩Coding/R_연습
R연습❤️] R - plot()함수를 이용한 삼각함수 시각화
내인생PLUS
2022. 6. 22. 20:07
728x90
R - plot( )함수를 이용한 삼각함수 시각화
r_hello.R
x <- seq(-10, 10, 0.1)
plot(x, sin(x), type = "l", col = "orange", main = "Sine Function")
grid()
터미널 창에서
Rscript r_hello.R
실행하면
r_hello.pdf
만들어짐.
그거 실행한거 결과 보면 됨.
실행됨.
or
VSCode 에서 Shift + command + Enter 누르면 실행 됨
결과
출처 :
https://m.blog.naver.com/padosori60/220861591002
seq() 함수의 의미
https://m.blog.naver.com/jungj5011/220612995076
https://stackoverflow.com/questions/4369400/plot-the-shaded-region-under-y-sinx-in-r
한글러스트Rust강의_027_Rust vs R 기초part1_sin cos 그래프 그리기 #sin #cos #rustlang #maths #graph
https://youtu.be/GMD-6NU7zUA
반응형