Skip to content

Commit

Permalink
ajout list_flor
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienBoutry committed Jul 3, 2023
1 parent 385da39 commit eb33c3c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion R/fibdl.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fibdl <- function(listflor, add_information_station) {
fibdl_listflor_metrics() %>%
fibdl_listflor_EQR(data=.,add_information_station=info_uo) %>%
fibdl_listflor_EQR_standard() %>%
fibdl_uo_score(listflor=listflor) %>%
fibdl_uo_score(list_flor=listflor) %>%
fibdl_ibdl() %>%
fibdl_ibdl_qualify()

Expand Down
4 changes: 2 additions & 2 deletions R/fibdl_listflor_transcode.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
#' ab=c(202,20,2,26,12,5,6,74,5,2,3,3,15,10,5,20))
#' fibdl_listflor_transcode(listflor)
#'
fibdl_listflor_transcode <- function(listflor){
fibdl_listflor_transcode <- function(list_flor){

transcodage<-IBDL:::table_transcodage %>%
dplyr::select(abre, code_espece_boucle2,
denominations_sans_auteur.y,niveau2)

table_listflor_transcode <- listflor %>%
table_listflor_transcode <- list_flor %>%
dplyr::left_join(transcodage,
by = c("taxons" = "abre")
) %>%
Expand Down
4 changes: 2 additions & 2 deletions R/fibdl_uo_score.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#' @export
#'
#' @examples
fibdl_uo_score <- function(data,listflor){
fibdl_uo_score <- function(data,list_flor){

id_prelevement_admi<-fibdl_listflor_qualify(fibdl_listflor_transcode(listflor))[[2]]
id_prelevement_admi<-fibdl_listflor_qualify(fibdl_listflor_transcode(list_flor))[[2]]
##
table_score_ibdl <- data %>%
dplyr::group_by(id_prelevement,
Expand Down
2 changes: 1 addition & 1 deletion man/fibdl_listflor_transcode.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/fibdl_uo_score.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit eb33c3c

Please sign in to comment.