SlideShare a Scribd company logo
1 of 25
Download to read offline
Contingency
Table
Levels
Class
Conditional
Tree
RBootcamp
Day 3 - Part 2
Olga Scrivner and Jefferson Davis
Assistant Jivitesh Poojary
1 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Outline
1 Contingency Tables
2 Factors and Levels
3 Categorical vs Continuous Regression Models
4 Conditional Trees
2 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Review
Download Categoricaldata.csv from Bootcamp Day 3
or http://cl.indiana.edu/~obscrivn/docs/
categoricaldata.csv
Open a new script
mydata <- read.csv(file.choose())
colnames()
rownames()
nrow()
tail()
summary()
3 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Review
Download Categoricaldata.csv from Bootcamp Day 3
or http://cl.indiana.edu/~obscrivn/docs/
categoricaldata.csv
Open a new script
mydata <- read.csv(file.choose())
colnames()
rownames()
nrow()
tail()
summary()
NEW: str()
Type and Run str(mydata)3 / 22
Contingency
Table
Levels
Class
Conditional
Tree
2x2 Contingency Tables
1 Let’s build a table for R.Use and Lexical.Item
attach(categoricaldata) (remember to run your
commands)
2 table(A,B): A - rows, B - columns
table(R.Use, Lexical.Item)
3 Let’s name it mytable
mytable <- table(R.Use, Lexical.Item)
4 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Adding Totals
table(A,B): A - rows, B - columns
To add margins (sum) over columns/row:
addmargins(mytable)
5 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Saving as CSV
Name your new table with margins:
mytable2 <- addmargins(mytable)
write.csv(mytable2, file=“table.csv”)
Open table.csv file (it should be in your working directory)
6 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Percentages
prop.table(mytable): (1 - rows, 2 - columns)
To add row percentages:
prop.table(mytable, 1)
To add columns percentage:
margin.table(mytable, 2)
7 / 22
Contingency
Table
Levels
Class
Conditional
Tree
3-way Table I
table(R.Use, Lexical.Item, Store)
8 / 22
Contingency
Table
Levels
Class
Conditional
Tree
3-way Table II
Let’s give a name:
mytable3 <- table(R.Use, Lexical.Item, Store)
ftable(mytable3)
9 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Subset
Syntax: subset(data, condition)
Let’s subset Kleins data - we need double equal sign here:
kleins <- subset(categoricaldata, Store==“Kleins”)
Run summary(kleins)
we need to drop empty levels:
kleins <- droplevels(kleins)
summary(kleins)
10 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Levels
Levels - factor’s values (e.g. male-female)
Let’s look what values we have for Store:
levels(Store)
Store has three levels
We can look at each level separately:
levels(Store)[1]
levels(Store)[2]
11 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Changing Levels Names
Let’s rename our levels (values)
levels(Store)[1] <-“Store1”
Check levels names: levels(Store)
Let’s change it back
levels(Store)[1] <-“Kleins”
12 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Changing Order
Default: deletion
Let’s change it to retention
labovdata$R.Use <- relevel(labovdata$R.Use,
ref=“retention”)
Attach labovdata attach(labovdata)
look at levels(R.Use)
13 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Class - Factor
age <- c(1,2,3)
Class(age)
Let’s change numeric to factor
age <- as.factor(age)
class(age)
Change from factor to numeric
age <- as.integer(Age)
14 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Class - Factor
age <- c(1,2,3)
Class(age)
Let’s change numeric to factor
age <- as.factor(age)
class(age)
Change from factor to numeric
age <- as.integer(Age)
14 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Recap: Regression Analysis
Type of Variables
a.) Binary/categorical (only two values)
b.) Continuous (numeric)
c.) Multinomial - categorical with more than two values -
mlogit
Regression Types
a.) Logistic regression - binary categorical -glm
b.) Linear - only continuous - lm and lme4
15 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Conditional Tree Regression
Conditional tree: a simple non-parametric regression analysis,
commonly used in social and psychological studies
Linear/logistic regression: all information is combined linearly
Conditional tree regression: splitting to capture interaction
between variables
Recursive splitting (tree branches)
16 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Conditional Tree
1 Polarity is relevant to the second group of individuals.
2 The variant were occurs significantly more often with negative
polarity
17 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Conditional Tree
1 Install packages: party, partykit
2 Activate packages or type and run:
library(party)
library(partykit)
18 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Creating Conditional Tree
1 regression formula
2 ctree
3 plot
mytree<- ctree(R.Use∼Store+Lexical.Item+Style,
data=mydata)
plot(mytree, main=“Conditional Inference Tree”)
19 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Conditional Tree
20 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Conditional Tree
1 Store is the most significant factor for R-use
Kleins (working class store) - more R-deletion
2 R-use in Macy’s and Saks is conditioned by lexical item:
Floor shows more R-retention than Fourth
3 Style is not significant
20 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Changing Fonts
fontsize
col - colour
lwd - line width
plot(mytree, main=“Conditional Inference
Tree”,gp=gpar(fontsize=10))
Change font size to 5 and 15
plot(mytree, main=“Conditional Inference
Tree”,gp=gpar(fontsize=10,col=“red”,lwd=1.2))
Change color and line width
21 / 22
Contingency
Table
Levels
Class
Conditional
Tree
Practice-DataCamp
1 RBootcamp day 3
2 Complete all practice to receive points!
22 / 22

