Skip to content

Commit 3cf416c

Browse files
committedApr 9, 2024·
bilis to brindi
1 parent 427cd64 commit 3cf416c

8 files changed

+9
-9
lines changed
 

‎.Rbuildignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
^bilis\.Rproj$
1+
^brindi\.Rproj$
22
^\.Rproj\.user$
33
^LICENSE\.md$
44
^data-raw$

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
YEAR: 2022
2-
COPYRIGHT HOLDER: bilis authors
2+
COPYRIGHT HOLDER: brindi authors

‎LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2022 bilis authors
3+
Copyright (c) 2022 brindi authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎R/expand_indi_parquet.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ expand_indi_parquet <- function(agg, agg_time, anos, dir, indi = "all"){
1212
# List indi_ functions or use supplied vector
1313
if(length(indi) == 1){
1414
if(indi == "all"){
15-
indi_funs <- grep("^indi_", ls(getNamespace("bilis")), value = TRUE)
15+
indi_funs <- grep("^indi_", ls(getNamespace("brindi")), value = TRUE)
1616
} else {
1717
indi_funs <- c(indi)
1818
}

‎R/expand_indi_psql.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ expand_indi_psql <- function(agg, agg_time, anos, indi = "all", psql_table, psql
2828
# List indi_ functions or use supplied vector
2929
if(length(indi) == 1){
3030
if(indi == "all"){
31-
indi_funs <- grep("^indi_", ls(getNamespace("bilis")), value = TRUE)
31+
indi_funs <- grep("^indi_", ls(getNamespace("brindi")), value = TRUE)
3232
} else {
3333
indi_funs <- c(indi)
3434
}

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# bilis
1+
# brindi
22

33
An R package to calculate health indicators using raw data from PCDaS ElasticSearch cluster and other sources. BILIS stands for Banco de Indicadores do Laboratorio de Informacao de Saude.

‎_pkgdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
url: https://rfsaldanha.github.io/bilis/
1+
url: https://rfsaldanha.github.io/brindi/
22
template:
33
bootstrap: 5
44

‎tests/testthat.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
# * https://testthat.r-lib.org/reference/test_package.html#special-files
88

99
library(testthat)
10-
library(bilis)
10+
library(brindi)
1111

12-
test_check("bilis")
12+
test_check("brindi")

0 commit comments

Comments
 (0)
Please sign in to comment.