1 The filter Function in RThe filter function allows us to only see rows of data that meet a certain condition. We end […] March 29, 2023 in R Language tagged filter / function by Mike
Sorting Data in RTo sort data in R, we can use the arrange function. Let’s work with the Palmer penguins dataset. […] March 29, 2023 in R Language tagged order / sort / frame / gem / gems / by / arrange / manual / custom / gemstones / data by Mike
Add a Column to Data Frame in RThere are three common ways to add a new column to a data frame in R: the $ […] March 28, 2023 in R Language tagged table / add / column / alter by Mike
Replace in RDo you have some data that you need to replace? In data analysis, you may need to work […] March 28, 2023 in R Language tagged replace / R by Mike
Factors in RIn the R programming language, what is a factor? Factors are used to work with categorical variables, variables […] March 28, 2023 in R Language tagged variable / R / factor / factors / categorical by Mike
Table Function in RThe table() function in R can be used to quickly create frequency tables. You have rows and columns […] March 28, 2023 in R Language tagged table / R / histogram / frequency / function by Mike
Delete Rows in R with ConditionsDo you need to delete (or drop) some rows in your R dataset that meet certain conditions. Below […] March 28, 2023 in R Language tagged delete / remove / filter / rows / R / friends by Mike
Convert a String to a Date in RIn R language, if you have a string that you need to convert to a date, try this. […] March 28, 2023 in R Language tagged string / date / strings / convert by Mike
The rename() Function in RThe rename() function in R can help you rename columns in a data frame. It uses using new_name […] March 27, 2023 in R Language tagged column / R / rename / dplyr by Mike
Dates in RDates are represented as the number of days since 1970-01-01, with negative values for earlier dates. Time What […] March 26, 2023 in R Language tagged dates / R / date by Mike
group_by Function in RThe group_by function is often combined with other functions. In the console. Palmer Penguins The penguin data has […] March 26, 2023 in R Language tagged summarize / group / R / by / group_by by Mike
dplyr in RThe dplyr package is a member of R’s tidyverse package. The tidyverse package is a set of packages. […] March 26, 2023 in R Language tagged R / dplyr by Mike