While using R, there are umpteen instances one has to browse for the relevant package for a dataset / function / class. It is a time consuming activity….But now, thanks to the authors of sos library its an effortless exercise!…

Let’s say you want to use robust estimator for a sample and you want to know whether R community has it already or not. With just three lines of code, you get a ton of summary relating to what you want to search

library(sos)
PL <- findFn(“lmRob”)
summary(PL)

Hearty thanks to all the authors behind this awesome package :Spencer Graves, Sundar Dorai-Raj, and Romain Francois

Package Link : sos