SlideShare une entreprise Scribd logo
1  sur  61
Télécharger pour lire hors ligne
R Studio
R Basics
Operators
Packages
Importing
DataCamp
RBootcamp
Day 1
Olga Scrivner and Jefferson Davis
Assistant Jivitesh Poojary
1 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Sponsors
This RBootcamp is sponsored by
Center of Excellence for Women in Technology (CEWiT)
and
Social Science Research Commons (SSRC)
2 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Outline
1 Intro to RStudio
2 Using R scripts
3 Installing packages
4 R objects
Data types
Vectors
Lists
5 Getting help
3 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
R software
R is a free software for statistical analysis, text mining and
graphics.
To install R on Window:
1 Download the binary file for R https://cran.
r-project.org/bin/windows/base/R-3.3.1-win.exe
2 Open the downloaded .exe file and Install R
To install R on Mac:
1 Download the appropriate version of .pkg file
https://cran.r-project.org/bin/macosx/
2 Open the downloaded .pkg file and Install R
4 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
R Studio
RStudio is a free user interface for R.
1 Install the appropriate RStudio version https:
//www.rstudio.com/products/rstudio/download/
2 Run it to install R-studio
5 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
R Studio Structure
For more details - see handout RStudio101 (by Oscar
Torres-Reyna)
http://dss.princeton.edu/training/RStudio101.pdf6 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Organizing Your Files
Option 1
Create new script / Open existing script
Set up your working directory
Keep your datafiles in this directory (easy access)
Or use command file.choose()
Or remember the path to datafiles
7 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Organizing Your Files
Option 1
Create new script / Open existing script
Set up your working directory
Keep your datafiles in this directory (easy access)
Or use command file.choose()
Or remember the path to datafiles
Option 2
Create new project/ Open existing project
Do not have to set up working directory
Keep your datafiles in the project directory
Do not have to remember the path to datafiles
7 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Creating Projects
8 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Creating Projects
8 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Creating R Script
9 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Saving R Script
10 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Closing and Opening Scripts
Close R File: File → Close
Open R File: File → Open
11 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Editing Script: Font and Size
12 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
RStudio - Full View
13 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Learning R Syntax
variable stores values
Assignment operator: <-
x <- 5
y <- 6
A valid name for variable must start with a letter.
Name can contain letters, numbers, underscores, and dot.
Valid names Invalid names
mydata
my data
mydata2
my.data
mydata!
my data
2mydata
.mydata
14 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Script Flow
1 Create two variables
x <- 5
y <- 6
2 run executes commands:
- Place cursor anywhere on the first line - click run
- Place cursor on the second line - click run
3 Console displays the execution
4 Right top
- Environment stores objects
- History stores commands
15 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Values
1 Change value of y to 6.5
2 Examine objects in environment
16 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Comments
1 Comments are not executed
2 Comments are preceded by # (hash tag)
3 Type a comment above your first line of code
17 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Print()
Function print() prints the value into your console
Inside the parenthesis you type the name of your variable
Examine the output in the console
18 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Characters versus Numeric Values
Numbers are without quotation marks:
x <- 5
Characters are enclosed in quotation marks:
z <-“a”
19 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Characters versus Numeric Values
Numbers are without quotation marks:
x <- 5
Characters are enclosed in quotation marks:
z <-“a”
Arithmetic operations with numerics
In the console type x*y, press enter
In the console type z*w, press enter
19 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Logical Values
1 TRUE, FALSE - upper case, no quotes
2 Add comment # logical values
20 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Data Types
1 Data types:
Logical
Numeric
Character
2 Function class() identifies the class type
3 Type in the script
4 Examine the console
21 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Vector - Basic Types
Vector: A sequence of data elements of the same basic type
Numeric
c(2, 3, 5)
Logical
c(TRUE, FALSE, TRUE)
Character string
c("aa", "bb", "cc")
22 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Vector
In the script create two vectors:
Examine the environment
23 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Length
Function length() of a vector
length(v1)
Create a vector with words:
mywords <-c(“These”, “are”,“my”,“words”)
1 How many words in mywords?
24 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Index Slicing
1. [1:3] - consecutive elements: one, two, three
2. [c(1,3)] - only the elements one and three
3. [-2] - all except the element number two
Extract the first and the second elements
Extract all except the first element
Extract the first and the fourth elements
25 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Indexing
How to extract certain elements from a vector?
What is the first word in mywords?
- mywords[1]
What are the first and second words in mywords?
- mywords[1:2]
What are the first and third words in mywords?
- mywords[c(1,3)]
26 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Combining Vectors - Strings
vector1 <- c("my", "first", "vector")
vector2 <- c("my", "second", "vector")
vector3 <- c(vector1, vector2)
print(vector3)
27 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Vectors - Arithmetic Operations
Click RUN to execute each line
v1 <- c(1, 3, 6)
v2 <- c(2, 4, 6)
v1*v2
v1+v2
v1/v2
vector1*vector2 - what will happen?
28 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Vectors - Arithmetic Operations
Click RUN to execute each line
v1 <- c(1, 3, 6)
v2 <- c(2, 4, 6)
v1*v2
v1+v2
v1/v2
vector1*vector2 - what will happen?
28 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Vectors - Arithmetic Operations
Click RUN to execute each line
v1 <- c(1, 3, 6)
v2 <- c(2, 4, 6)
v1*v2
v1+v2
v1/v2
vector1*vector2 - what will happen?
vector3 <- c(vector1, vector2)
28 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Vectors - paste
paste(vector1, "+", vector2, sep = " ")
paste(vector1, "+", vector2, sep = "")
paste(vector1, "+", vector2, collapse = " ")
29 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Usefulness of paste - Create a Plot Title
Scenario: You are going to create a plot with x (Age Groups)
and y (Frequency) with the following title
My plot: Frequency of Age Groups
y <- "Frequency"
x <- "Age Groups"
title <- "My plot:"
c(title,y,"of",x)
30 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Usefulness of paste - Create a Plot Title
Scenario: You are going to create a plot with x (Age Groups)
and y (Frequency) with the following title
My plot: Frequency of Age Groups
y <- "Frequency"
x <- "Age Groups"
title <- "My plot:"
c(title,y,"of",x)
paste(title,y,"of",x,collapse=" ")
30 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Lists
List: a vector that can contain different types
mylist <- list(vector1, v1)
print(mylist)
[[ ]] - index for lists
[ ] - index for vectors
31 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
List versus Vector
Vectors contain the objects of the same type:
- v1 <- c(“a”,“b”,“c”)
- v2 <- c(1,2,3,4)
Lists contain different types of objects
Vector uses c() function
List uses list() function
Create mylist:
32 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
List versus Vector
Vectors contain the objects of the same type:
- v1 <- c(“a”,“b”,“c”)
- v2 <- c(1,2,3,4)
Lists contain different types of objects
Vector uses c() function
List uses list() function
Create mylist:
miniquiz: What are the data types in mylist?
32 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Indexing List
1 Print list: print(mylist)
33 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Indexing List
1 Print list: print(mylist)
2 Remember vector indices [ ]?
3 List will use [[ ]]
4 Type mylist[[1]]
5 Type mylist[[7]]
33 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Indexing List
1 Print list: print(mylist)
2 Remember vector indices [ ]?
3 List will use [[ ]]
4 Type mylist[[1]]
5 Type mylist[[7]]
6 How to access the first number
inside the list object?
33 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Indexing List
1 Print list: print(mylist)
2 Remember vector indices [ ]?
3 List will use [[ ]]
4 Type mylist[[1]]
5 Type mylist[[7]]
6 How to access the first number
inside the list object?
7 mylist[[7]][1]
33 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Operators: Arithmetic
34 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Operators: Logical
35 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Operators: Logical
36 / 50
a <- 1
b <- 2
a > b
a <= 2
a != b
a == b
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Operators: Logical
36 / 50
a <- 1
b <- 2
a > b
a <= 2
a != b
a == b
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Installing Packages
In your bottom left window - go to Packages
37 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Selecting Packages
38 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Package = Library
In your Packages window scroll down until you see languageR
and click inside the box:
39 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Package Content
To access package description and its content, click on the
package name.
New window Help will open up:
40 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Accessing Info from Packages
Scroll down and select languageR-package
You will see the list of available functions from this package
41 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Quick Help
Type in the console (bottom left):
?length
Instead of Run - click enter-key
42 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
File Formats
1 CSV, Excel Movie metadata.csv
2 TXT NY Times.txt
3 PDF Article.pdf
43 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
CSV, Excel, SAS, SPSS Data
44 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
CSV
45 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
CSV Data
Close data view:
colnames(movie metadata)
nrow(movie metadata)
46 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Import Text Files - NY Times
file path <- file.choose()
myfile <- scan(file path, what = "character",
sep = "n",blank.lines.skip = TRUE)
head(myfile)
47 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Import PDF Files - Article
install.packages("pdftools")
library(pdftools)
file path2 <- file.choose()
myfile2 <- unlist(lapply(file path2, pdf text))
text <- paste(myfile2, collapse = " ")
head(text)
48 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Practice-DataCamp
1 Sign up for a free DataCamp.com account
2 Link to the group
https://www.datacamp.com/groups/
40456ec7289f29ce125860d0dc42d2d12ee15630/
invite
3 Go to groups
4 Select assignments
5 Go to the course RBootcamp day 1
49 / 50
R Studio
R Basics
Operators
Packages
Importing
DataCamp
Practice-DataCamp
1 RBootcamp day 1
2 Complete all practice to receive points!
3 If you get a pop-up message about joining a payed
membership, refresh the page and continue the exercise.
50 / 50

