tapply function in R with examples

tapply function in R

In this tutorial, we will discuss about tapply() function in R with some examples. tapply() function is available in base R package. The tapply() function in R The tapply() function is very useful to aggregate the data. That is tapply() function allows us to create a group summaries based on factor levels. The general syntax …

Read more

sapply Function in R with Examples

sapply function in R

In this tutorial, we will discuss about sapply() function in R with some examples. sapply() function is available in base R package. sapply() function in R The sapply() function takes a vector, list or data frame, an index and a function (built-in or user-defined function) as inputs. The sapply() function is similar to lapply() function, …

Read more

lapply Function in R with Examples

lapply function in R

In this tutorial, we will discuss about lapply() function in R with some examples. lapply() function is available in base R package. lapply() function in R The lapply() function is the most popular function in R. The lapply() function takes a vector, list or data frame, a function (built-in or user-defined) as inputs and additional …

Read more