R Programming

Statistics and Programming

String Manipulation in R – turning text into useful form for analysis

String manipulation refers to the process of modifying, analyzing, or transforming strings, into useful form for analysis. This is a fundamental aspect of programming and is used in various applications, such as data processing, text analysis, and user input handling. R has powerful repertoire of functions for string manipulation. These functions are used in Pattern …

String Manipulation in R – turning text into useful form for analysis Read More »

Unlocking Insights: Visualizing Data with Heatmaps for Clearer Correlations

Heatmaps are used to show relationships between two variables, one plotted on each axis. By observing how cell colors change across each axis, you can observe if there are any patterns in value for one or both variables. Here is an example of heat map. This is called as Risk Map. It shows the likelihood …

Unlocking Insights: Visualizing Data with Heatmaps for Clearer Correlations Read More »

Get introduced to R’s apply Family: Your Guide to apply( ), lapply( ), sapply( ), and tapply( )

In R, for loop is used to repeat evaluating an expression with an iterator on list or vector. In practice, for loop is almost the last choice because an alternative way is much cleaner and easier to write and read when each iteration is independent of each other. following code uses for loop to create …

Get introduced to R’s apply Family: Your Guide to apply( ), lapply( ), sapply( ), and tapply( ) Read More »

Scroll to Top