Contenu connexe

Tendances

5 the relational algebra and calculus
5 the relational algebra and calculus5 the relational algebra and calculus
5 the relational algebra and calculus
Kumar
 
Er & eer to relational mapping
Er & eer to relational mappingEr & eer to relational mapping
Er & eer to relational mapping
saurabhshertukde
 

Tendances (20)

R Programming: Variables & Data Types
R Programming: Variables & Data TypesR Programming: Variables & Data Types
R Programming: Variables & Data Types
 
Unit 1 - R Programming (Part 2).pptx
Unit 1 - R Programming (Part 2).pptxUnit 1 - R Programming (Part 2).pptx
Unit 1 - R Programming (Part 2).pptx
 
Relational algebra operations
Relational algebra operationsRelational algebra operations
Relational algebra operations
 
Programming in R
Programming in RProgramming in R
Programming in R
 
Query optimization
Query optimizationQuery optimization
Query optimization
 
Couchbase 101
Couchbase 101 Couchbase 101
Couchbase 101
 
R Programming: Introduction to Matrices
R Programming: Introduction to MatricesR Programming: Introduction to Matrices
R Programming: Introduction to Matrices
 
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
 
6. R data structures
6. R data structures6. R data structures
6. R data structures
 
Installing JDK and first java program
Installing JDK and first java programInstalling JDK and first java program
Installing JDK and first java program
 
