-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11355bc
commit 7522e40
Showing
29 changed files
with
854 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ | |
^Meta$ | ||
^TinyTeX\.zip$ | ||
^CRAN-SUBMISSION$ | ||
^\.RDataTmp$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.Rhistory | ||
.RData | ||
.Ruserdata | ||
.RDataTmp | ||
*.zip | ||
inst/doc | ||
docs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: knfi | ||
Title: Analysis of Korean National Forest Inventory Database | ||
Version: 1.0.0 | ||
Version: 1.0.1 | ||
Maintainer: Sinyoung Park <[email protected]> | ||
Authors@R: | ||
c(person(given = "Sinyoung", family = "Park", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0003-3658-0935")), | ||
|
@@ -59,7 +59,9 @@ Imports: | |
sp, | ||
cowplot, | ||
ggpubr, | ||
drat | ||
drat, | ||
purrr, | ||
scales | ||
Depends: | ||
R (>= 3.6) | ||
Suggests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# knfi 1.0.0 | ||
# knfi 1.0.1 | ||
## Bug fixes | ||
* Fixed a bug in `summary_nfi` and `biomass_nfi` where functions were not working when `largetree_area = FALSE`. | ||
* Fixed a filtering bug in `filter_nfi` where plots with the same subplot name in different cycles were not properly filtered at sublayers - resolved by implementing simultaneous filtering using both subplot and cycle. | ||
|
||
## Improvements | ||
* `read_nfi`: Added support for additional `list.files()` arguments (e.g., `pattern`, `recursive`) to provide more flexibility in file selection. | ||
* `summary_nfi`, `iv_nfi`, `diversity_nfi`, `biomass_nfi`, `cwd_biomass_nfi`: Added `continuousplot` parameter to filter for plots with measurements across all NFI cycles. | ||
* `tsvis_nfi`: Added layout control parameters (`ncol`, `nrow`) for customizing plot visualization and `top` parameter for selecting number of top species to display. | ||
*`nfi_col`: Renamed from `col_name` to provide a more descriptive name | ||
|
||
* Initial CRAN submission. | ||
|
||
# knfi 1.0.0 | ||
* Initial CRAN submission(2024-10-10). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.