david-cortes / isotree

(Python, R, C/C++) Isolation Forest and variations such as SCiForest and EIF, with some additions (outlier detection + similarity + NA imputation)
https://isotree.readthedocs.io
BSD 2-Clause "Simplified" License
186 stars 38 forks source link

New Functions in R package version 0.1.24 not visible #21

Closed veeveetran closed 3 years ago

veeveetran commented 3 years ago

Hi David,

I updated the package to make sure that I had the latest version of isotree in R. However, the following functions don't show up when I try to call them:

The error I receive is: Error: 'summary.isolation_forest' is not an exported object from 'namespace:isotree'

Is there anything I need to do in addition to updating the package?

Thanks!

(P.S. love this package by the way. It is been extremely useful and informative)

david-cortes commented 3 years ago

Well indeed, those are S3 methods, so you don't call them with the full name, you call them like print(model).

veeveetran commented 3 years ago

Got it! Thank you for the clarification. Much appreciated.