FCPS icon indicating copy to clipboard operation
FCPS copied to clipboard

Missing function

Open technocrat opened this issue 5 years ago • 3 comments

`

install.packages("FCPS") Installing package into ‘/home/roc/R/x86_64-pc-linux-gnu-library/4.0’ (as ‘lib’ is unspecified) trying URL 'https://cloud.r-project.org/src/contrib/FCPS_1.2.7.tar.gz' Content type 'application/x-gzip' length 2859121 bytes (2.7 MB) ================================================== downloaded 2.7 MB

  • installing source package ‘FCPS’ ... ** package ‘FCPS’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path
  • DONE (FCPS)

The downloaded source packages are in ‘/tmp/Rtmpzb0Mdh/downloaded_packages’

data('Hepta')

out=HierarchicalClusterDists(as.matrix(dist(Hepta$Data)),ClusterNo=7) Error in HierarchicalClusterDists(as.matrix(dist(Hepta$Data)), ClusterNo = 7) : could not find function "HierarchicalClusterDists" `

technocrat avatar Jan 24 '21 23:01 technocrat

Thank you for pointing out the unclearness in the documentation. HierarchicalClusterDists is historically still in the package but only as an internal function. This is now clarified in the documentation of the next FCPS version Please use HierarchicalClustering.

On 25. Jan 2021, at 00:34, Richard Careaga [email protected] wrote:

`

install.packages("FCPS") Installing package into ‘/home/roc/R/x86_64-pc-linux-gnu-library/4.0’ (as ‘lib’ is unspecified) trying URL 'https://cloud.r-project.org/src/contrib/FCPS_1.2.7.tar.gz https://cloud.r-project.org/src/contrib/FCPS_1.2.7.tar.gz' Content type 'application/x-gzip' length 2859121 bytes (2.7 MB)

downloaded 2.7 MB

installing source package ‘FCPS’ ... ** package ‘FCPS’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path DONE (FCPS) The downloaded source packages are in ‘/tmp/Rtmpzb0Mdh/downloaded_packages’

data('Hepta')

out=HierarchicalClusterDists(as.matrix(dist(Hepta$Data)),ClusterNo=7) Error in HierarchicalClusterDists(as.matrix(dist(Hepta$Data)), ClusterNo = 7) : could not find function "HierarchicalClusterDists" `

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Mthrun/FCPS/issues/2, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADSZODB4CFTZ56ACJLMNHW3S3SVAZANCNFSM4WQ5YL3Q.

Mthrun avatar Jan 25 '21 09:01 Mthrun

Hi ... just installed R4.3 devel version on windows and installed FCPS ... however , running the example with the Hepta data i get following error: Fehler in kmeansDist(as.matrix(dist(Hepta$Data)), ClusterNo = 7, PlotIt = FALSE, : konnte Funktion "kmeansDist" nicht finden

same for FCPS::kmeansDist()

neural-oracle avatar Jun 06 '22 12:06 neural-oracle

Hi, You can use FCPS::kmeansClustering() with a Distance matrix which internally calls kmeansDist() but the usage remained at the experimental phase because we did not benchmarked the performance of the algorithm.

Best Michael

Mthrun avatar Jun 07 '22 09:06 Mthrun