👾
R for Bioinformatics
  • Welcome
  • 🐶Basic Concepts
    • 🐧String
    • 🥳Data Type
    • 🤡Operators
    • 🤠Conditional Statement
    • ➿Loops
    • 🐝Function
  • 😎Load Data
  • ⚽DataFrame
  • 🕶️Tidy Data in R
  • ✨Data Visualization in R
    • 💾Saving Graphs in R
    • 🌈Colors in R
    • 📊R base graphics
      • 📈Generic Plot Types
      • 🏀Scatter Plot by R base graph
      • 😼Histogram by R base graph
      • 📦Boxplot by R base graph
    • 📣ggplot2 package
      • 🧀Scatter Plot
      • Histogram
Powered by GitBook
On this page
  • Sequence operations with strings in R
  • Source:
  1. 🐶Basic Concepts

🐧String

Any value written within a pair of single quotes or double quotes in R is treated as a string.

a <- "I love R programming"

print(a)

# Output
[1] "I love R programming"

Sequence operations with strings in R

Sequence Operations in R

Source:

  1. R for Data Science Full Course | Data Science Training | Edureka

PreviousBasic ConceptsNextData Type

Last updated 2 years ago