SlideShare a Scribd company logo
Probability and Statistics
Lab no
1 Report
Nazli Temur - April ,2015
PROBABILITY&STATISTICS - NAZLI TEMUR 1
Introduction
This lab includes 5 main exercises that should be completed by the help of R Tool.
I achived to complete all the exercises except 5th one and this report includes a small
brief as per exercises along with R codes&outcomes.
Exercise 1
1.1 Generate 3 random vectors of size 10000 from different distributions .
• A uniform distribution between 0 and 1.
unif <-runif(10000,0.0,1.0)
• AnormaldistributionN(0,10)
norm<-rnorm(10000,0,sqrt(10))
• A exponential distribution of parameter λ = 2
rexp(10000,2)
a) What is the number of bins to be used to represent the corresponding
histograms according to Sturge’s rule?
Technically, Sturges’ rule is a number-of-bins rule rather than a bin-width rule.
> number_of_bin=log(10000,base=2)+1
> number_of_bin
[1] 14.28771
PROBABILITY&STATISTICS - NAZLI TEMUR 2
n=1+log
2
N
b) What is the bin size according to the Normal Reference rule?
For Uniform : ((24*(sd(unif)^2)*sqrt(pi))/10000)^(1/3)
0.0706738
For Normal : ((24*(sd(norm)^2)*sqrt(pi))/10000)^(1/3)
0.3470349
For Exponantial : ((24*(sd(exp)^2)*sqrt(pi))/10000)^(1/3)
0.1013582
c) What is the number of bins for each sample vector you have generated
according to the Normal Reference Rule ?


