Login
Discover
Waves
Communities
Login
Signup
R Programming
This Community is for R Users.
Leadership
@mrchillph
admin
Community chat
hot
Trending
Hot
New
Payouts
Muted
Members
Activities
8
Members
$0
rewards
0
posters
EN
language
New Post
mrchillph
R Programming
2023-05-20 00:27
Published via Ecency
Hello WoRld!
Hello Everyone, I created this community for all R users out there. I noticed that in Hive, there's a Python Community but there is none for R users. This community is dedicated for everyone who wants
$ 0.028
6
1
banidk
R Programming
2025-04-28 16:25
Published via Ecency
!
Low reputation account with an unverified outbound link, Reveal content
bosjaga
$ 0.000
0
snippets
R Programming
2024-11-03 01:26
Creating a Simple Web Calculator with R and HTML: A Beginner's Guide Using Plumber
Introduction Ever wondered how to connect R's computational power with a web interface? In this tutorial, we'll create a simple web calculator that uses R as its backend. No fancy frameworks needed - just
snippets
R Programming
2024-10-20 12:53
Mastering Data Manipulation: Using `mutate()` in R Pipe Operations
Data manipulation is a crucial skill for any data analyst or scientist working with R. One of the most powerful tools in the tidyverse ecosystem is the mutate() function from the dplyr package. When combined
snippets
R Programming
2024-10-20 02:07
Extracting the First Three Characters from a DataFrame Column in R
Perhaps you want to get the first few letters of a product code or the area code from a phone number. In this blog post, we'll explore how to extract the first three characters from a column in an R dataframe.
snippets
R Programming
2024-10-20 01:49
Mastering Column Binding in R: A Quick Guide to cbind()
Are you working with multiple datasets in R and need to combine them side by side? Look no further! In this quick guide, we'll explore how to use the cbind() function to effortlessly merge dataframes by
snippets
R Programming
2024-01-11 21:05
Published via Ecency
OOP in R
This is a nice introduction to OOP in R.
snippets
R Programming
2023-11-02 01:09
R: select() in both MAAS and dplyr causes problems
For those in tidyverse, dplyr has this handy function called select() that picks out just the variables based on the the column we need from a data frame. Unfortunately, there’s also this other cool package
snippets
R Programming
2023-10-14 01:42
R: How to transform info like 61 years 02 months to total number of months?
The magic is with the str_extract(date_str, "\\d+(?= years)" where the year value is extracted...
snippets
R Programming
2023-10-10 07:46
R: To prioritize rows with full records when there are multiple occurrences with the same value in column A to retain them
Given a data frame with certain rows having missing data in certain columns, though they belong to the same with similar A values, I want to prioritize rows with full records when there are multiple
snippets
R Programming
2023-10-10 06:38
R: Keep only data from the first occurring row when there are duplicates in certain column within the same row
I want to keep only data from the first occurring row when there are duplicates in certain column within the same row. Suppose we have a dataframe like this: df <- data.frame( A = c(99, 99, 99, 100,
snippets
R Programming
2023-10-10 02:09
R: Merging two data frames such that all the records are included
This is a problem of merging two data frames such that all the records are included. The approach used is Tidyverse I have two data frames, df1 and df2 that look as follows. df1 <- data.frame( A = c(1,
leoumesh
R Programming
2023-09-26 13:51
Basic Mathematical Operations in R Programming
Image Source This post is gonna be pretty simple and deals with the basic mathematical operations in R programming before we go into other concepts. Some of the built-in functions are highly helpful as
leoumesh
R Programming
2023-09-22 10:12
Variables and Data Types in R Programming
Hello guys, after a short introduction of R programming in my previous post, today I will be discussing about the variables and data types in R. In programming, variable is a named piece in a memory that
leoumesh
R Programming
2023-09-20 03:11
Introduction to R Programming
Hello folks of Hive, After coming to Australia for my postgraduate studies, I have finally decided that I will become a Data analyst in the near future. And I have finally kickstarted the journey. There
mrchillph
R Programming
2023-09-14 03:43
Published via Ecency
Where to get R software
The R can be downloaded in this:
mrchillph
R Programming
2023-06-02 04:01
Published via Ecency
Redistricting of Schools Using Cluster Analysis
I got data on the Longitude and Latitude of schools, why not explore how best to cluster them together as school districts. Here's the amazing graph containing the clustering.