stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📈 Unleash the power of robust regression in R! 🔄

Compare traditional lm() with robust rlm() using a dataset. Blue vs. red residuals visually unveil how each model handles outliers. Dive in, experiment with your data, and empower your coding journey! 💻

#R

Post: https://www.spsanderson.com/steveondata/posts/2023-11-28/

image/png
image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

🚀 Unleash the power of regression in R! 🔍 Follow this quick guide: load data, visualize with a scatter plot, fit a power regression model using nls, add visual flair, and embrace uncertainty with prediction intervals. Ready to code? Dive in! 💻✨

#R

Post: https://www.spsanderson.com/steveondata/posts/2023-11-27/

image/png

rladiesrome, to datascience
@rladiesrome@fosstodon.org avatar

🆕 R-Ladies Rome has a WhatsApp channel 🆕 🔝

Follow us here: https://whatsapp.com/channel/0029Va8QxrA1NCrPtKcBut3Z

🗞 Stay updated with the latest hot topic in the industry. 🤳

Federica Gazzelloni @fgazzelloni
Francesca Picone @Francesca Katie Wood, OMCA™
R-Ladies Global @RLadiesGlobal
#rladies #datascience #networking #communication #womenindata #womeneducators #opensourcecommunity #opensource #opensourcesoftware #rprogramming #rstats #pythonprogramming #pyladies Posit PBC R Consortium The Linux Foundation

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📊 Unveiling the Triangular Distribution in R 📊

R's EnvStats library
1️⃣ dtri(x): Calculate the density at a given value.
2️⃣ ptri(q): Find the cumulative probability up to a specific value.
3️⃣ qtri(p): Determine a value for a given cumulative probability.
4️⃣ rtri(n): Generate a random set of numbers following this distribution.

#r

Post: https://www.spsanderson.com/steveondata/posts/2023-11-01/

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📈 Exploring Logistic Regression in R 📊

Logistic regression is a crucial tool for predicting binary outcomes. In my latest blog post, I walk you through the process of plotting a logistic regression curve in R. It's an essential skill for data scientists, statisticians, and anyone interested in predictive modeling.

#r

https://www.spsanderson.com/steveondata/posts/2023-10-26/

image/png

stevensanderson, to random
@stevensanderson@mstdn.social avatar

In a nutshell, a Bland-Altman plot shows the differences between two measurements against their means. It's a powerful tool for quality control and validation, widely used in various industries, including healthcare.

Here's a quick 4-step guide:

  1. Data Prep
  2. Create the Plot
  3. Interpretation
  4. Explore

#r

Post: https://www.spsanderson.com/steveondata/posts/2023-10-25/

image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📊 Unlock the Power of Data with Scree Plots in R!

Step 1: Load your data.
Step 2: Perform Principal Component Analysis (PCA).
Step 3: Calculate the variance explained.
Step 4: Create a stunning scree plot.
Step 5: Interpret the plot to find the "elbow."
Step 6: Decide how many components to retain.
Step 7: Apply your decision and get insights!

#r

https://www.spsanderson.com/steveondata/posts/2023-10-24/

image/png

stevensanderson, to random
@stevensanderson@mstdn.social avatar

📊 Uncover Hidden Insights with Interaction Plots in R! 📈

In data analysis, understanding how variables interact can be a game-changer.

  1. Prepare Your Data
  2. Create the Plot
  3. Interpret the Plot:
    🚀 Your Turn to Explore!

Interaction plots are a powerful tool for data exploration. Whether you're in healthcare, finance, you can unearth hidden gems.

#r

Post: https://www.spsanderson.com/steveondata/posts/2023-10-19/

image/png

stevensanderson, to random
@stevensanderson@mstdn.social avatar

📊 Unlock the Power of Time Series Analysis with R: A Quick Guide to ts_adf_test() 🚀

🔍 The ADF Test Essentials: Augmented Dickey-Fuller (ADF) is a game-changer in time series analysis.