More Related Content

More from Olga Scrivner

The Impact of Language Requirement on Students' Performance, Retention, and M...
The Impact of Language Requirement on Students' Performance, Retention, and M...The Impact of Language Requirement on Students' Performance, Retention, and M...
The Impact of Language Requirement on Students' Performance, Retention, and M...Olga Scrivner
 
If a picture is worth a thousand words, Interactive data visualizations are w...
If a picture is worth a thousand words, Interactive data visualizations are w...If a picture is worth a thousand words, Interactive data visualizations are w...
If a picture is worth a thousand words, Interactive data visualizations are w...Olga Scrivner
 
Introduction to Interactive Shiny Web Application
Introduction to Interactive Shiny Web ApplicationIntroduction to Interactive Shiny Web Application
Introduction to Interactive Shiny Web ApplicationOlga Scrivner
 
Introduction to Overleaf Workshop
Introduction to Overleaf WorkshopIntroduction to Overleaf Workshop
Introduction to Overleaf WorkshopOlga Scrivner
 
R crash course for Business Analytics Course K303
R crash course for Business Analytics Course K303R crash course for Business Analytics Course K303
R crash course for Business Analytics Course K303Olga Scrivner
 
Workshop nwav 47 - LVS - Tool for Quantitative Data Analysis
Workshop nwav 47 - LVS - Tool for Quantitative Data AnalysisWorkshop nwav 47 - LVS - Tool for Quantitative Data Analysis
Workshop nwav 47 - LVS - Tool for Quantitative Data AnalysisOlga Scrivner
 
Gender Disparity in Employment and Education
Gender Disparity in Employment and EducationGender Disparity in Employment and Education
Gender Disparity in Employment and EducationOlga Scrivner
 
CrashCourse: Python with DataCamp and Jupyter for Beginners
CrashCourse: Python with DataCamp and Jupyter for BeginnersCrashCourse: Python with DataCamp and Jupyter for Beginners
CrashCourse: Python with DataCamp and Jupyter for BeginnersOlga Scrivner
 
Optimizing Data Analysis: Web application with Shiny
Optimizing Data Analysis: Web application with ShinyOptimizing Data Analysis: Web application with Shiny
Optimizing Data Analysis: Web application with ShinyOlga Scrivner
 
Data Analysis and Visualization: R Workflow
Data Analysis and Visualization: R WorkflowData Analysis and Visualization: R Workflow
Data Analysis and Visualization: R WorkflowOlga Scrivner
 
Reproducible visual analytics of public opioid data
Reproducible visual analytics of public opioid dataReproducible visual analytics of public opioid data
Reproducible visual analytics of public opioid dataOlga Scrivner
 
Building Effective Visualization Shiny WVF
Building Effective Visualization Shiny WVFBuilding Effective Visualization Shiny WVF
Building Effective Visualization Shiny WVFOlga Scrivner
 
Building Shiny Application Series - Layout and HTML
Building Shiny Application Series - Layout and HTMLBuilding Shiny Application Series - Layout and HTML
Building Shiny Application Series - Layout and HTMLOlga Scrivner
 
Introduction to R - from Rstudio to ggplot
Introduction to R - from Rstudio to ggplotIntroduction to R - from Rstudio to ggplot
Introduction to R - from Rstudio to ggplotOlga Scrivner
 
Visual Analytics for Linguistics - Day 5 ESSLLI 2017
Visual Analytics for Linguistics - Day 5 ESSLLI 2017Visual Analytics for Linguistics - Day 5 ESSLLI 2017
Visual Analytics for Linguistics - Day 5 ESSLLI 2017Olga Scrivner
 
Visual Analytics for Linguistics - Day 4 ESSLLI - structured data
Visual Analytics for Linguistics - Day 4 ESSLLI - structured dataVisual Analytics for Linguistics - Day 4 ESSLLI - structured data
Visual Analytics for Linguistics - Day 4 ESSLLI - structured dataOlga Scrivner
 
Visual Analytics for Linguistics - Day 3 ESSLLI
Visual Analytics for Linguistics - Day 3 ESSLLIVisual Analytics for Linguistics - Day 3 ESSLLI
Visual Analytics for Linguistics - Day 3 ESSLLIOlga Scrivner
 
Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2
Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2
Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2Olga Scrivner
 
Data Visualization Workshop Day 1 - ESSLLI 2017
Data Visualization Workshop Day 1 - ESSLLI 2017Data Visualization Workshop Day 1 - ESSLLI 2017
Data Visualization Workshop Day 1 - ESSLLI 2017Olga Scrivner
 
