- Mastering R for Quantitative Finance
- Edina Berlinger Ferenc Illés Milán Badics ?dám Banai Gergely Daróczi Barbara D?m?t?r Gergely Gabler Dániel Havran Péter Juhász
- 154字
- 2021-07-23 20:10:41
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Any command-line input or output is written as follows:
#generate the two time series of length 1000 set.seed(20140623) #fix the random seed N <- 1000 #define length of simulation x <- cumsum(rnorm(N)) #simulate a normal random walk gamma <- 0.7 #set an initial parameter value y <- gamma * x + rnorm(N) #simulate the cointegrating series plot(x, type='l') #plot the two series lines(y,col="red")
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Another useful visualization exercise is to look at the Density on log-scale."
推薦閱讀
- Mastering JavaScript Functional Programming
- Learning RxJava
- PowerCLI Cookbook
- 實戰Java程序設計
- MySQL數據庫基礎實例教程(微課版)
- SQL Server 2016數據庫應用與開發
- Python時間序列預測
- Creating Stunning Dashboards with QlikView
- Access 2010中文版項目教程
- 并行編程方法與優化實踐
- Windows Phone 8 Game Development
- 從零開始構建深度前饋神經網絡:Python+TensorFlow 2.x
- 深入實踐C++模板編程
- 新手學ASP.NET 3.5網絡開發
- Java網絡編程實用精解