📈 What You Get

  1. Test Statistic
  2. P-Value

💡 Why It Matters: Knowing the stationarity of your data is a game-changer.

Data-driven decisions start with understanding your data.

#r

Post: https://www.spsanderson.com/steveondata/posts/2023-10-17/

stevensanderson, to random
@stevensanderson@mstdn.social avatar

ts_growth_rate_vec() in healthyR.ts 🚀

🌟 Key Features:
1️⃣ Basic Growth Rate
2️⃣ Scaling and Transformation
3️⃣ Handling Lagged Data
4️⃣ Comprehensive Analysis

Whether you're working with financial, healthcare, or any other time series data then: ts_growth_rate_vec()

Let's harness the power of ts_growth_rate_vec() 📊💡

.ts #r

Post: https://www.spsanderson.com/steveondata/posts/2023-10-16/

image/png
image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📊 Mastering Data Visualization in R: Create Stunning Horizontal Legends! 📈

Are your vertical legends taking up too much space in your R plots?

Why Horizontal Legends? 🤔

The legend Function 📜

Customization is Key!

Multiple Legends? No Problem! 🎯

I encourage you to experiment with your plots, using these techniques.

#R

Post: https://www.spsanderson.com/steveondata/posts/2023-10-11/

image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📊 Mastering Legend Size in R Plotting 📊

Are your R plots missing that polished look? Don't overlook the importance of legend size!

Method 1: Using legend() Function (Base R)

Method 2: Using theme() Function (ggplot2)

Method 3: Customizing Themes (ggplot2)

Now, it's your turn!

Go ahead, try it out, and make your plots shine! 📈✨

Post: https://www.spsanderson.com/steveondata/posts/2023-10-10/

image/png
image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📊 Unlocking Insights with Added Variable Plots in R! 🚀

AV Plots are a game-changer for data enthusiasts. They allow you to visualize how one predictor variable affects the response variable while controlling for other factors. Here's a quick guide to get you started:

1️⃣ Install the car Library

2️⃣ Create Your Model

3️⃣ Generate AV Plots

4️⃣ Interpretation

5️⃣ Try It Yourself

🤝 #r

See attached!

Post: https://www.spsanderson.com/steveondata/posts/2023-10-05/

image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

I'll give you a quick rundown on creating horizontal boxplots in R using both base R and ggplot2. We'll work with the "palmerpenguins" dataset to keep things interesting!

🚀 Base R Approach (Simple and Quick)

🚀 ggplot2 Approach (More Customization)

Both methods have their advantages.

So, why not give it a try yourself?

#R

Post: https://www.spsanderson.com/steveondata/posts/2023-10-02/

image/png
image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

🌿📊 Unlock the Power of Decision Trees in R! 📊🌿

Are you ready to dive into the world of decision trees? They're a fantastic tool for making transparent, interpretable decisions based on data. In this quick post, we'll show you how to create and visualize a tree using R, specifically the rpart and rpart.plot packages, with the classic Iris dataset.

Happy coding!

#r

https://www.spsanderson.com/steveondata/posts/2023-09-29/

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

📈🌿 Dive into Data Visualization with Base R! 🌿📈

Discover the power of creating striking linear model plots with confidence intervals using the iconic Iris dataset—all with base R! 🌼🚀

Give it a try and embark on your data science journey. 🚀📊

#DataScience #RProgramming #DataVisualization #IrisDataset #LinearModel #ConfidenceIntervals #BaseR

Happy coding! 🌱📊

Post: https://www.spsanderson.com/steveondata/posts/2023-09-22/

image/png
image/png

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar
stevensanderson, to random
@stevensanderson@mstdn.social avatar

Ever wondered how to compare the distributions of two variables simultaneously? Look no further! In this post, we'll dive into the world of dual-variable histograms using R, a go-to language for data analysis and visualization.

Ready to embark on your own dual-variable histogram journey? The key to effective data visualization is in your hands. 🚀

#R

See attached.

