1 標題一

1.1 字體

斜體

粗體

粗體斜體 記得多一個enter才會換行

建立無序列表:

  • 項目 1

  • 項目 2

  • 項目 3

#crl+alt+i快捷鍵

建立有序列表

  1. 一個項目

  2. 第二個項目

  • 子項目(nest)

  • 粗體子項目

  1. 第三個項目

1.2 連結與圖片配置

建立連結

連結說明文字

放入圖檔

圖檔說明文字

圖檔說明文字

1.3 方程式

In line codeseq().

一般方程式 \[ \boldsymbol{\hat{\beta}} = (X^TX)^{-1}X^TY \]

內嵌方程式:\(\bar{x}=\frac{1}{n}\sum_{i=1}^n\) with no spaces

1.4 區塊引用

區塊引用的開端

hello

區塊引用接下來的文字

#註解

1+1 
## [1] 2
1+1
## [1] 2
plot(x = 1:10)

2+2
## [1] 4

1.5 R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

summary(cars)
##      speed           dist       
##  Min.   : 4.0   Min.   :  2.00  
##  1st Qu.:12.0   1st Qu.: 26.00  
##  Median :15.0   Median : 36.00  
##  Mean   :15.4   Mean   : 42.98  
##  3rd Qu.:19.0   3rd Qu.: 56.00  
##  Max.   :25.0   Max.   :120.00

1.6 Including Plots

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.