For Uniform :
> unif_n=NULL
> unif_max=length(unif)
> unif_min=0
> unif_n=(unif_max-unif_min)/unif_h
> unit_n [1] 141495.2
PROBABILITY&STATISTICS - NAZLI TEMUR 3
For Normal :
> norm_n=NULL //number
> norm_max=length(norm) // number of elements
> norm_max
[1] 10000
> norm_min=0
> norm_n=(norm_max-norm_min)/norm_h
> norm_n //number of elements divided by width of bin equally gives number of bin
[1] 28815.54
For Exponantial :
> exp_n=NULL
> exp_max=length(exp)
> exp_min=0
> exp_n=(exp_max-exp_min)/exp_h
> exp_n
[1] 98660.04
PROBABILITY&STATISTICS - NAZLI TEMUR 4
d)   Represent the histograms (R is using Sturge’s rule with improvements, hence
you can just use hist(X)) , cdfs and boxplots of each random vector.
hist(unif)
boxplot(unif)
plot.ecdf(unif)
hist(norm)
boxplot(norm)
plot.ecdf(norm)
hist(exp)
boxplot(exp)
plot.ecdf(exp)
PROBABILITY&STATISTICS - NAZLI TEMUR 5
1.2 For each random vector, compute the empirical variance and the empirical IQR
and plot those pairs in a graph.
Varvector=NULL
IQRvector=NULL
for(V in seq(1,1000,by=50))
{
+ x<-rnorm(1000,0,sqrt(V))
+ IQRvector=c(IQRvector,IQR(x))
+ Varvector=c(Varvector,var(x))
}
plot(IQRvector,Varvector)
PROBABILITY&STATISTICS - NAZLI TEMUR 6
Exercise 2
2. E[1/X] vs. 1/E[X]
Let us consider the family of uniform distributions in the interval [100 − v, 100 + v] for v > 0
2.1. What are the mean/variance of the family?
x=[a,b] //a =100-v b=100+v
E=[a+b]/2 //mean
V= [b-a]^2/12 //variance
E=(100+v-(100-v))/2 =100 it means the mean is not depend the variance of this uniform
distribution of interval.
V=((100+v) -(100-v))^2 /12 =(2v)^2/12 = v^2/3 which means, the variance is impacted
exponentially depend on the v value.
2.2. For each v ∈ {1, 2, . . . 30}, draw a random vector of size 1000, compute its empirical
variance v[X] as well as E[1/X] (simply mean(1/x) in R). Plot the pairs (E[1/X] − 1/E[X],
> for(v in seq(1,30,by=1))
+ { E=(100-v)+(100+v)/2
+ V=((100+v)-(100-v))^2/12
+ Vector_x<-rnorm(1000,E,V)
+ }
> for(v in seq(1,30,by=1))
+ { E=(100-v)+(100+v)/2
PROBABILITY&STATISTICS - NAZLI TEMUR 7
+ V=((100+v)-(100-v))^2/12
+ Vector_y<-rnorm(1000,1/E,V)
+ }
> plot(Vector_x,Vector_y)
Exercise 3
3. Dependence vs. similar distribution
3.1. Draw a random variable X and a random variable Y (both of size 10000) from the same
exponen- tial distribution of parameter λ = 2. Plot the qqplot and the scatterplot of X and Y .
The scatterplot is simply obtained by plot(X,Y). In the scatterplot, it might be useful to zoom
in where the mass is. You can adjust the x-axis (resp. y-axis) between the 10-th and 90-th
quantiles of X (resp. Y) with the command :
> X<-rexp(10000,2)
> Y<-rexp(10000,2)
> plot(X,Y,main="Scatter Plot")
> qqplot(X,Y,main="QQ Plot")
PROBABILITY&STATISTICS - NAZLI TEMUR 8
For Adjusment :
> min_x=quantile(X,0.1)
> max_x=quantile(X,0.9)
> min_y=quantile(Y,0.1)
> max_y=quantile(Y,0.9)
> X2<-X[X>min_x&X<max_x]
> Y2<-Y[Y>min_y&Y<max_y]
> plot(X2,Y2,main="Adjusted Scatter Plot")
> qqplot(X2,Y2,main="Adjusted QQ Plot")
>
3.2. Let Z = log(X) + 5. Plot the qqplot and the scatterplot of X and Z. Comment the results
PROBABILITY&STATISTICS - NAZLI TEMUR 9
The distribution of new vector Z follows the same distribution.We can see this via QQ Plot.
and If we try to draw a scatter plot it will look like line because there is a relation between Z
and X such that Z=a(x)+c , because a is a log of X vector the line will be convergent like
logarithm function.
>Z<-log(X)+5
> qqplot(Z,X,main=" QQ Plot X-Z”)
> Z2<-log(X2)+5
> qqplot(Z2,X2,main="Adjusted QQ Plot X2-Z2")
PROBABILITY&STATISTICS - NAZLI TEMUR 10
Exercise 4

4. Loss Events
4.1 Data Cleaning
myfile=scan("~/Desktop/LAB/147.32.125.132.loss.txt")
Read 3439 items
min=quantile(myfile,0.1)
max=quantile(myfile,0.9)
X<-myfile
X2<-X[X>min&X<max]
X2
boxplot(X,X2)
myfile2=scan("~/Desktop/LAB/195.204.26.25.loss.txt")
Read 16091 items
min2=quantile(myfile2,0.1)
max2=quantile(myfile2,0.9)
Y<-myfile2
Y2<-Y[Y>min&Y<max]
Y2
boxplot(Y,Y2)
PROBABILITY&STATISTICS - NAZLI TEMUR 11
4.2 Assessing the exponential hypothesis
4.2.1. For each of the 2 connections (the cleaned versions obtained from the previous
question), estimate the parameter of the exponential distribution that should model it.
First File
> myfile=scan("~/Desktop/LAB/147.32.125.132.loss.txt")
> Read 3439 items
> min=quantile(myfile,0.1)
> max=quantile(myfile,0.9)
> X<-myfile
> X2<-X[X>min&X<max]
> Mean_vector_x=NULL
> for(V in seq(1,1000,by=1)) {
+ x<-rnorm(1000,mean(X2),sqrt(var(X2)))
+ y<-sample(x,10)
+ Mean_vector_x<-c(Mean_vector_x,mean(y))
+ }
+ > hist(Mean_vector_x,main=“Sample Means")
+ > plot(Mean_vector_x,main=“Sample Means”)
Second File
PROBABILITY&STATISTICS - NAZLI TEMUR 12
Second File
> myfile2=scan("~/Desktop/LAB/195.204.26.25.loss.txt")
Read 16091 items
> min2=quantile(myfile2,0.1)
> max2=quantile(myfile2,0.9)
> Y<-myfile2
> Y2<-Y[Y>min&Y<max]
> Mean_vector_y=NULL
> for(V in seq(1,1000,by=1)) {
+ x<-rnorm(1000,mean(Y2),sqrt(var(Y2)))
+ y<-sample(x,10)
+ Mean_vector_y<-c(Mean_vector_y,mean(y))
+ }
+ > hist(Mean_vector_y,main=“Sample Means of Second File ")
+ > plot(Mean_vector_y,main=“Sample Means of Second File ")
PROBABILITY&STATISTICS - NAZLI TEMUR 13
4.2.2 For each of the 2 connections, generate a random vector following the exponential
distribution of size 1000, represent the qqplot of each vector and the corresponding trace.
Comment.
qqplot(Mean_vector_x,Mean_vector_y)
Exercise 5
5. Central limit theorem
• A uniform distribution between 0 and 1.

• AnormaldistributionN(0,10)

• A exponential distribution of parameter λ = 2
5.1 Report in a table the empirical (resp. theoretical) mean and standard deviation for each
random vector (resp. random variable).
5.2 Prove that we are in the conditions of the theorem for each vector.
PROBABILITY&STATISTICS - NAZLI TEMUR 14
5.3 Towards which distribution should
︎
(n)(Sn − #) should converge in each case.
5.4 Represent in a table with three columns (one for each original distribution) and two
rows corresponding to: 

• the histogram of the original distributions 

• S10
5.5 Report also the empirical mean and standard deviation for S10 for all cases. 

PROBABILITY&STATISTICS - NAZLI TEMUR 15

More Related Content

What's hot

Inequality #4
Inequality #4Inequality #4
Inequality #4
Arthur Charpentier
 
Explanation on Tensorflow example -Deep mnist for expert
Explanation on Tensorflow example -Deep mnist for expertExplanation on Tensorflow example -Deep mnist for expert
Explanation on Tensorflow example -Deep mnist for expert
홍배 김
 
Multiattribute utility copula
Multiattribute utility copulaMultiattribute utility copula
Multiattribute utility copula
Arthur Charpentier
 
Teaching Population Genetics with R
Teaching Population Genetics with RTeaching Population Genetics with R
Teaching Population Genetics with R
Bruce Cochrane
 
Lesson 26: The Fundamental Theorem of Calculus (slides)
Lesson 26: The Fundamental Theorem of Calculus (slides)Lesson 26: The Fundamental Theorem of Calculus (slides)
Lesson 26: The Fundamental Theorem of Calculus (slides)
Matthew Leingang
 
Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...
Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...
Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...
AIST
 
Efficient Analysis of high-dimensional data in tensor formats
Efficient Analysis of high-dimensional data in tensor formatsEfficient Analysis of high-dimensional data in tensor formats
Efficient Analysis of high-dimensional data in tensor formats
Alexander Litvinenko
 
Statistical inference for (Python) Data Analysis. An introduction.
Statistical inference for (Python) Data Analysis. An introduction.Statistical inference for (Python) Data Analysis. An introduction.
Statistical inference for (Python) Data Analysis. An introduction.
Piotr Milanowski
 
Normal lecture
Normal lectureNormal lecture
Normal lecture
jillmitchell8778
 
Newton's forward difference
Newton's forward differenceNewton's forward difference
Newton's forward difference
Raj Parekh
 
alt klausur
alt klausuralt klausur
alt klausur
zhongchengdai
 
Newton raphsonmethod presentation
Newton raphsonmethod presentationNewton raphsonmethod presentation
Newton raphsonmethod presentation
Abdullah Moin
 
Probability cheatsheet
Probability cheatsheetProbability cheatsheet
Probability cheatsheet
Suvrat Mishra
 
Newton's Forward/Backward Difference Interpolation
Newton's Forward/Backward  Difference InterpolationNewton's Forward/Backward  Difference Interpolation
Newton's Forward/Backward Difference Interpolation
VARUN KUMAR
 
TensorFlow Tutorial
TensorFlow TutorialTensorFlow Tutorial
TensorFlow Tutorial
NamHyuk Ahn
 
Brief Introduction About Topological Interference Management (TIM)
Brief Introduction About Topological Interference Management (TIM)Brief Introduction About Topological Interference Management (TIM)
Brief Introduction About Topological Interference Management (TIM)
Pei-Che Chang
 
Slides ensae 8
Slides ensae 8Slides ensae 8
Slides ensae 8
Arthur Charpentier
 
Neural networks using tensor flow in amazon deep learning server
Neural networks using tensor flow in amazon deep learning serverNeural networks using tensor flow in amazon deep learning server
Neural networks using tensor flow in amazon deep learning server
Ramco Institute of Technology, Rajapalayam, Tamilnadu, India
 

What's hot (20)

Inequality #4
Inequality #4Inequality #4
Inequality #4
 
Explanation on Tensorflow example -Deep mnist for expert
Explanation on Tensorflow example -Deep mnist for expertExplanation on Tensorflow example -Deep mnist for expert
Explanation on Tensorflow example -Deep mnist for expert
 
Multiattribute utility copula
Multiattribute utility copulaMultiattribute utility copula
Multiattribute utility copula
 
Teaching Population Genetics with R
Teaching Population Genetics with RTeaching Population Genetics with R
Teaching Population Genetics with R
 
Lesson 26: The Fundamental Theorem of Calculus (slides)
Lesson 26: The Fundamental Theorem of Calculus (slides)Lesson 26: The Fundamental Theorem of Calculus (slides)
Lesson 26: The Fundamental Theorem of Calculus (slides)
 
Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...
Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...
Gracheva Inessa - Fast Global Image Denoising Algorithm on the Basis of Nonst...
 
Efficient Analysis of high-dimensional data in tensor formats
Efficient Analysis of high-dimensional data in tensor formatsEfficient Analysis of high-dimensional data in tensor formats
Efficient Analysis of high-dimensional data in tensor formats
 
Slides ineq-4
Slides ineq-4Slides ineq-4
Slides ineq-4
 
Statistical inference for (Python) Data Analysis. An introduction.
Statistical inference for (Python) Data Analysis. An introduction.Statistical inference for (Python) Data Analysis. An introduction.
Statistical inference for (Python) Data Analysis. An introduction.
 
Normal lecture
Normal lectureNormal lecture
Normal lecture
 
Newton's forward difference
Newton's forward differenceNewton's forward difference
Newton's forward difference
 
Numerical methods generating polynomial
Numerical methods generating polynomialNumerical methods generating polynomial
Numerical methods generating polynomial
 
alt klausur
alt klausuralt klausur
alt klausur
 
Newton raphsonmethod presentation
Newton raphsonmethod presentationNewton raphsonmethod presentation
Newton raphsonmethod presentation
 
Probability cheatsheet
Probability cheatsheetProbability cheatsheet
Probability cheatsheet
 
Newton's Forward/Backward Difference Interpolation
Newton's Forward/Backward  Difference InterpolationNewton's Forward/Backward  Difference Interpolation
Newton's Forward/Backward Difference Interpolation
 
TensorFlow Tutorial
TensorFlow TutorialTensorFlow Tutorial
TensorFlow Tutorial
 
Brief Introduction About Topological Interference Management (TIM)
Brief Introduction About Topological Interference Management (TIM)Brief Introduction About Topological Interference Management (TIM)
Brief Introduction About Topological Interference Management (TIM)
 
Slides ensae 8
Slides ensae 8Slides ensae 8
Slides ensae 8
 
Neural networks using tensor flow in amazon deep learning server
Neural networks using tensor flow in amazon deep learning serverNeural networks using tensor flow in amazon deep learning server
Neural networks using tensor flow in amazon deep learning server
 

Similar to Using R Tool for Probability and Statistics

Hands-On Algorithms for Predictive Modeling
Hands-On Algorithms for Predictive ModelingHands-On Algorithms for Predictive Modeling
Hands-On Algorithms for Predictive Modeling
Arthur Charpentier
 
BUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdfBUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdf
karthikaparthasarath
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theorem
Wathna
 
Itroroduction to R language
Itroroduction to R languageItroroduction to R language
Itroroduction to R language
chhabria-nitesh
 
TENSOR DECOMPOSITION WITH PYTHON
TENSOR DECOMPOSITION WITH PYTHONTENSOR DECOMPOSITION WITH PYTHON
TENSOR DECOMPOSITION WITH PYTHON
André Panisson
 
Seminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mmeSeminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mme
Vyacheslav Arbuzov
 
Dsp Lab Record
Dsp Lab RecordDsp Lab Record
Dsp Lab Record
Aleena Varghese
 
Seminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov Vyacheslav
Seminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov VyacheslavSeminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov Vyacheslav
Seminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov VyacheslavVyacheslav Arbuzov
 
How to use SVM for data classification
How to use SVM for data classificationHow to use SVM for data classification
How to use SVM for data classification
Yiwei Chen
 
Families of Triangular Norm Based Kernel Function and Its Application to Kern...
Families of Triangular Norm Based Kernel Function and Its Application to Kern...Families of Triangular Norm Based Kernel Function and Its Application to Kern...
Families of Triangular Norm Based Kernel Function and Its Application to Kern...
Okamoto Laboratory, The University of Electro-Communications
 
Introduction to R programming
Introduction to R programmingIntroduction to R programming
Introduction to R programming
Alberto Labarga
 
fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920
fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920
fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920Karl Rudeen
 
Multiclass Logistic Regression: Derivation and Apache Spark Examples
Multiclass Logistic Regression: Derivation and Apache Spark ExamplesMulticlass Logistic Regression: Derivation and Apache Spark Examples
Multiclass Logistic Regression: Derivation and Apache Spark Examples
Marjan Sterjev
 
MVPA with SpaceNet: sparse structured priors
MVPA with SpaceNet: sparse structured priorsMVPA with SpaceNet: sparse structured priors
MVPA with SpaceNet: sparse structured priors
Elvis DOHMATOB
 
WEEK-1.pdf
WEEK-1.pdfWEEK-1.pdf
WEEK-1.pdf
YASHWANTHMK4
 
DSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptxDSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptx
HamedNassar5
 

Similar to Using R Tool for Probability and Statistics (20)

Hands-On Algorithms for Predictive Modeling
Hands-On Algorithms for Predictive ModelingHands-On Algorithms for Predictive Modeling
Hands-On Algorithms for Predictive Modeling
 
BUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdfBUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdf
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theorem
 
Itroroduction to R language
Itroroduction to R languageItroroduction to R language
Itroroduction to R language
 
R Language Introduction
R Language IntroductionR Language Introduction
R Language Introduction
 
TENSOR DECOMPOSITION WITH PYTHON
TENSOR DECOMPOSITION WITH PYTHONTENSOR DECOMPOSITION WITH PYTHON
TENSOR DECOMPOSITION WITH PYTHON
 
Seminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mmeSeminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mme
 
Dsp Lab Record
Dsp Lab RecordDsp Lab Record
Dsp Lab Record
 
Seminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov Vyacheslav
Seminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov VyacheslavSeminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov Vyacheslav
Seminar PSU 09.04.2013 - 10.04.2013 MiFIT, Arbuzov Vyacheslav
 
How to use SVM for data classification
How to use SVM for data classificationHow to use SVM for data classification
How to use SVM for data classification
 
Families of Triangular Norm Based Kernel Function and Its Application to Kern...
Families of Triangular Norm Based Kernel Function and Its Application to Kern...Families of Triangular Norm Based Kernel Function and Its Application to Kern...
Families of Triangular Norm Based Kernel Function and Its Application to Kern...
 
residue
residueresidue
residue
 
Introduction to R programming
Introduction to R programmingIntroduction to R programming
Introduction to R programming
 
fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920
fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920
fb69b412-97cb-4e8d-8a28-574c09557d35-160618025920
 
Project Paper
Project PaperProject Paper
Project Paper
 
MLE Example
MLE ExampleMLE Example
MLE Example
 
Multiclass Logistic Regression: Derivation and Apache Spark Examples
Multiclass Logistic Regression: Derivation and Apache Spark ExamplesMulticlass Logistic Regression: Derivation and Apache Spark Examples
Multiclass Logistic Regression: Derivation and Apache Spark Examples
 
MVPA with SpaceNet: sparse structured priors
MVPA with SpaceNet: sparse structured priorsMVPA with SpaceNet: sparse structured priors
MVPA with SpaceNet: sparse structured priors
 
WEEK-1.pdf
WEEK-1.pdfWEEK-1.pdf
WEEK-1.pdf
 
DSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptxDSP_DiscSignals_LinearS_150417.pptx
DSP_DiscSignals_LinearS_150417.pptx
 

More from nazlitemu

Ubiquitous Computer Vision in IoT
Ubiquitous Computer Vision in IoTUbiquitous Computer Vision in IoT
Ubiquitous Computer Vision in IoT
nazlitemu
 
Brave machine's tomorrow nazli temur
Brave machine's tomorrow nazli temurBrave machine's tomorrow nazli temur
Brave machine's tomorrow nazli temur
nazlitemu
 
Computer vision in public
Computer vision in publicComputer vision in public
Computer vision in public
nazlitemu
 
Blockcircus Hackathon --> The Mesh Team
Blockcircus Hackathon --> The Mesh TeamBlockcircus Hackathon --> The Mesh Team
Blockcircus Hackathon --> The Mesh Team
nazlitemu
 
Future with Machine Vision
Future with Machine VisionFuture with Machine Vision
Future with Machine Vision
nazlitemu
 
Activity Recognition Using RGB-Depth Sensors-Final report
Activity Recognition Using RGB-Depth Sensors-Final reportActivity Recognition Using RGB-Depth Sensors-Final report
Activity Recognition Using RGB-Depth Sensors-Final report
nazlitemu
 
Activity Recognition using RGBD
Activity Recognition using RGBDActivity Recognition using RGBD
Activity Recognition using RGBD
nazlitemu
 
Language Design for Activity Recognition
Language Design for Activity RecognitionLanguage Design for Activity Recognition
Language Design for Activity Recognition
nazlitemu
 
Recursive IIR Implementation for Edge Detection
Recursive IIR Implementation for Edge DetectionRecursive IIR Implementation for Edge Detection
Recursive IIR Implementation for Edge Detection
nazlitemu
 
Representing Graphs by Touching Domains
Representing Graphs by Touching DomainsRepresenting Graphs by Touching Domains
Representing Graphs by Touching Domains
nazlitemu
 
LexBFS-Minimal VertexSeparators Final Presentation
LexBFS-Minimal VertexSeparators Final PresentationLexBFS-Minimal VertexSeparators Final Presentation
LexBFS-Minimal VertexSeparators Final Presentation
nazlitemu
 
Antescofo Syncronous Languages for Musical Composition
Antescofo Syncronous Languages for Musical Composition Antescofo Syncronous Languages for Musical Composition
Antescofo Syncronous Languages for Musical Composition
nazlitemu
 
All Perfect Elimination Orderings & Minimal Vertex Seperators
All Perfect Elimination Orderings & Minimal Vertex SeperatorsAll Perfect Elimination Orderings & Minimal Vertex Seperators
All Perfect Elimination Orderings & Minimal Vertex Seperators
nazlitemu
 
LEXBFS on Chordal Graphs with more Example
LEXBFS on Chordal Graphs with more ExampleLEXBFS on Chordal Graphs with more Example
LEXBFS on Chordal Graphs with more Example
nazlitemu
 
LEXBFS on Chordal Graphs
LEXBFS on Chordal GraphsLEXBFS on Chordal Graphs
LEXBFS on Chordal Graphs
nazlitemu
 
BFS & Interval Graph Introduction
BFS & Interval Graph IntroductionBFS & Interval Graph Introduction
BFS & Interval Graph Introduction
nazlitemu
 
Esterel as A Realtime System Programming Language
Esterel as A Realtime System Programming Language Esterel as A Realtime System Programming Language
Esterel as A Realtime System Programming Language
nazlitemu
 
Start up Interviews + Food Market Shift Research
Start up Interviews + Food Market Shift Research Start up Interviews + Food Market Shift Research
Start up Interviews + Food Market Shift Research
nazlitemu
 
Foodhub - A Research on Food Market Shift in France
 Foodhub - A Research on Food Market Shift in France Foodhub - A Research on Food Market Shift in France
Foodhub - A Research on Food Market Shift in France
nazlitemu
 
Measurement Strategy for Software Companies
Measurement Strategy for Software CompaniesMeasurement Strategy for Software Companies
Measurement Strategy for Software Companies
nazlitemu
 

More from nazlitemu (20)

Ubiquitous Computer Vision in IoT
Ubiquitous Computer Vision in IoTUbiquitous Computer Vision in IoT
Ubiquitous Computer Vision in IoT
 
Brave machine's tomorrow nazli temur
Brave machine's tomorrow nazli temurBrave machine's tomorrow nazli temur
Brave machine's tomorrow nazli temur
 
Computer vision in public
Computer vision in publicComputer vision in public
Computer vision in public
 
Blockcircus Hackathon --> The Mesh Team
Blockcircus Hackathon --> The Mesh TeamBlockcircus Hackathon --> The Mesh Team
Blockcircus Hackathon --> The Mesh Team
 
Future with Machine Vision
Future with Machine VisionFuture with Machine Vision
Future with Machine Vision
 
Activity Recognition Using RGB-Depth Sensors-Final report
Activity Recognition Using RGB-Depth Sensors-Final reportActivity Recognition Using RGB-Depth Sensors-Final report
Activity Recognition Using RGB-Depth Sensors-Final report
 
Activity Recognition using RGBD
Activity Recognition using RGBDActivity Recognition using RGBD
Activity Recognition using RGBD
 
Language Design for Activity Recognition
Language Design for Activity RecognitionLanguage Design for Activity Recognition
Language Design for Activity Recognition
 
Recursive IIR Implementation for Edge Detection
Recursive IIR Implementation for Edge DetectionRecursive IIR Implementation for Edge Detection
Recursive IIR Implementation for Edge Detection
 
Representing Graphs by Touching Domains
Representing Graphs by Touching DomainsRepresenting Graphs by Touching Domains
Representing Graphs by Touching Domains
 
LexBFS-Minimal VertexSeparators Final Presentation
LexBFS-Minimal VertexSeparators Final PresentationLexBFS-Minimal VertexSeparators Final Presentation
LexBFS-Minimal VertexSeparators Final Presentation
 
Antescofo Syncronous Languages for Musical Composition
Antescofo Syncronous Languages for Musical Composition Antescofo Syncronous Languages for Musical Composition
Antescofo Syncronous Languages for Musical Composition
 
All Perfect Elimination Orderings & Minimal Vertex Seperators
All Perfect Elimination Orderings & Minimal Vertex SeperatorsAll Perfect Elimination Orderings & Minimal Vertex Seperators
All Perfect Elimination Orderings & Minimal Vertex Seperators
 
LEXBFS on Chordal Graphs with more Example
LEXBFS on Chordal Graphs with more ExampleLEXBFS on Chordal Graphs with more Example
LEXBFS on Chordal Graphs with more Example
 
LEXBFS on Chordal Graphs
LEXBFS on Chordal GraphsLEXBFS on Chordal Graphs
LEXBFS on Chordal Graphs
 
BFS & Interval Graph Introduction
BFS & Interval Graph IntroductionBFS & Interval Graph Introduction
BFS & Interval Graph Introduction
 
Esterel as A Realtime System Programming Language
Esterel as A Realtime System Programming Language Esterel as A Realtime System Programming Language
Esterel as A Realtime System Programming Language
 
Start up Interviews + Food Market Shift Research
Start up Interviews + Food Market Shift Research Start up Interviews + Food Market Shift Research
Start up Interviews + Food Market Shift Research
 
Foodhub - A Research on Food Market Shift in France
 Foodhub - A Research on Food Market Shift in France Foodhub - A Research on Food Market Shift in France
Foodhub - A Research on Food Market Shift in France
 
Measurement Strategy for Software Companies
Measurement Strategy for Software CompaniesMeasurement Strategy for Software Companies
Measurement Strategy for Software Companies
 

Recently uploaded

space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 

Recently uploaded (20)

space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 

Using R Tool for Probability and Statistics

  • 1. Probability and Statistics Lab no 1 Report Nazli Temur - April ,2015 PROBABILITY&STATISTICS - NAZLI TEMUR 1
  • 2. Introduction This lab includes 5 main exercises that should be completed by the help of R Tool. I achived to complete all the exercises except 5th one and this report includes a small brief as per exercises along with R codes&outcomes. Exercise 1 1.1 Generate 3 random vectors of size 10000 from different distributions . • A uniform distribution between 0 and 1. unif <-runif(10000,0.0,1.0) • AnormaldistributionN(0,10) norm<-rnorm(10000,0,sqrt(10)) • A exponential distribution of parameter λ = 2 rexp(10000,2) a) What is the number of bins to be used to represent the corresponding histograms according to Sturge’s rule? Technically, Sturges’ rule is a number-of-bins rule rather than a bin-width rule. > number_of_bin=log(10000,base=2)+1 > number_of_bin [1] 14.28771 PROBABILITY&STATISTICS - NAZLI TEMUR 2 n=1+log 2 N
  • 3. b) What is the bin size according to the Normal Reference rule? For Uniform : ((24*(sd(unif)^2)*sqrt(pi))/10000)^(1/3) 0.0706738 For Normal : ((24*(sd(norm)^2)*sqrt(pi))/10000)^(1/3) 0.3470349 For Exponantial : ((24*(sd(exp)^2)*sqrt(pi))/10000)^(1/3) 0.1013582 c) What is the number of bins for each sample vector you have generated according to the Normal Reference Rule ? 
 For Uniform : > unif_n=NULL > unif_max=length(unif) > unif_min=0 > unif_n=(unif_max-unif_min)/unif_h > unit_n [1] 141495.2 PROBABILITY&STATISTICS - NAZLI TEMUR 3
  • 4. For Normal : > norm_n=NULL //number > norm_max=length(norm) // number of elements > norm_max [1] 10000 > norm_min=0 > norm_n=(norm_max-norm_min)/norm_h > norm_n //number of elements divided by width of bin equally gives number of bin [1] 28815.54 For Exponantial : > exp_n=NULL > exp_max=length(exp) > exp_min=0 > exp_n=(exp_max-exp_min)/exp_h > exp_n [1] 98660.04 PROBABILITY&STATISTICS - NAZLI TEMUR 4
  • 5. d)   Represent the histograms (R is using Sturge’s rule with improvements, hence you can just use hist(X)) , cdfs and boxplots of each random vector. hist(unif) boxplot(unif) plot.ecdf(unif) hist(norm) boxplot(norm) plot.ecdf(norm) hist(exp) boxplot(exp) plot.ecdf(exp) PROBABILITY&STATISTICS - NAZLI TEMUR 5
  • 6. 1.2 For each random vector, compute the empirical variance and the empirical IQR and plot those pairs in a graph. Varvector=NULL IQRvector=NULL for(V in seq(1,1000,by=50)) { + x<-rnorm(1000,0,sqrt(V)) + IQRvector=c(IQRvector,IQR(x)) + Varvector=c(Varvector,var(x)) } plot(IQRvector,Varvector) PROBABILITY&STATISTICS - NAZLI TEMUR 6
  • 7. Exercise 2 2. E[1/X] vs. 1/E[X] Let us consider the family of uniform distributions in the interval [100 − v, 100 + v] for v > 0 2.1. What are the mean/variance of the family? x=[a,b] //a =100-v b=100+v E=[a+b]/2 //mean V= [b-a]^2/12 //variance E=(100+v-(100-v))/2 =100 it means the mean is not depend the variance of this uniform distribution of interval. V=((100+v) -(100-v))^2 /12 =(2v)^2/12 = v^2/3 which means, the variance is impacted exponentially depend on the v value. 2.2. For each v ∈ {1, 2, . . . 30}, draw a random vector of size 1000, compute its empirical variance v[X] as well as E[1/X] (simply mean(1/x) in R). Plot the pairs (E[1/X] − 1/E[X], > for(v in seq(1,30,by=1)) + { E=(100-v)+(100+v)/2 + V=((100+v)-(100-v))^2/12 + Vector_x<-rnorm(1000,E,V) + } > for(v in seq(1,30,by=1)) + { E=(100-v)+(100+v)/2 PROBABILITY&STATISTICS - NAZLI TEMUR 7
  • 8. + V=((100+v)-(100-v))^2/12 + Vector_y<-rnorm(1000,1/E,V) + } > plot(Vector_x,Vector_y) Exercise 3 3. Dependence vs. similar distribution 3.1. Draw a random variable X and a random variable Y (both of size 10000) from the same exponen- tial distribution of parameter λ = 2. Plot the qqplot and the scatterplot of X and Y . The scatterplot is simply obtained by plot(X,Y). In the scatterplot, it might be useful to zoom in where the mass is. You can adjust the x-axis (resp. y-axis) between the 10-th and 90-th quantiles of X (resp. Y) with the command : > X<-rexp(10000,2) > Y<-rexp(10000,2) > plot(X,Y,main="Scatter Plot") > qqplot(X,Y,main="QQ Plot") PROBABILITY&STATISTICS - NAZLI TEMUR 8
  • 9. For Adjusment : > min_x=quantile(X,0.1) > max_x=quantile(X,0.9) > min_y=quantile(Y,0.1) > max_y=quantile(Y,0.9) > X2<-X[X>min_x&X<max_x] > Y2<-Y[Y>min_y&Y<max_y] > plot(X2,Y2,main="Adjusted Scatter Plot") > qqplot(X2,Y2,main="Adjusted QQ Plot") > 3.2. Let Z = log(X) + 5. Plot the qqplot and the scatterplot of X and Z. Comment the results PROBABILITY&STATISTICS - NAZLI TEMUR 9
  • 10. The distribution of new vector Z follows the same distribution.We can see this via QQ Plot. and If we try to draw a scatter plot it will look like line because there is a relation between Z and X such that Z=a(x)+c , because a is a log of X vector the line will be convergent like logarithm function. >Z<-log(X)+5 > qqplot(Z,X,main=" QQ Plot X-Z”) > Z2<-log(X2)+5 > qqplot(Z2,X2,main="Adjusted QQ Plot X2-Z2") PROBABILITY&STATISTICS - NAZLI TEMUR 10
  • 11. Exercise 4
 4. Loss Events 4.1 Data Cleaning myfile=scan("~/Desktop/LAB/147.32.125.132.loss.txt") Read 3439 items min=quantile(myfile,0.1) max=quantile(myfile,0.9) X<-myfile X2<-X[X>min&X<max] X2 boxplot(X,X2) myfile2=scan("~/Desktop/LAB/195.204.26.25.loss.txt") Read 16091 items min2=quantile(myfile2,0.1) max2=quantile(myfile2,0.9) Y<-myfile2 Y2<-Y[Y>min&Y<max] Y2 boxplot(Y,Y2) PROBABILITY&STATISTICS - NAZLI TEMUR 11
  • 12. 4.2 Assessing the exponential hypothesis 4.2.1. For each of the 2 connections (the cleaned versions obtained from the previous question), estimate the parameter of the exponential distribution that should model it. First File > myfile=scan("~/Desktop/LAB/147.32.125.132.loss.txt") > Read 3439 items > min=quantile(myfile,0.1) > max=quantile(myfile,0.9) > X<-myfile > X2<-X[X>min&X<max] > Mean_vector_x=NULL > for(V in seq(1,1000,by=1)) { + x<-rnorm(1000,mean(X2),sqrt(var(X2))) + y<-sample(x,10) + Mean_vector_x<-c(Mean_vector_x,mean(y)) + } + > hist(Mean_vector_x,main=“Sample Means") + > plot(Mean_vector_x,main=“Sample Means”) Second File PROBABILITY&STATISTICS - NAZLI TEMUR 12
  • 13. Second File > myfile2=scan("~/Desktop/LAB/195.204.26.25.loss.txt") Read 16091 items > min2=quantile(myfile2,0.1) > max2=quantile(myfile2,0.9) > Y<-myfile2 > Y2<-Y[Y>min&Y<max] > Mean_vector_y=NULL > for(V in seq(1,1000,by=1)) { + x<-rnorm(1000,mean(Y2),sqrt(var(Y2))) + y<-sample(x,10) + Mean_vector_y<-c(Mean_vector_y,mean(y)) + } + > hist(Mean_vector_y,main=“Sample Means of Second File ") + > plot(Mean_vector_y,main=“Sample Means of Second File ") PROBABILITY&STATISTICS - NAZLI TEMUR 13
  • 14. 4.2.2 For each of the 2 connections, generate a random vector following the exponential distribution of size 1000, represent the qqplot of each vector and the corresponding trace. Comment. qqplot(Mean_vector_x,Mean_vector_y) Exercise 5 5. Central limit theorem • A uniform distribution between 0 and 1.
 • AnormaldistributionN(0,10)
 • A exponential distribution of parameter λ = 2 5.1 Report in a table the empirical (resp. theoretical) mean and standard deviation for each random vector (resp. random variable). 5.2 Prove that we are in the conditions of the theorem for each vector. PROBABILITY&STATISTICS - NAZLI TEMUR 14
  • 15. 5.3 Towards which distribution should ︎ (n)(Sn − #) should converge in each case. 5.4 Represent in a table with three columns (one for each original distribution) and two rows corresponding to: 
 • the histogram of the original distributions 
 • S10 5.5 Report also the empirical mean and standard deviation for S10 for all cases. 
 PROBABILITY&STATISTICS - NAZLI TEMUR 15