Find Unique Values in RAre you working with R language? Do you have a dataframe? How do you find unique values in […] January 16, 2024 in R Language tagged distinct / unique / R / values by Mike
RStudio ProjectsWhy would you use RStudio projects? It is recommended to use projects in R Studio. It is recommended […] March 31, 2023 in R Language tagged project / R / projects / RStudio by Mike
The head Function in RWhen you exploring your data, try using the head function to see a few rows of your data. […] March 30, 2023 in R Language tagged R / function / head by Mike
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 skim / without / percentile / MEAN / unique / statistics / charts / R 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 data / frame / R / tidy / tibble 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 frequency / function / table / R / histogram 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 remove / filter / rows / R / friends / delete 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 date / dates / R by Mike