Data Visualization for Literary Analysis
Data Visualization for Literary AnalysisData Visualization for Literary Analysis
Data Visualization for Literary AnalysisOlga Scrivner
 

More from Olga Scrivner (20)

The Impact of Language Requirement on Students' Performance, Retention, and M...
The Impact of Language Requirement on Students' Performance, Retention, and M...The Impact of Language Requirement on Students' Performance, Retention, and M...
The Impact of Language Requirement on Students' Performance, Retention, and M...
 
If a picture is worth a thousand words, Interactive data visualizations are w...
If a picture is worth a thousand words, Interactive data visualizations are w...If a picture is worth a thousand words, Interactive data visualizations are w...
If a picture is worth a thousand words, Interactive data visualizations are w...
 
Introduction to Interactive Shiny Web Application
Introduction to Interactive Shiny Web ApplicationIntroduction to Interactive Shiny Web Application
Introduction to Interactive Shiny Web Application
 
Introduction to Overleaf Workshop
Introduction to Overleaf WorkshopIntroduction to Overleaf Workshop
Introduction to Overleaf Workshop
 
R crash course for Business Analytics Course K303
R crash course for Business Analytics Course K303R crash course for Business Analytics Course K303
R crash course for Business Analytics Course K303
 
Workshop nwav 47 - LVS - Tool for Quantitative Data Analysis
Workshop nwav 47 - LVS - Tool for Quantitative Data AnalysisWorkshop nwav 47 - LVS - Tool for Quantitative Data Analysis
Workshop nwav 47 - LVS - Tool for Quantitative Data Analysis
 
Gender Disparity in Employment and Education
Gender Disparity in Employment and EducationGender Disparity in Employment and Education
Gender Disparity in Employment and Education
 
CrashCourse: Python with DataCamp and Jupyter for Beginners
CrashCourse: Python with DataCamp and Jupyter for BeginnersCrashCourse: Python with DataCamp and Jupyter for Beginners
CrashCourse: Python with DataCamp and Jupyter for Beginners
 
Optimizing Data Analysis: Web application with Shiny
Optimizing Data Analysis: Web application with ShinyOptimizing Data Analysis: Web application with Shiny
Optimizing Data Analysis: Web application with Shiny
 
Data Analysis and Visualization: R Workflow
Data Analysis and Visualization: R WorkflowData Analysis and Visualization: R Workflow
Data Analysis and Visualization: R Workflow
 
Reproducible visual analytics of public opioid data
Reproducible visual analytics of public opioid dataReproducible visual analytics of public opioid data
Reproducible visual analytics of public opioid data
 
Building Effective Visualization Shiny WVF
Building Effective Visualization Shiny WVFBuilding Effective Visualization Shiny WVF
Building Effective Visualization Shiny WVF
 
Building Shiny Application Series - Layout and HTML
Building Shiny Application Series - Layout and HTMLBuilding Shiny Application Series - Layout and HTML
Building Shiny Application Series - Layout and HTML
 
Introduction to R - from Rstudio to ggplot
Introduction to R - from Rstudio to ggplotIntroduction to R - from Rstudio to ggplot
Introduction to R - from Rstudio to ggplot
 
Visual Analytics for Linguistics - Day 5 ESSLLI 2017
Visual Analytics for Linguistics - Day 5 ESSLLI 2017Visual Analytics for Linguistics - Day 5 ESSLLI 2017
Visual Analytics for Linguistics - Day 5 ESSLLI 2017
 
Visual Analytics for Linguistics - Day 4 ESSLLI - structured data
Visual Analytics for Linguistics - Day 4 ESSLLI - structured dataVisual Analytics for Linguistics - Day 4 ESSLLI - structured data
Visual Analytics for Linguistics - Day 4 ESSLLI - structured data
 
Visual Analytics for Linguistics - Day 3 ESSLLI
Visual Analytics for Linguistics - Day 3 ESSLLIVisual Analytics for Linguistics - Day 3 ESSLLI
Visual Analytics for Linguistics - Day 3 ESSLLI
 
Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2
Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2
Visualization Design, Methods and Tools - ESSLLI 2017 Workshop Day 2
 
Data Visualization Workshop Day 1 - ESSLLI 2017
Data Visualization Workshop Day 1 - ESSLLI 2017Data Visualization Workshop Day 1 - ESSLLI 2017
Data Visualization Workshop Day 1 - ESSLLI 2017
 
Data Visualization for Literary Analysis
Data Visualization for Literary AnalysisData Visualization for Literary Analysis
Data Visualization for Literary Analysis
 

Recently uploaded

100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfadriantubila
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...amitlee9823
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779Delhi Call girls
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 

Recently uploaded (20)

100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
Best VIP Call Girls Noida Sector 22 Call Me: 8448380779
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 

Rbootcamp day3 part2