SlideShare une entreprise Scribd logo
1  sur  36
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
What is Hadoop?
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
➢ Variables
➢ Data types
➢ Operators
➢ Conditional Statements
➢ Loops
➢ Strings
➢ Functions
Agenda
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
R Installation
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
RStudio Installation
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Variables
Data types
Operators
Conditional
Statements
Loops Functions
Strings
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Variable
Variables are nothing but reserved memory locations to store values. This means that
when you create a variable you reserve some space in memory.
X = 15
Y <- “Hello”
TRUE -> B
B = TRUE
Y = Hello
X = 15
Memory
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Operators
Conditional
Statements
Loops FunctionsVariables
Data types
Strings
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Data types
A data type, in programming, is a classification that specifies which type of value a variable
has and what type of mathematical, relational or logical operations can be applied to it
without causing an error.
X = 15
Y <- “Hello”
TRUE -> B
B = TRUE
Y = 3.142857
X = 15
Memory
Integer
Numeric
Boolean
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Data types
Data types
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Vector
 A Vector is a sequence of data elements of the same basic type
 There are 5 Atomic vectors, also termed as five classes of vectors.
True or False
15L, 30L, 1699L
5, 3.14285, 945678
4+3i, 8+7i
‘A’, “Hey”, ’True’
Integer
Numeric
Complex
Character
Logical
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Matrix
 Matrix are the R objects in which the elements are arranged in a
two-dimensional rectangular layout.
matrix(data, nrow, ncol, byrow, dimnames)
❖ data is the input vector which becomes the data elements of the matrix.
❖ nrow is the number of rows to be created.
❖ ncol is the number of columns to be created.
❖ byrow is a logical clue. If TRUE then the input vector elements are arranged by row.
❖ dimname is the names assigned to the rows and columns.
Syntax
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Array
 Arrays are the R data objects which can store data in more than
two dimensions.
array( data, dim, dimnames)
array( c(0:15), dim=c( 4,4,2,2) )
Syntax
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Lists
 Lists are the R objects which contain elements of different types
like − numbers, strings, vectors and another list inside it.
list(data)Syntax
vtr1 <- c(1:5)
vtr2 <- c("hi", "Hello", "How are you")
vtr3 <-c(TRUE,TRUE, FALSE, FALSE)
myList <- list(vtr1,vtr2, vtr3)
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Data Frame
 Data Frame is a table or a two-dimensional array-like structure in
which each column contains values of one variable and each row
contains one set of values from each column.
data.frame(data)Syntax
data.frame(mtcars)
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Conditional
Statements
Loops Functions
Strings
Variables
Data types
Operators
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Data Operators in R
Operators
Relational
Operators
Arithmetic
Operators
Logical
Operators
Assignment
Operations Operators are the constructs which can manipulate the value of operands.
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Arithmetic and Relational Operators
Arithmetic
a + b
a – b
a * b
a / b
a %% b
a^b
a%/%b
Subtraction
Division
Multiplication
Modulus
Exponent
a == b
a != b
a > b
a < b
a >= b
a <= b
Equal To
Greater Than
Not Equal To
Less Than
Greater Than Equal To
Less Than Equal To
Relational
Addition
Floor Division
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Assignment Operator
There are two types of Assignment operators: Left and Right
Left
Right
Equals
Assign
Equals
Assign
x=5
x<- 15
20=x
25 -> x
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Logical Operator
There are three types of logical operators: AND, NOT, OR
a & b
It combines each element of vectors and gives a output
TRUE if both the elements are TRUE.
a | b It combines each element of the vectors and gives a
output TRUE if one the elements is TRUE.
!a Takes each element of the vector and gives the opposite
logical value.
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Operators
Conditional
Statements
Loops Functions
Strings
Variables
Data types
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Conditional Statements
If Statement
If code
End
Start
If
Condition
FALSETRUE
Syntax:
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Conditional Statements
Else If Statement
If code
End
Start
If
Condition
FALSE
TRUE
FALSE
Else If
Condition
TRUE
Else If code
Syntax:
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Conditional Statements
Else Statement
Syntax:
If code
End
Start
If
Condition
FALSE
TRUE
FALSE
Else If
Condition
TRUE
Else If code
Else code
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Conditional Statements
Switch case Statement
Syntax:
Start
switch
Condition
Case value1 Statement 1
Case value2 Statement 2
Case value3 Statement 3
default Statement
End
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Conditional
Statements
Operators Functions
Strings
Variables
Data types
Loops
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Loops in R
A loop statement allows us to execute a statement or group of statements
multiple times.
Loops
Loops
forwhilerepeat
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Repeat Loop
repeat Repeats a statement or group of statements while a given condition is TRUE. It
tests the condition after executing the loop body.
Syntax:
CHECK
CONDITION
EXECUTE BLOCK
START
EXIT LOOPFALSE
TRUE
repeat
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
While Loop
while Loop Repeats a statement or group of statements while a given condition is TRUE. It
tests the condition before executing the loop body.
Syntax:
CHECK
CONDITION
EXECUTE BLOCK
START
repeat
EXIT LOOP
FALSE
TRUE
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
For Loop
for Loop Repeats a statement or group of for a fixed number of times. It tests the
condition before executing the loop body.
Syntax:
Check
condition
Initialization
START
Iteration
Execute Statements
Exit loop
FALSE
TRUE
repeat
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Loops
Strings
Conditional
Statements
Operators FunctionsVariables
Data types
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
 Any value written within a pair of single quote or double quotes in R is treated as a string.
