What you have learnt so far?
-Use structured thinking to define a problem and ask the right questions.
-Clean your data to make sure it has integrity before you analyze it.
Computer programming
Giving instructions to a computer to perform an action or set of instructions.
What you will learn?
R Programing language
Used for statistical analysis, visualization, and other data analysis.
Programming Languages
Coding
Programming languages
-R
- Python
- JavaScript
- SAS
-Scala
-Julia
Benefits of using programming languages
R
A programming language frequently used for statistical analysis, visualization, and other data analysis.
Open Source
Code that is freely available and may be modified and shared by the people who use it.
R Benefits
Uses of R
Integrated Development Environment (IDE)
A software application that brings together all the tools you may want to use in a single place.
R code known as pipe
Helps make a sequence of code easier to work with and read.
The Basic concepts of R
Functions (R)
A body of reusable code to perform specific tasks in R.
Argument (R)
Information that a function in R needs in order to run.
Variable (R)
A representation of a value in R that can be stored for use later during programming.
Vector (R)
A group of data elements of the same type stored in a sequence in R.
Pipe(R)
A tool in R for expressing a sequence of multiple operations, represented with “%>%.
Pipe (R) example
Tooth Growth %>%
filter(dose==0.5)%>%
arrange(Len)
Data Structure
Data structure is a format for organizing and storing data.
Types of atomic vectors
-Logical
-Double
-integer
-Character
Logical Vector
True/False