Skip to content

Commit

Permalink
align with R version 0.6.1 -- import bcn from local folder
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Jan 25, 2024
1 parent f5ec9ef commit 3eb3339
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion BCN/BCNClassifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@
check_packages = True

base = importr("base")
bcn = importr("bcn")
try:
bcn = importr("bcn")
except Exception as e:
bcn = importr("bcn", lib_loc = StrVector(['bcn_r']))
stats = importr("stats")
utils = importr("utils")

Expand Down
5 changes: 4 additions & 1 deletion BCN/BCNRegressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@
check_packages = True

base = importr("base")
bcn = importr("bcn")
try:
bcn = importr("bcn")
except Exception as e:
bcn = importr("bcn", lib_loc = StrVector(['bcn_r']))
stats = importr("stats")
utils = importr("utils")

Expand Down

0 comments on commit 3eb3339

Please sign in to comment.