Linq
LinqLinq
Linq
 
DBMS 3 | ER Diagram to Relational Schema
DBMS 3 | ER Diagram to Relational SchemaDBMS 3 | ER Diagram to Relational Schema
DBMS 3 | ER Diagram to Relational Schema
 
Nifty PDF's for your APEX Application with PL/PDF
Nifty PDF's for your APEX Application with PL/PDFNifty PDF's for your APEX Application with PL/PDF
Nifty PDF's for your APEX Application with PL/PDF
 
Learn SAS Programming
Learn SAS ProgrammingLearn SAS Programming
Learn SAS Programming
 
5 the relational algebra and calculus
5 the relational algebra and calculus5 the relational algebra and calculus
5 the relational algebra and calculus
 
Introduction to SAS Data Set Options
Introduction to SAS Data Set OptionsIntroduction to SAS Data Set Options
Introduction to SAS Data Set Options
 
Mastering the MongoDB Shell
Mastering the MongoDB ShellMastering the MongoDB Shell
Mastering the MongoDB Shell
 
Relational algebra-and-relational-calculus
Relational algebra-and-relational-calculusRelational algebra-and-relational-calculus
Relational algebra-and-relational-calculus
 
Data manipulation on r
Data manipulation on rData manipulation on r
Data manipulation on r
 