Post: https://www.spsanderson.com/steveondata/posts/2023-09-15/

image/png

jromanowska, to delhi
@jromanowska@fosstodon.org avatar

Joint event by R-Ladies Cologne (@cosima_meyer and
Gabe Winter) and R-Ladies Bergen (Jonelle and me): we're thrilled to be hosting Mine Çetinkaya-Rundel who will teach us about Quarto 🥳 👩‍💻

This is a kick-off event for a brand-new book club, where we'll be going through the book "Building reproducible analytical pipelines with R". Come, join us!

https://www.meetup.com/rladies-bergen/events/295922921

#rstats #quarto #reproducibleresearch #meetup #rprogramming #womenintech

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

🔥 Uncover Insights with Correlation Heatmaps in R! 🔍

Curious about exploring relationships within your data? 📊 Correlation heatmaps are the key! 🗝️ These vibrant visualizations use color intensity to showcase the strength of connections between variables, making complex insights a breeze to grasp. Let's dive into this exciting world using R!

Blog Post: https://www.spsanderson.com/steveondata/posts/2023-08-30/

image/png

stevensanderson, to random
@stevensanderson@mstdn.social avatar

The curve() Function in R! 🌟

Why should you give it a go?

✅ Gain a deeper understanding of mathematical functions.
✅ Visualize complex concepts with ease.
✅ Explore the versatility of R programming.
✅ Enhance your data analysis and visualization skills.

Remember, practice makes perfect!

#r

Post: https://www.spsanderson.com/steveondata/posts/2023-08-16/

image/png

stevensanderson, to random
@stevensanderson@mstdn.social avatar

pmax() 📈

Compare vectors with ease using pmax(...). Pass multiple vectors, and voila! You have the element-wise maximum. With the optional na.rm parameter, handling missing values becomes a breeze.

pmin() 📉

Meet pmin(...), your shortcut to element-wise minimum computation. Similar to pmax(), but for minimum values! Clean and simple.

Post:

https://www.spsanderson.com/steveondata/posts/2023-08-11/

image/png
image/png

stevensanderson, to random
@stevensanderson@mstdn.social avatar

Imagine you have a bunch of data points and you want to know how many belong to different categories. This is where grouped counting comes in. We've got three fantastic methods for you to explore, each with its own flair: aggregate(), dplyr, and data.table.

Happy counting, fellow data explorer! 🎉🔍 #r

Post: https://www.spsanderson.com/steveondata/posts/2023-08-10/

image/png
image/png

stevensanderson, to opensource
@stevensanderson@mstdn.social avatar

Ever wondered how to tweak margins, jazz up colors, or adjust font sizes in your R plots? Look no further! With par(), you're in control. 🎉

🔥 Level up your data viz skills and stand out from the crowd. The par() function is your key to data storytelling like never before. Don't just read—dive in, code, and watch your visualizations come alive. 📊💡

#R

Post: https://www.spsanderson.com/steveondata/posts/2023-08-09/

stevensanderson, to random
@stevensanderson@mstdn.social avatar

🚀 Unleash the Power of Data Transformation with R's scale() Function! 📊

Simple Syntax 🤓

The syntax is a breeze: scaled_data <- scale(data, center = TRUE, scale = TRUE).

  • data: Your dataset 📦
  • center: Center your data around the mean? 🎯
  • scale: Scale it for unit variance? 📏

Post: https://www.spsanderson.com/steveondata/posts/2023-08-08/

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • thenastyranch
  • rosin
  • GTA5RPClips
  • osvaldo12
  • love
  • Youngstown
  • slotface
  • khanakhh
  • everett
  • kavyap
  • mdbf
  • DreamBathrooms
  • ngwrru68w68
  • provamag3
  • magazineikmin
  • InstantRegret
  • normalnudes
  • tacticalgear
  • cubers
  • ethstaker
  • modclub
  • cisconetworking
  • Durango
  • anitta
  • Leos
  • tester
  • JUstTest
  • All magazines