What is R?
Part of the Fundamentals section of Coddy's R journey — lesson 1 of 78.
R is a powerful programming language specifically designed for statistical computing and data analysis. It's widely used by data scientists, statisticians, and researchers around the world to work with data, perform calculations, and create insights.
Challenge
EasyPress the run code button to run your first code in R
Cheat sheet
R is a programming language designed for statistical computing and data analysis.
Try it yourself
print("Welcome to R programming!")All lessons in Fundamentals
4Operators Part 2
Logical Operators (AND, OR)Logical Operators Part 2 (NOT)Recap - Simple LogicVectorized Logic Part 1Vectorized Logic Part 22Variables and Data Types
Numeric Data TypeInteger Data TypeCharacter Data TypeLogical Data TypeChecking Data TypesNaming ConventionsMissing Values: NARecap - Variable Creation8Loops
For LoopWhile LoopBreakNext (Continue)Recap - FactorialSequence Generation (seq, :)Nested LoopsRecap - Dynamic Input3Operators Part 1
Arithmetic OperatorsInteger Division and ModuloAssignment OperatorsRecap - Simple MathComparison Operators6Basic IO
Print OutputCat for OutputOutput With VariablesReading Input with readline()Type Conversion BasicsRecap - Age CalculatorRecap - True or False9Functions
Declaring a FunctionFunction ArgumentsReturn ValuesRecap - Sigma FunctionRecap - Validation FunctionDefault Parameter Values