Er & eer to relational mapping
Er & eer to relational mappingEr & eer to relational mapping
Er & eer to relational mapping
 

Similaire à Rbootcamp Day 1

Modeling in R Programming Language for Beginers.ppt
Modeling in R Programming Language for Beginers.pptModeling in R Programming Language for Beginers.ppt
Modeling in R Programming Language for Beginers.ppt
anshikagoel52
 
R-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdfR-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdf
KabilaArun
 
R-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdfR-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdf
attalurilalitha
 

Similaire à Rbootcamp Day 1 (20)

RDataMining slides-r-programming
RDataMining slides-r-programmingRDataMining slides-r-programming
RDataMining slides-r-programming
 
R basics
R basicsR basics
R basics
 
Introduction to r
Introduction to rIntroduction to r
Introduction to r
 
Best corporate-r-programming-training-in-mumbai
Best corporate-r-programming-training-in-mumbaiBest corporate-r-programming-training-in-mumbai
Best corporate-r-programming-training-in-mumbai
 
R- Introduction
R- IntroductionR- Introduction
R- Introduction
 
Lecture1_R.ppt
Lecture1_R.pptLecture1_R.ppt
Lecture1_R.ppt
 
Lecture1_R.ppt
Lecture1_R.pptLecture1_R.ppt
Lecture1_R.ppt
 
Lecture1 r
Lecture1 rLecture1 r
Lecture1 r
 
Modeling in R Programming Language for Beginers.ppt
Modeling in R Programming Language for Beginers.pptModeling in R Programming Language for Beginers.ppt
Modeling in R Programming Language for Beginers.ppt
 
Data analysis in R
Data analysis in RData analysis in R
Data analysis in R
 
1 Installing & getting started with R
1 Installing & getting started with R1 Installing & getting started with R
1 Installing & getting started with R
 
Inroduction to r
Inroduction to rInroduction to r
Inroduction to r
 
1 installing & Getting Started with R
1 installing & Getting Started with R1 installing & Getting Started with R
1 installing & Getting Started with R
 
Introduction to R : Regression Module
Introduction to R : Regression ModuleIntroduction to R : Regression Module
Introduction to R : Regression Module
 
R studio
R studio R studio
R studio
 
R Machine Learning - handbook
R Machine Learning - handbookR Machine Learning - handbook
R Machine Learning - handbook
 
R-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdfR-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdf
 
R-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdfR-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdf
 
R-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdfR-Language-Lab-Manual-lab-1.pdf
R-Language-Lab-Manual-lab-1.pdf
 
STAT-522 (Data Analysis Using R) by SOUMIQUE AHAMED.pdf
STAT-522 (Data Analysis Using R) by SOUMIQUE AHAMED.pdfSTAT-522 (Data Analysis Using R) by SOUMIQUE AHAMED.pdf
STAT-522 (Data Analysis Using R) by SOUMIQUE AHAMED.pdf
 

Plus de Olga Scrivner

Plus de Olga Scrivner (20)

Engaging Students Competition and Polls.pptx
Engaging Students Competition and Polls.pptxEngaging Students Competition and Polls.pptx
Engaging Students Competition and Polls.pptx
 
HICSS ATLT: Advances in Teaching and Learning Technologies
HICSS ATLT: Advances in Teaching and Learning TechnologiesHICSS ATLT: Advances in Teaching and Learning Technologies
HICSS ATLT: Advances in Teaching and Learning Technologies
 
The power of unstructured data: Recommendation systems
The power of unstructured data: Recommendation systemsThe power of unstructured data: Recommendation systems
The power of unstructured data: Recommendation systems
 
