glimpse Function in RWhen exploring your data, doing exploratory data analysis (EDA), the glimpse function is very handy. glimpse() is part […] March 30, 2023 in R Language tagged function / R / glimpse by Mike
1 skim_without_charts in RThis function gives us a pretty comprehensive summary of a dataset. We get the number of rows and […] March 30, 2023 in R Language tagged without / percentile / MEAN / unique / statistics / charts / R / skim by Mike
Data Types in RWhat are data types? This is a fundamental concept in programming. Here are some data types in R […] March 30, 2023 in R Language tagged data / types by Mike
Data Frames in RA data frame is a collection of columns, not unlike a spreadsheet or a table in a relational […] March 30, 2023 in R Language tagged tibble / data / frame / R / tidy by Mike
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 function / filter 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 manual / custom / gemstones / data / order / sort / frame / gem / gems / by / arrange 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 factor / factors / categorical / variable / R 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 function / table / R / histogram / frequency 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 friends / delete / remove / filter / rows / R 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 strings / convert / string / date by Mike