Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhanyuan committed May 23, 2023
1 parent 4151bbf commit d69097f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.en-US.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# <div align="center"><strong>Evaluating Forest Quality with Forestat</strong></div>

<p align="right"><strong>Forestat version:</strong> 0.1.0</p>
<p align="right"><strong>Date:</strong> 04/22/2023 </p>
<p align="right"><strong>Forestat version:</strong> 1.0.0</p>
<p align="right"><strong>Date:</strong> 05/22/2023 </p>
<br>

*`Forestat`* is an R package developed based on the Institute of Forest Resource Information Techniques, Chinese Academy of Forestry's "Natural Forest Stand Quality Evaluation Method" [<sup>[1]</sup>](#citation). Its functions include the classification of natural forest stand height, establishment of tree height models, sectional area growth models, and stock growth models, as well as the calculation of forest actual productivity and potential productivity. Using *`Forestat`* can provide reliable basis for accurately improving forest quality.
Expand Down Expand Up @@ -109,7 +109,8 @@ data("forestData")
# Or read the forestat.csv sample data included in the package
forestData <- read.csv(system.file("extdata", "forestData.csv", package = "forestat"))

# Select the ID, code, AGE, H, S, BA, and Bio fields from the forestData sample data and view the first 6 rows of data
# Select the ID, code, AGE, H, S, BA, and Bio fields from the forestData sample data
# and view the first 6 rows of data
head(dplyr::select(forestData, ID, code, AGE, H, S, BA, Bio))

# Output
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# <div align="center"><strong>使用 Forestat 评估森林质量</strong></div>

<p align="right"><strong>Forestat version:</strong> 0.1.0</p>
<p align="right"><strong>Date:</strong> 04/22/2023 </p>
<p align="right"><strong>Forestat version:</strong> 1.0.0</p>
<p align="right"><strong>Date:</strong> 05/22/2023 </p>
<br>

*`forestat`* 是基于中国林业科学研究院资源信息研究所(Institute of Forest Resource Information Techniques, Chinese Academy of Forestry)的`天然林立地质量评价方法`[<sup>[1]</sup>](#citation)开发的R包。实现的功能包括天然林立地树高分级的划分,树高模型、断面积生长模型、蓄积生长模型的建立,森林现实生产力与潜在生产力的计算。使用 *`forestat`* 包可以为精准提升森林质量提供可靠依据。
Expand Down Expand Up @@ -110,7 +110,8 @@ data("forestData")
# 或者读取包中 forestat.csv 样例数据
forestData <- read.csv(system.file("extdata", "forestData.csv", package = "forestat"))

# 筛选 forestData 样例数据中ID、code、AGE、H、S、BA 和 Bio字段,并查看前6行数据
# 筛选 forestData 样例数据中ID、code、AGE、H、S、BA 和 Bio字段
# 并查看前6行数据
head(dplyr::select(forestData,ID,code,AGE,H,S,BA,Bio))

# 输出
Expand Down

0 comments on commit d69097f

Please sign in to comment.