diff --git a/_freeze/posts/2024-11-19/index/execute-results/html.json b/_freeze/posts/2024-11-19/index/execute-results/html.json
index 98a73e7e..4bd95be2 100644
--- a/_freeze/posts/2024-11-19/index/execute-results/html.json
+++ b/_freeze/posts/2024-11-19/index/execute-results/html.json
@@ -1,8 +1,8 @@
{
- "hash": "78f0ed09877ffa53fc318d0b5947c2a4",
+ "hash": "30c0a0294646d0ca4b398d870f7d5f78",
"result": {
"engine": "knitr",
- "markdown": "---\ntitle: \"How to Combine Vectors in R: A Comprehensive Guide with Examples\"\nauthor: \"Steven P. Sanderson II, MPH\"\ndate: \"2024-11-19\"\ncategories: [code, rtip, operations]\ntoc: TRUE\ndescription: \"Learn how to efficiently combine two or more vectors in R using base functions like c(), rbind(), cbind(), and data.frame(). Includes practical examples for R programmers.\"\nkeywords: [Programming, Combine vectors in R, R vector concatenation, Merge vectors in R, R vector combination, Combining R vectors, R c() function, R rbind() function, R cbind() function, R data frame from vectors, R vector recycling, How to combine two or more vectors in R, Combining vectors of different lengths in R, Best practices for combining vectors in R, Combining vectors into matrices in R, Creating data frames from multiple vectors in R]\ndraft: TRUE\n---\n\n\n\n# Introduction\n\nCombining vectors is a fundamental operation in R programming. As an R programmer, you'll often need to merge datasets, create new variables, or prepare data for further processing. This comprehensive guide will explore various methods to combine vectors into a single vector, matrix, or data frame using base R functions, with clear examples to help you master these techniques.\n\n# Understanding Vectors in R\n\nBefore we discuss vector combination, let's briefly review what vectors are in R. Vectors are the most basic data structures in R, representing one-dimensional arrays that hold elements of the same data type, such as numeric, character, or logical values.\n\n## Creating Vectors\n\nTo create a vector in R, you can use the `c()` function, which combines its arguments into a vector:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Define vectors\nvector1 <- c(1, 2, 3, 4, 5)\nvector2 <- c(6, 7, 8, 9, 10)\n\nprint(vector1)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] 1 2 3 4 5\n```\n\n\n:::\n\n```{.r .cell-code}\nprint(vector2)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\n# Combining Vectors into a Single Vector\n\n## Using the c() Function\n\nThe `c()` function is the primary method for combining vectors in R. It concatenates multiple vectors into a single vector, coercing all elements to a common type if necessary.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combine two vectors into one vector\nnew_vector <- c(vector1, vector2)\nprint(new_vector)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [1] 1 2 3 4 5 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\nThis method is straightforward and efficient for combining vectors of the same or different types, as R will automatically handle type coercion.\n\n# Creating Matrices from Vectors\n\n## Using rbind() and cbind()\n\nTo combine vectors into a matrix, you can use `rbind()` to bind vectors as rows or `cbind()` to bind them as columns.\n\n### Using rbind()\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combine vectors as rows in a matrix\nmatrix_rows <- rbind(vector1, vector2)\nprint(matrix_rows)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [,1] [,2] [,3] [,4] [,5]\nvector1 1 2 3 4 5\nvector2 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\n### Using cbind()\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combine vectors as columns in a matrix\nmatrix_cols <- cbind(vector1, vector2)\nprint(matrix_cols)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n vector1 vector2\n[1,] 1 6\n[2,] 2 7\n[3,] 3 8\n[4,] 4 9\n[5,] 5 10\n```\n\n\n:::\n:::\n\n\n\nThese functions are useful for organizing data into a tabular format, making it easier to perform matrix operations or visualize data.\n\n# Converting Vectors to Data Frames\n\n## Using data.frame()\n\nData frames are versatile data structures in R, ideal for storing datasets. You can easily convert vectors into a data frame using the `data.frame()` function.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Create a data frame from vectors\ndf <- data.frame(\n Numbers = vector1,\n MoreNumbers = vector2\n)\nprint(df)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n Numbers MoreNumbers\n1 1 6\n2 2 7\n3 3 8\n4 4 9\n5 5 10\n```\n\n\n:::\n:::\n\n\n\n# Advanced Vector Combination Techniques\n\n## Handling Different Lengths\n\nWhen combining vectors of different lengths, R will recycle the shorter vector to match the length of the longer one. This can be useful but also requires caution to avoid unintended results.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Vectors of different lengths\nshort_vector <- c(1, 2)\nlong_vector <- c(3, 4, 5, 6)\n\n# Combine with recycling\ncombined <- c(short_vector, long_vector)\nprint(combined)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] 1 2 3 4 5 6\n```\n\n\n:::\n:::\n\n\n\n## Type Coercion\n\nR automatically coerces vector elements to a common type when combining vectors. The hierarchy is logical < integer < numeric < character.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combining different types \nnum_vec <- c(1, 2, 3)\nchar_vec <- c(\"a\", \"b\", \"c\")\nmixed_vec <- c(num_vec, char_vec)\nprint(mixed_vec)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] \"1\" \"2\" \"3\" \"a\" \"b\" \"c\"\n```\n\n\n:::\n:::\n\n\n\n# Best Practices for Combining Vectors\n\n1. **Check Vector Types**: Ensure vectors are of compatible types to avoid unexpected coercion.\n2. **Verify Lengths**: Be mindful of vector lengths to prevent recycling issues.\n3. **Use Meaningful Names**: Assign names to vector elements or data frame columns for clarity.\n\n# Practical Examples and Use Cases\n\n## Example 1: Data Preparation\n\nCombining vectors is often used in data preparation, such as merging datasets or creating new variables.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Merging datasets\nids <- c(101, 102, 103)\nnames <- c(\"Alice\", \"Bob\", \"Charlie\") \nages <- c(25, 30, 35)\n\n# Create a data frame\npeople_df <- data.frame(ID = ids, Name = names, Age = ages)\nprint(people_df)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n ID Name Age\n1 101 Alice 25\n2 102 Bob 30\n3 103 Charlie 35\n```\n\n\n:::\n:::\n\n\n\n## Example 2: Time Series Data\n\nCombining vectors is useful for organizing time series data, where each vector represents a different variable.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Time series data\ndates <- as.Date(c(\"2024-01-01\", \"2024-01-02\", \"2024-01-03\"))\nvalues1 <- c(100, 105, 110)\nvalues2 <- c(200, 210, 220)\n\n# Create a data frame\nts_data <- data.frame(Date = dates, Series1 = values1, Series2 = values2)\nprint(ts_data) \n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n Date Series1 Series2\n1 2024-01-01 100 200\n2 2024-01-02 105 210\n3 2024-01-03 110 220\n```\n\n\n:::\n:::\n\n\n\n# Your Turn!\n\nNow that you've learned how to combine vectors in R, it's time to put your knowledge into practice. Try these exercises:\n\n1. Create two numeric vectors of length 5 and combine them into a single vector.\n2. Combine a character vector and a logical vector into a single vector. Observe the type coercion.\n3. Create a 3x3 matrix by combining three vectors using `cbind()` and `rbind()`.\n4. Combine two vectors of different lengths into a data frame and see how R recycles the shorter vector.\n\n\nClick here for the solutions\n\n1. Combining numeric vectors:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nvec1 <- c(1, 2, 3, 4, 5)\nvec2 <- c(6, 7, 8, 9, 10)\ncombined <- c(vec1, vec2)\nprint(combined)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [1] 1 2 3 4 5 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\n2. Combining character and logical vectors:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nchar_vec <- c(\"a\", \"b\", \"c\")\nlogical_vec <- c(TRUE, FALSE, TRUE)\ncombined <- c(char_vec, logical_vec)\nprint(combined)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] \"a\" \"b\" \"c\" \"TRUE\" \"FALSE\" \"TRUE\" \n```\n\n\n:::\n:::\n\n\n\n3. Creating a 3x3 matrix:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nvec1 <- c(1, 2, 3)\nvec2 <- c(4, 5, 6)\nvec3 <- c(7, 8, 9)\nmatrix_cbind <- cbind(vec1, vec2, vec3)\nmatrix_rbind <- rbind(vec1, vec2, vec3)\nprint(matrix_cbind)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n vec1 vec2 vec3\n[1,] 1 4 7\n[2,] 2 5 8\n[3,] 3 6 9\n```\n\n\n:::\n\n```{.r .cell-code}\nprint(matrix_rbind)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [,1] [,2] [,3]\nvec1 1 2 3\nvec2 4 5 6\nvec3 7 8 9\n```\n\n\n:::\n:::\n\n\n\n4. Combining vectors of different lengths into a data frame:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nshort_vec <- c(1, 2)\nlong_vec <- c(\"a\", \"b\", \"c\", \"d\")\ndf <- data.frame(Numbers = short_vec, Letters = long_vec)\nprint(df)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n Numbers Letters\n1 1 a\n2 2 b\n3 1 c\n4 2 d\n```\n\n\n:::\n:::\n\n\n\n\n# Conclusion\n\nCombining vectors in R is a crucial skill for data manipulation and analysis. By mastering the use of `c()`, `rbind()`, `cbind()`, and `data.frame()`, you can efficiently manage data structures in R. Remember to consider vector types and lengths to ensure accurate results.\n\n# Quick Takeaways\n\n- Use `c()` to combine vectors into a single vector\n- Use `rbind()` and `cbind()` to create matrices from vectors\n- Use `data.frame()` to convert vectors into a data frame\n- Be aware of vector recycling when combining vectors of different lengths\n- Coercion hierarchy: logical < integer < numeric < character\n\nWith this comprehensive guide and practical examples, you're now equipped with the knowledge to handle various vector combination tasks in R. Keep practicing these techniques to become a proficient R programmer!\n\n# References\n\n[GeeksforGeeks. (2021). How to combine two vectors in R? GeeksforGeeks.](https://www.geeksforgeeks.org/how-to-combine-two-vectors-in-r/)\n\n[GeeksforGeeks. (2023). How to concatenate two or more vectors in R? GeeksforGeeks.](https://www.geeksforgeeks.org/how-to-concatenate-two-or-more-vectors-in-r/)\n\n[Spark By Examples. (2022). Concatenate vector in R. Spark By Examples.](https://sparkbyexamples.com/r-programming/concatenate-vector-in-r/)\n\n[Statology. (2022). How to combine two vectors in R. Statology.](https://www.statology.org/combine-two-vectors-in-r/)\n\n------------------------------------------------------------------------\n\nHappy Coding! 🚀\n\n![Combine into one vector](todays_post.png)\n\n------------------------------------------------------------------------\n\n*You can connect with me at any one of the below*:\n\n*Telegram Channel here*: \n\n*LinkedIn Network here*: \n\n*Mastadon Social here*: [https://mstdn.social/\\@stevensanderson](https://mstdn.social/@stevensanderson)\n\n*RStats Network here*: [https://rstats.me/\\@spsanderson](https://rstats.me/@spsanderson)\n\n*GitHub Network here*: \n\n*Bluesky Network here*: \n\n------------------------------------------------------------------------\n\n\n\n```{=html}\n\n```\n",
+ "markdown": "---\ntitle: \"How to Combine Vectors in R: A Comprehensive Guide with Examples\"\nauthor: \"Steven P. Sanderson II, MPH\"\ndate: \"2024-11-19\"\ncategories: [code, rtip, operations]\ntoc: TRUE\ndescription: \"Learn how to efficiently combine two or more vectors in R using base functions like c(), rbind(), cbind(), and data.frame(). Includes practical examples for R programmers.\"\nkeywords: [Programming, Combine vectors in R, R vector concatenation, Merge vectors in R, R vector combination, Combining R vectors, R c() function, R rbind() function, R cbind() function, R data frame from vectors, R vector recycling, How to combine two or more vectors in R, Combining vectors of different lengths in R, Best practices for combining vectors in R, Combining vectors into matrices in R, Creating data frames from multiple vectors in R]\n---\n\n\n\n# Introduction\n\nCombining vectors is a fundamental operation in R programming. As an R programmer, you'll often need to merge datasets, create new variables, or prepare data for further processing. This comprehensive guide will explore various methods to combine vectors into a single vector, matrix, or data frame using base R functions, with clear examples to help you master these techniques.\n\n# Understanding Vectors in R\n\nBefore we discuss vector combination, let's briefly review what vectors are in R. Vectors are the most basic data structures in R, representing one-dimensional arrays that hold elements of the same data type, such as numeric, character, or logical values.\n\n## Creating Vectors\n\nTo create a vector in R, you can use the `c()` function, which combines its arguments into a vector:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Define vectors\nvector1 <- c(1, 2, 3, 4, 5)\nvector2 <- c(6, 7, 8, 9, 10)\n\nprint(vector1)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] 1 2 3 4 5\n```\n\n\n:::\n\n```{.r .cell-code}\nprint(vector2)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\n# Combining Vectors into a Single Vector\n\n## Using the c() Function\n\nThe `c()` function is the primary method for combining vectors in R. It concatenates multiple vectors into a single vector, coercing all elements to a common type if necessary.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combine two vectors into one vector\nnew_vector <- c(vector1, vector2)\nprint(new_vector)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [1] 1 2 3 4 5 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\nThis method is straightforward and efficient for combining vectors of the same or different types, as R will automatically handle type coercion.\n\n# Creating Matrices from Vectors\n\n## Using rbind() and cbind()\n\nTo combine vectors into a matrix, you can use `rbind()` to bind vectors as rows or `cbind()` to bind them as columns.\n\n### Using rbind()\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combine vectors as rows in a matrix\nmatrix_rows <- rbind(vector1, vector2)\nprint(matrix_rows)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [,1] [,2] [,3] [,4] [,5]\nvector1 1 2 3 4 5\nvector2 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\n### Using cbind()\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combine vectors as columns in a matrix\nmatrix_cols <- cbind(vector1, vector2)\nprint(matrix_cols)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n vector1 vector2\n[1,] 1 6\n[2,] 2 7\n[3,] 3 8\n[4,] 4 9\n[5,] 5 10\n```\n\n\n:::\n:::\n\n\n\nThese functions are useful for organizing data into a tabular format, making it easier to perform matrix operations or visualize data.\n\n# Converting Vectors to Data Frames\n\n## Using data.frame()\n\nData frames are versatile data structures in R, ideal for storing datasets. You can easily convert vectors into a data frame using the `data.frame()` function.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Create a data frame from vectors\ndf <- data.frame(\n Numbers = vector1,\n MoreNumbers = vector2\n)\nprint(df)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n Numbers MoreNumbers\n1 1 6\n2 2 7\n3 3 8\n4 4 9\n5 5 10\n```\n\n\n:::\n:::\n\n\n\n# Advanced Vector Combination Techniques\n\n## Handling Different Lengths\n\nWhen combining vectors of different lengths, R will recycle the shorter vector to match the length of the longer one. This can be useful but also requires caution to avoid unintended results.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Vectors of different lengths\nshort_vector <- c(1, 2)\nlong_vector <- c(3, 4, 5, 6)\n\n# Combine with recycling\ncombined <- c(short_vector, long_vector)\nprint(combined)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] 1 2 3 4 5 6\n```\n\n\n:::\n:::\n\n\n\n## Type Coercion\n\nR automatically coerces vector elements to a common type when combining vectors. The hierarchy is logical \\< integer \\< numeric \\< character.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Combining different types \nnum_vec <- c(1, 2, 3)\nchar_vec <- c(\"a\", \"b\", \"c\")\nmixed_vec <- c(num_vec, char_vec)\nprint(mixed_vec)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] \"1\" \"2\" \"3\" \"a\" \"b\" \"c\"\n```\n\n\n:::\n:::\n\n\n\n# Best Practices for Combining Vectors\n\n1. **Check Vector Types**: Ensure vectors are of compatible types to avoid unexpected coercion.\n2. **Verify Lengths**: Be mindful of vector lengths to prevent recycling issues.\n3. **Use Meaningful Names**: Assign names to vector elements or data frame columns for clarity.\n\n# Practical Examples and Use Cases\n\n## Example 1: Data Preparation\n\nCombining vectors is often used in data preparation, such as merging datasets or creating new variables.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Merging datasets\nids <- c(101, 102, 103)\nnames <- c(\"Alice\", \"Bob\", \"Charlie\") \nages <- c(25, 30, 35)\n\n# Create a data frame\npeople_df <- data.frame(ID = ids, Name = names, Age = ages)\nprint(people_df)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n ID Name Age\n1 101 Alice 25\n2 102 Bob 30\n3 103 Charlie 35\n```\n\n\n:::\n:::\n\n\n\n## Example 2: Time Series Data\n\nCombining vectors is useful for organizing time series data, where each vector represents a different variable.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Time series data\ndates <- as.Date(c(\"2024-01-01\", \"2024-01-02\", \"2024-01-03\"))\nvalues1 <- c(100, 105, 110)\nvalues2 <- c(200, 210, 220)\n\n# Create a data frame\nts_data <- data.frame(Date = dates, Series1 = values1, Series2 = values2)\nprint(ts_data) \n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n Date Series1 Series2\n1 2024-01-01 100 200\n2 2024-01-02 105 210\n3 2024-01-03 110 220\n```\n\n\n:::\n:::\n\n\n\n# Your Turn!\n\nNow that you've learned how to combine vectors in R, it's time to put your knowledge into practice. Try these exercises:\n\n1. Create two numeric vectors of length 5 and combine them into a single vector.\n2. Combine a character vector and a logical vector into a single vector. Observe the type coercion.\n3. Create a 3x3 matrix by combining three vectors using `cbind()` and `rbind()`.\n4. Combine two vectors of different lengths into a data frame and see how R recycles the shorter vector.\n\n\n\nClick here for the solutions\n\n1. Combining numeric vectors:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nvec1 <- c(1, 2, 3, 4, 5)\nvec2 <- c(6, 7, 8, 9, 10)\ncombined <- c(vec1, vec2)\nprint(combined)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [1] 1 2 3 4 5 6 7 8 9 10\n```\n\n\n:::\n:::\n\n\n\n2. Combining character and logical vectors:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nchar_vec <- c(\"a\", \"b\", \"c\")\nlogical_vec <- c(TRUE, FALSE, TRUE)\ncombined <- c(char_vec, logical_vec)\nprint(combined)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n[1] \"a\" \"b\" \"c\" \"TRUE\" \"FALSE\" \"TRUE\" \n```\n\n\n:::\n:::\n\n\n\n3. Creating a 3x3 matrix:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nvec1 <- c(1, 2, 3)\nvec2 <- c(4, 5, 6)\nvec3 <- c(7, 8, 9)\nmatrix_cbind <- cbind(vec1, vec2, vec3)\nmatrix_rbind <- rbind(vec1, vec2, vec3)\nprint(matrix_cbind)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n vec1 vec2 vec3\n[1,] 1 4 7\n[2,] 2 5 8\n[3,] 3 6 9\n```\n\n\n:::\n\n```{.r .cell-code}\nprint(matrix_rbind)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n [,1] [,2] [,3]\nvec1 1 2 3\nvec2 4 5 6\nvec3 7 8 9\n```\n\n\n:::\n:::\n\n\n\n4. Combining vectors of different lengths into a data frame:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\nshort_vec <- c(1, 2)\nlong_vec <- c(\"a\", \"b\", \"c\", \"d\")\ndf <- data.frame(Numbers = short_vec, Letters = long_vec)\nprint(df)\n```\n\n::: {.cell-output .cell-output-stdout}\n\n```\n Numbers Letters\n1 1 a\n2 2 b\n3 1 c\n4 2 d\n```\n\n\n:::\n:::\n\n\n\n\n\n# Conclusion\n\nCombining vectors in R is a crucial skill for data manipulation and analysis. By mastering the use of `c()`, `rbind()`, `cbind()`, and `data.frame()`, you can efficiently manage data structures in R. Remember to consider vector types and lengths to ensure accurate results.\n\n# Quick Takeaways\n\n- Use `c()` to combine vectors into a single vector\n- Use `rbind()` and `cbind()` to create matrices from vectors\n- Use `data.frame()` to convert vectors into a data frame\n- Be aware of vector recycling when combining vectors of different lengths\n- Coercion hierarchy: logical \\< integer \\< numeric \\< character\n\nWith this comprehensive guide and practical examples, you're now equipped with the knowledge to handle various vector combination tasks in R. Keep practicing these techniques to become a proficient R programmer!\n\n# References\n\n[GeeksforGeeks. (2021). How to combine two vectors in R? GeeksforGeeks.](https://www.geeksforgeeks.org/how-to-combine-two-vectors-in-r/)\n\n[GeeksforGeeks. (2023). How to concatenate two or more vectors in R? GeeksforGeeks.](https://www.geeksforgeeks.org/how-to-concatenate-two-or-more-vectors-in-r/)\n\n[Spark By Examples. (2022). Concatenate vector in R. Spark By Examples.](https://sparkbyexamples.com/r-programming/concatenate-vector-in-r/)\n\n[Statology. (2022). How to combine two vectors in R. Statology.](https://www.statology.org/combine-two-vectors-in-r/)\n\n------------------------------------------------------------------------\n\nHappy Coding! 🚀\n\n![Combine into one vector](todays_post.png)\n\n------------------------------------------------------------------------\n\n*You can connect with me at any one of the below*:\n\n*Telegram Channel here*: \n\n*LinkedIn Network here*: \n\n*Mastadon Social here*: [https://mstdn.social/\\@stevensanderson](https://mstdn.social/@stevensanderson)\n\n*RStats Network here*: [https://rstats.me/\\@spsanderson](https://rstats.me/@spsanderson)\n\n*GitHub Network here*: \n\n*Bluesky Network here*: \n\n------------------------------------------------------------------------\n\n\n\n```{=html}\n\n```\n",
"supporting": [],
"filters": [
"rmarkdown/pagebreak.lua"
diff --git a/docs/index.html b/docs/index.html
index 413b45d2..aa6601e0 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -230,7 +230,7 @@