Category: R

0

Chapter 12: R Numbers

R Numbers — basically everything you need to know about how R handles numeric values (numbers). In R, “numbers” are not just one thing. There are two main kinds of numbers, plus special values like...

0

Chapter 11: R Data Types

R Data Types (also called data modes, atomic types, or basic object types). This is super important because almost everything in R revolves around how data is stored and what you can do with...

0

Chapter 10: R Variable Names

R Variable Names (also called object names or identifiers). Naming variables well is one of the most important skills in R — even more than knowing fancy functions. Bad names make code hard to...

0

Chapter 9: R Multiple Variables

R Multiple variables This topic can mean slightly different things depending on context, so I’ll cover both interpretations that beginners usually have in mind: Having / managing many different variables in a real script...

0

Chapter 8: R Concatenate Elements

R Concatenate Elements” — one of the most frequently used (and sometimes confusing) operations in R. Concatenate simply means joining / sticking things together, usually strings (text), but also numbers or other elements, to...

0

Chapter 7: R Variables

R Variables. This is one of the very first things every beginner must really understand deeply, because almost everything else in R builds on variables. Imagine we’re sitting together with RStudio open on my...

0

Chapter 6: R Comments

1. What are Comments in R? (The Simple Truth) Comments are notes you write inside your code that the computer completely ignores. R never reads or executes them — they’re only for humans (you,...

0

Chapter 5: R Print Output

R Print Output means how to show results, messages, variables, tables, or anything on your screen (console in RStudio) so you (or others) can see what’s happening. R gives you several ways to do this...

0

Chapter 4: R Syntax

R: its syntax. Think of syntax as the grammar rules of the R language. If you break them, R gets confused and throws errors (those red messages in the console). But once you get...

0

Chapter 3: R Get Started

R Get Started” — this is the hands-on, step-by-step guide where we actually install everything, open it for the first time, run your very first lines, and make sure nothing goes wrong. I’m explaining...