Cognitive executive functions and Opioid Use Disorder
Cognitive executive functions and Opioid Use DisorderCognitive executive functions and Opioid Use Disorder
Cognitive executive functions and Opioid Use Disorder
 
Introduction to Web Scraping with Python
Introduction to Web Scraping with PythonIntroduction to Web Scraping with Python
Introduction to Web Scraping with Python
 
Call for paper Collaboration Systems and Technology
Call for paper Collaboration Systems and TechnologyCall for paper Collaboration Systems and Technology
Call for paper Collaboration Systems and Technology
 
Jupyter machine learning crash course
Jupyter machine learning crash courseJupyter machine learning crash course
Jupyter machine learning crash course
 
R and RMarkdown crash course
R and RMarkdown crash courseR and RMarkdown crash course
R and RMarkdown crash course
 
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
 

Dernier

Computer science Sql cheat sheet.pdf.pdf
Computer science Sql cheat sheet.pdf.pdfComputer science Sql cheat sheet.pdf.pdf
Computer science Sql cheat sheet.pdf.pdf
SayantanBiswas37
 
Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...
gajnagarg
 
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
nirzagarg
 
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
HyderabadDolls
 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
gajnagarg
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Bertram Ludäscher
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
nirzagarg
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
gajnagarg
 

Dernier (20)

Computer science Sql cheat sheet.pdf.pdf
Computer science Sql cheat sheet.pdf.pdfComputer science Sql cheat sheet.pdf.pdf
Computer science Sql cheat sheet.pdf.pdf
 
Ranking and Scoring Exercises for Research
Ranking and Scoring Exercises for ResearchRanking and Scoring Exercises for Research
Ranking and Scoring Exercises for Research
 
Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Indore [ 7014168258 ] Call Me For Genuine Models We...
 
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
 
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In Begusarai [ 7014168258 ] Call Me For Genuine Models...
 
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
Sealdah % High Class Call Girls Kolkata - 450+ Call Girl Cash Payment 8005736...
 
Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...
Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...
Gomti Nagar & best call girls in Lucknow | 9548273370 Independent Escorts & D...
 
7. Epi of Chronic respiratory diseases.ppt
7. Epi of Chronic respiratory diseases.ppt7. Epi of Chronic respiratory diseases.ppt
7. Epi of Chronic respiratory diseases.ppt
 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
 
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptxRESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
 
High Profile Call Girls Service in Jalore { 9332606886 } VVIP NISHA Call Girl...
High Profile Call Girls Service in Jalore { 9332606886 } VVIP NISHA Call Girl...High Profile Call Girls Service in Jalore { 9332606886 } VVIP NISHA Call Girl...
High Profile Call Girls Service in Jalore { 9332606886 } VVIP NISHA Call Girl...
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
 
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Satna [ 7014168258 ] Call Me For Genuine Models We ...
 
Gulbai Tekra * Cheap Call Girls In Ahmedabad Phone No 8005736733 Elite Escort...
Gulbai Tekra * Cheap Call Girls In Ahmedabad Phone No 8005736733 Elite Escort...Gulbai Tekra * Cheap Call Girls In Ahmedabad Phone No 8005736733 Elite Escort...
Gulbai Tekra * Cheap Call Girls In Ahmedabad Phone No 8005736733 Elite Escort...
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
TrafficWave Generator Will Instantly drive targeted and engaging traffic back...
TrafficWave Generator Will Instantly drive targeted and engaging traffic back...TrafficWave Generator Will Instantly drive targeted and engaging traffic back...
TrafficWave Generator Will Instantly drive targeted and engaging traffic back...
 
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In Hapur [ 7014168258 ] Call Me For Genuine Models We ...
 
Statistics notes ,it includes mean to index numbers
Statistics notes ,it includes mean to index numbersStatistics notes ,it includes mean to index numbers
Statistics notes ,it includes mean to index numbers
 
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In bhavnagar [ 7014168258 ] Call Me For Genuine Models...
 

Rbootcamp Day 1