Zum Inhalt der Seite gehen

Suche

Beiträge, die mit DataAnalysis getaggt sind


Do you need more control over number formatting for your publications?

@labplot@lemmy.kde.social

Boosts appreciated! 🙂 :boost_love:

With the latest merge requests, we have added new options to #LabPlot that:
🚀 Allow to specify in the application settings both separators,
🚀 Automatically update the visualizations on number format changes without restart.

#FreeSoftware #OpenSource #FOSS #FLOSS #DataAnalysis #Math #Statistics #OpenScience #DataViz #Research #Data #Science #Engineering #STEM #KDE #UX


📊 Missing values slowing you down? Learn how to find columns with all NA values in base R using efficient techniques like is.na() and apply(). Code examples included! 💡

👉 Read the full guide: https://www.spsanderson.com/steveondata/posts/2024-12-05/

#R #RStats #Programming #DataAnalysis #NAvalues #Blog #RProgramming #Data
ALT text: A screenshot of R code in a dark-themed editor. The code demonstrates how to create a sample data frame with four columns: "A" with numbers 1 to 5, "B" and "D" with all `NA` values, and "C" with letters "a" to "e". Below, the code identifies columns with all missing values using `colSums(is.na())` and stores the result in the variable `all_na_cols`, which is then printed. The code highlights R functions and syntax in different colors.