String in R
Syntax:
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
String in R
Sequence Operations:
➢ Concatenation:
str1<- ‘Hi’
str2<- “How are you?”
paste(str1,str2) "Hi How are you? "
➢ Character Count:
nchar(str)str<-“Edureka” 7
➢ Case Change
toupper(str)
tolower(str)
str<-“Edureka”
EDUREKA
edureka
➢ Substring
substring(str, 3, 6)str<-“Edureka” “urek”
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Functions
Loops
Conditional
Statements
OperatorsVariables
Data types Strings
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Functions
A function is a block of organized, reusable code that is used to perform a
single, related action.
Functions
Predefined
Functions
User Defined
Functions
Function Add
Call (3,5)
Call (6,9)
Call (1,5)
Call 1
Call 2
Call 3
Return 8
Return 15
Return 6
Functions In R
`
https://www.edureka.co/r-for-analyticsEDUREKA DATA ANALYTICS WITH R CERTIFICATION TRAINING
Session In A Minute
Install R & RStudio Data Types
Conditional Statements Loops
Data Operators
Functions
R Programming For Beginners | R Language Tutorial | R Tutorial For Beginners | Edureka

Contenu connexe

Tendances

Tendances (20)

SQL JOINS
SQL JOINSSQL JOINS
SQL JOINS
 
MySQL Tutorial For Beginners | Relational Database Management System | MySQL ...
MySQL Tutorial For Beginners | Relational Database Management System | MySQL ...MySQL Tutorial For Beginners | Relational Database Management System | MySQL ...
MySQL Tutorial For Beginners | Relational Database Management System | MySQL ...
 
Introduction to R Programming
Introduction to R ProgrammingIntroduction to R Programming
Introduction to R Programming
 
Tableau Desktop Material
Tableau Desktop MaterialTableau Desktop Material
Tableau Desktop Material
 
OLAP & DATA WAREHOUSE
OLAP & DATA WAREHOUSEOLAP & DATA WAREHOUSE
OLAP & DATA WAREHOUSE
 
E-R Diagram of College Management Systems
E-R Diagram of College Management SystemsE-R Diagram of College Management Systems
E-R Diagram of College Management Systems
 
Big data and data science overview
Big data and data science overviewBig data and data science overview
Big data and data science overview
 
Tableau Prep.pptx
Tableau Prep.pptxTableau Prep.pptx
Tableau Prep.pptx
 
SQL Tutorial - Basic Commands
SQL Tutorial - Basic CommandsSQL Tutorial - Basic Commands
SQL Tutorial - Basic Commands
 
Non relational databases-no sql
Non relational databases-no sqlNon relational databases-no sql
Non relational databases-no sql
 
Sql server T-sql basics ppt-3
Sql server T-sql basics  ppt-3Sql server T-sql basics  ppt-3
Sql server T-sql basics ppt-3
 
Working with Databases and MySQL
Working with Databases and MySQLWorking with Databases and MySQL
Working with Databases and MySQL
 
Data Management in R
Data Management in RData Management in R
Data Management in R
 
Creating and Managing Tables -Oracle Data base
Creating and Managing Tables -Oracle Data base Creating and Managing Tables -Oracle Data base
Creating and Managing Tables -Oracle Data base
 
Top 8 Data Science Tools | Open Source Tools for Data Scientists | Edureka
Top 8 Data Science Tools | Open Source Tools for Data Scientists | EdurekaTop 8 Data Science Tools | Open Source Tools for Data Scientists | Edureka
Top 8 Data Science Tools | Open Source Tools for Data Scientists | Edureka
 
R programming presentation
R programming presentationR programming presentation
R programming presentation
 
Ontologies and semantic web
Ontologies and semantic webOntologies and semantic web
Ontologies and semantic web
 
introduction to NOSQL Database
introduction to NOSQL Databaseintroduction to NOSQL Database
introduction to NOSQL Database
 
Sql
SqlSql
Sql
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
 

Similaire à R Programming For Beginners | R Language Tutorial | R Tutorial For Beginners | Edureka

Presentation
PresentationPresentation
Presentation
butest
 
Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...
Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...
Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...
Accumulo Summit
 

Similaire à R Programming For Beginners | R Language Tutorial | R Tutorial For Beginners | Edureka (20)

Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
Python Programming | Python Programming For Beginners | Python Tutorial | Edu...Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
 
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Java Programming | Java Tutorial For Beginners | Java Training | EdurekaJava Programming | Java Tutorial For Beginners | Java Training | Edureka
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
 
XL-MINER:Prediction
XL-MINER:PredictionXL-MINER:Prediction
XL-MINER:Prediction
 
XL-MINER:Prediction
XL-MINER:PredictionXL-MINER:Prediction
XL-MINER:Prediction
 
Introduction to javascript.ppt
Introduction to javascript.pptIntroduction to javascript.ppt
Introduction to javascript.ppt
 
Meet the CBO in Version 11g
Meet the CBO in Version 11gMeet the CBO in Version 11g
Meet the CBO in Version 11g
 
2 R Tutorial Programming
2 R Tutorial Programming2 R Tutorial Programming
2 R Tutorial Programming
 
OGSA-DAI DQP: A Developer's View
OGSA-DAI DQP: A Developer's ViewOGSA-DAI DQP: A Developer's View
OGSA-DAI DQP: A Developer's View
 
Machine Learning - Simple Linear Regression
Machine Learning - Simple Linear RegressionMachine Learning - Simple Linear Regression
Machine Learning - Simple Linear Regression
 
Presentation
PresentationPresentation
Presentation
 
09 Managing Dependencies
09 Managing Dependencies09 Managing Dependencies
09 Managing Dependencies
 
Chapter15
Chapter15Chapter15
Chapter15
 
Query processing and Query Optimization
Query processing and Query OptimizationQuery processing and Query Optimization
Query processing and Query Optimization
 
Query processing and Query Optimization
Query processing and Query OptimizationQuery processing and Query Optimization
Query processing and Query Optimization
 
Essay on-data-analysis
Essay on-data-analysisEssay on-data-analysis
Essay on-data-analysis
 
Harvard University database
Harvard University databaseHarvard University database
Harvard University database
 
Ppcrslidesannotated
PpcrslidesannotatedPpcrslidesannotated
Ppcrslidesannotated
 
Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...
Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...
Accumulo Summit 2015: Rya: Optimizations to Support Real Time Graph Queries o...
 
Mini-lab 1: Stochastic Gradient Descent classifier, Optimizing Logistic Regre...
Mini-lab 1: Stochastic Gradient Descent classifier, Optimizing Logistic Regre...Mini-lab 1: Stochastic Gradient Descent classifier, Optimizing Logistic Regre...
Mini-lab 1: Stochastic Gradient Descent classifier, Optimizing Logistic Regre...
 
JavaScript - Chapter 5 - Operators
 JavaScript - Chapter 5 - Operators JavaScript - Chapter 5 - Operators
JavaScript - Chapter 5 - Operators
 

Plus de Edureka!

Plus de Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 
ITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
ITIL® Tutorial for Beginners | ITIL® Foundation Training | EdurekaITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
ITIL® Tutorial for Beginners | ITIL® Foundation Training | Edureka
 

Dernier

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Dernier (20)

"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 

R Programming For Beginners | R Language Tutorial | R Tutorial For Beginners | Edureka