276 Search results

For the term "ggplot".

How to Use “not in” operator in Filter

How to Use “not in” operator in Filter, To filter for rows in a data frame that is not in a list of values, use the following basic syntax in dplyr. How to compare...

Data Scientist

Requirements Role: Data Scientist Summary: We are looking for a data scientist that will help us discover the information hidden in vast amounts of data, and help us make smarter decisions to deliver even...

Augmented Dickey-Fuller Test in R

Augmented Dickey-Fuller Test in R, If a time series has no trend, constant variance over time, and a consistent autocorrelation structure across time, it is considered to be “stationary.” An augmented Dickey-Fuller test, which...

droplevels in R with examples

droplevels in R with examples, To remove unneeded factor levels, use R’s droplevels() function. This function comes in handy when we need to get rid of factor levels that are no longer in use...

Count Observations by Group in R

Count Observations by Group in R, want to count the number of observations by the group. Fortunately, the count() function from the dplyr library makes this simple. Using the data frame below, this tutorial...

How to add columns to a data frame in R

How to add columns to a data frame in R?, To add one or more columns to a data frame in R, use the mutate() function from the dplyr package. With the following data...

Clustering Example Step-by-Step Methods in R

Clustering Example Step-by-Step Methods in R, This post will walk you through a k-means clustering example and provide a step-by-step method for conducting a cluster analysis on a real data set using R software....

Interactive 3d plot in R-Quick Guide

Interactive 3d plot in R, This R lesson shows how to create dynamic 3d graphics with R and the scatter3d function from the package car. The rgl package is used by the scatter3d() function...

How to create a marginal plot in R?

How to create a marginal plot in R?, A scatterplot with histograms, boxplots, or dot plots in the x- and y-axes is known as a marginal plot. It enables the investigation of the relationship...

Two Sample Proportions test in R-Complete Guide

Two Sample Proportions test in R, To compare two observed proportions, the two-proportions z-test is utilized. This article explains the fundamentals of the two-proportions *z-test and gives practical examples using R software. We have...