Hello! Are there any packages in R:

Hello! Are there any packages in R:

  1. Mind evolutionary computation (MEC)
  2. Ant colony optimization (ACO)
  3. Artificial bee colony optimization (ABC)
  4. Particle swarm optimization (PSO)
  5. Artificial immune system (AIS)
  6. Bacteria Foraging Optimization Algorithm (BFOA)
  7. Firefly algorithm

Thank you!

1 Like

metaheuristicOpt is a package offering some of those

I found it using the RSiteSearch() function:

RSiteSearch("optimization")

It's a good way to find subjects that may appear in documentation or vignettes only. It doesn't handle multiple-word queries well, but you can enter those on the website it opens up.

4 Likes

The evoper package has some as well, but as @nwerth pointed out, it's probably more helpful for you to know how to search for R packages.

rseek is another way of doing that https://rseek.org/

2 Likes

Another way to search R packages: https://www.r-pkg.org/search.html?q=Ant+colony+optimization

1 Like