SlideShare a Scribd company logo
1 of 4
SOLUCIÓN COMPENDIO 4
Taller de Aplicación:
Basándose en los anteriores procedimientos construir intervalos y gráficos para los siguientes datos que
corresponden a la edad de 50 microempresarios de la ciudad de Villavicencio
48 39 35 29 30
38 42 37 40 38
22 37 34 55 48
35 50 36 48 42
53 35 38 38 35
40 50 23 32 45
35 42 59 28 38
34 38 44 46 23
40 48 34 30 35
43 32 36 32 46
Códigos en R Resultados
Ingresando datos:
datos=c(48,38,22,35,53,40
,35,34,40,43,39,42,37,50,
35,50,42,38,48,32,35,37,3
4,36,38,23,59,44,34,36,29
,40,55,48,38,32,28,46,30,
32,30,38,48,42,35,45,38,2
3,35,46)
[1] 48 38 22 35 53 40 35 34 40 43
39 42 37 50 35 50 42 38 48 32 35
37 34 36 38
[26] 23 59 44 34 36 29 40 55 48 38
32 28 46 30 32 30 38 48 42 35 45
38 23 35 46
Calculando el rango:
Rang= max(datos)-
min(datos)
> Rang
[1] 37
Calculando el número de intervalos
m=round(1+3.3*log10(50))
La función Round, redondea al
entero más cercano.
> m
[1] 7
Longitud del intervalo:
C=Rang/m
> C
[1] 5.285714
Este resultado se redondea al entero más
cercano, por exceso en este caso 6.
Redefinir=42-37=5
2 Xmin-2=20
Xmax +3=62
Ahora le damos forma a los
intervalos
intervalos=cut(datos,
breaks=c(20,26,32,38,44,5
0,56,62))
Intervalos
[1] (44,50] (32,38] (20,26]
(32,38] (50,56] (38,44] (32,38]
(32,38] (38,44]
[10] (38,44] (38,44] (38,44]
(32,38] (44,50] (32,38] (44,50]
(38,44] (32,38]
[19] (44,50] (26,32] (32,38]
(32,38] (32,38] (32,38] (32,38]
(20,26] (56,62]
[28] (38,44] (32,38] (32,38]
(26,32] (38,44] (50,56] (44,50]
(32,38] (26,32]
[37] (26,32] (44,50] (26,32]
(26,32] (26,32] (32,38] (44,50]
(38,44] (32,38]
[46] (44,50] (32,38] (20,26]
(32,38] (44,50]
Levels: (20,26] (26,32] (32,38]
(38,44] (44,50] (50,56] (56,62]
Ahora se forma las frecuencias
absolutas
f=table(intervalos)
f
intervalos
(20,26] (26,32] (32,38] (38,44]
(44,50] (50,56] (56,62]
3 7 19 9
9 2 1
Calculando el número de
elementos de la muestra
n=sum(f)
> n
[1] 50
Construimos las frecuencias
absolutas
h
h=f/n
h
intervalos
(20,26] (26,32] (32,38] (38,44]
(44,50] (50,56] (56,62]
0.06 0.14 0.38 0.18
0.18 0.04 0.02
Construyendo frecuencias
absolutas acumuladas
F=cumsum(f)
F
(20,26] (26,32] (32,38] (38,44]
(44,50] (50,56] (56,62]
3 10 29 38
47 49 50
Construyendo las frecuencias
relativas acumuladas.
H=cumsum(h)
H
(20,26] (26,32] (32,38] (38,44]
(44,50] (50,56] (56,62]
0.06 0.20 0.58 0.76
0.94 0.98 1.00
Ahora se arman la tabla de
frecuencias
cbind(f,h,F,H)
f h F H
(20,26] 3 0.06 3 0.06
(26,32] 7 0.14 10 0.20
(32,38] 19 0.38 29 0.58
(38,44] 9 0.18 38 0.76
(44,50] 9 0.18 47 0.94
(50,56] 2 0.04 49 0.98
(56,62] 1 0.02 50 1.00
Construyendo marcas de clase
LimSup=c(26,32,38,44,50,56,62)
LimInf=c(20,26,32,38,44,50,56)
Marca= (LimSup+LimInf)/2
Marca
[1] 23 29 35 41 47 53 59
La tabla con las frecuencias y la
marca de clase
f Marca h F H
(20,26] 3 23 0.06 3 0.06
(26,32] 7 29 0.14 10 0.20
tabla=cbind(f,Marca,h,F,H) (32,38] 19 35 0.38 29 0.58
(38,44] 9 41 0.18 38 0.76
(44,50] 9 47 0.18 47 0.94
(50,56] 2 53 0.04 49 0.98
(56,62] 1 59 0.02 50 1.00
Gráfico de un histograma
hist(datos,
breaks=c(20,26,32,38,44,50,56,
62), col = "green", border =
1, main =
"MICROEMPRESARIOS",xlab =
"EDAD" , ylab = "FRECUENCIA")

More Related Content

What's hot

Graphics6 bresenham circlesandpolygons
Graphics6 bresenham circlesandpolygonsGraphics6 bresenham circlesandpolygons
Graphics6 bresenham circlesandpolygonsKetan Jani
 
Maths Activities (Fun With Numbers)
Maths Activities (Fun With Numbers)Maths Activities (Fun With Numbers)
Maths Activities (Fun With Numbers)ShubhyaLohani
 
Linear Programming Project
Linear Programming ProjectLinear Programming Project
Linear Programming ProjectChawal Ukesh
 
Teoria y problemas de conteo de segmentos cs01 ccesa007
Teoria y problemas de conteo de segmentos  cs01  ccesa007Teoria y problemas de conteo de segmentos  cs01  ccesa007
Teoria y problemas de conteo de segmentos cs01 ccesa007Demetrio Ccesa Rayme
 
Teoría y problemas de conteo de segmentos CS11 ccesa007
Teoría y problemas de conteo de segmentos  CS11  ccesa007Teoría y problemas de conteo de segmentos  CS11  ccesa007
Teoría y problemas de conteo de segmentos CS11 ccesa007Demetrio Ccesa Rayme
 
Mathematics and sports
Mathematics and sportsMathematics and sports
Mathematics and sportsMarina Njers
 
Open GL 09 scan conversion
Open GL 09 scan conversionOpen GL 09 scan conversion
Open GL 09 scan conversionRoziq Bahtiar
 
Graphing lines using slopeintercept
Graphing lines using slopeinterceptGraphing lines using slopeintercept
Graphing lines using slopeinterceptluna dionson
 
ws2 Linear Equation
ws2 Linear Equationws2 Linear Equation
ws2 Linear Equationadi nurhadi
 
Completing the square v002
Completing the square v002Completing the square v002
Completing the square v002cecilsie
 
Chapter 1 test 2012- 2013
Chapter 1 test 2012- 2013Chapter 1 test 2012- 2013
Chapter 1 test 2012- 2013eadeane
 
Box multiplication copy
Box multiplication   copyBox multiplication   copy
Box multiplication copyCLakshmiPriya
 
7th math(c2) -l4
7th math(c2) -l47th math(c2) -l4
7th math(c2) -l4jdurst65
 
0580 s10 qp_22
0580 s10 qp_220580 s10 qp_22
0580 s10 qp_22King Ali
 

What's hot (18)

Graphics6 bresenham circlesandpolygons
Graphics6 bresenham circlesandpolygonsGraphics6 bresenham circlesandpolygons
Graphics6 bresenham circlesandpolygons
 
Maths Activities (Fun With Numbers)
Maths Activities (Fun With Numbers)Maths Activities (Fun With Numbers)
Maths Activities (Fun With Numbers)
 
Linear Programming Project
Linear Programming ProjectLinear Programming Project
Linear Programming Project
 
Teoria y problemas de conteo de segmentos cs01 ccesa007
Teoria y problemas de conteo de segmentos  cs01  ccesa007Teoria y problemas de conteo de segmentos  cs01  ccesa007
Teoria y problemas de conteo de segmentos cs01 ccesa007
 
Teoría y problemas de conteo de segmentos CS11 ccesa007
Teoría y problemas de conteo de segmentos  CS11  ccesa007Teoría y problemas de conteo de segmentos  CS11  ccesa007
Teoría y problemas de conteo de segmentos CS11 ccesa007
 
Mathematics and sports
Mathematics and sportsMathematics and sports
Mathematics and sports
 
Math hssc-ii-a1
Math hssc-ii-a1Math hssc-ii-a1
Math hssc-ii-a1
 
Open GL 09 scan conversion
Open GL 09 scan conversionOpen GL 09 scan conversion
Open GL 09 scan conversion
 
Bresenham algorithm
Bresenham algorithmBresenham algorithm
Bresenham algorithm
 
Maths test
Maths testMaths test
Maths test
 
Linear equation 2 2
Linear equation 2 2Linear equation 2 2
Linear equation 2 2
 
Graphing lines using slopeintercept
Graphing lines using slopeinterceptGraphing lines using slopeintercept
Graphing lines using slopeintercept
 
ws2 Linear Equation
ws2 Linear Equationws2 Linear Equation
ws2 Linear Equation
 
Completing the square v002
Completing the square v002Completing the square v002
Completing the square v002
 
Chapter 1 test 2012- 2013
Chapter 1 test 2012- 2013Chapter 1 test 2012- 2013
Chapter 1 test 2012- 2013
 
Box multiplication copy
Box multiplication   copyBox multiplication   copy
Box multiplication copy
 
7th math(c2) -l4
7th math(c2) -l47th math(c2) -l4
7th math(c2) -l4
 
0580 s10 qp_22
0580 s10 qp_220580 s10 qp_22
0580 s10 qp_22
 

Viewers also liked

Viewers also liked (20)

Curr518 ca
Curr518 caCurr518 ca
Curr518 ca
 
KOBRA 240 C4 TURBO
KOBRA 240 C4 TURBOKOBRA 240 C4 TURBO
KOBRA 240 C4 TURBO
 
Arroz negro
Arroz negroArroz negro
Arroz negro
 
Origen del chocolate en la época Precolombina.
Origen del chocolate en la época Precolombina.Origen del chocolate en la época Precolombina.
Origen del chocolate en la época Precolombina.
 
Amali syarikat aku kaya (ak) cycle
Amali syarikat aku kaya (ak) cycleAmali syarikat aku kaya (ak) cycle
Amali syarikat aku kaya (ak) cycle
 
Rta derecho de peticion eduardo antonio rincon lozano
Rta derecho de peticion eduardo antonio rincon lozanoRta derecho de peticion eduardo antonio rincon lozano
Rta derecho de peticion eduardo antonio rincon lozano
 
超時空攔截 文學鐵人
超時空攔截  文學鐵人超時空攔截  文學鐵人
超時空攔截 文學鐵人
 
Documento pdf
Documento pdfDocumento pdf
Documento pdf
 
Pollito
PollitoPollito
Pollito
 
Presentación1
Presentación1Presentación1
Presentación1
 
Biomoleculas
Biomoleculas Biomoleculas
Biomoleculas
 
Tutorial educaciòn
Tutorial educaciònTutorial educaciòn
Tutorial educaciòn
 
Equipo rana
Equipo ranaEquipo rana
Equipo rana
 
Revista 2014
Revista 2014Revista 2014
Revista 2014
 
Tutorias
TutoriasTutorias
Tutorias
 
Las celulas procariotas
Las celulas procariotasLas celulas procariotas
Las celulas procariotas
 
Patatas con costillas adobadas
Patatas  con  costillas  adobadasPatatas  con  costillas  adobadas
Patatas con costillas adobadas
 
Comunicación Masiva
Comunicación MasivaComunicación Masiva
Comunicación Masiva
 
Quimica 1
Quimica 1Quimica 1
Quimica 1
 
Biomoleculas laura
Biomoleculas lauraBiomoleculas laura
Biomoleculas laura
 

Similar to Solucion compendio 4

Solution of matlab chapter 2
Solution of matlab chapter 2Solution of matlab chapter 2
Solution of matlab chapter 2AhsanIrshad8
 
Practical work 2
Practical work 2Practical work 2
Practical work 2wkhairil80
 
INTRODUCTION TO MATLAB session with notes
  INTRODUCTION TO MATLAB   session with  notes  INTRODUCTION TO MATLAB   session with  notes
INTRODUCTION TO MATLAB session with notesInfinity Tech Solutions
 
Example of calculate of root
Example of calculate of rootExample of calculate of root
Example of calculate of rootKt Silva
 
Python project
Python projectPython project
Python projectYoung Song
 
Solution of matlab chapter 6
Solution of matlab chapter 6Solution of matlab chapter 6
Solution of matlab chapter 6AhsanIrshad8
 
Lab 5 template Lab 5 - Your Name - MAT 275 Lab The M.docx
Lab 5 template  Lab 5 - Your Name - MAT 275 Lab The M.docxLab 5 template  Lab 5 - Your Name - MAT 275 Lab The M.docx
Lab 5 template Lab 5 - Your Name - MAT 275 Lab The M.docxsmile790243
 
Math unit16 data presentation
Math unit16 data presentationMath unit16 data presentation
Math unit16 data presentationeLearningJa
 
Matlab ch1 (3)
Matlab ch1 (3)Matlab ch1 (3)
Matlab ch1 (3)mohsinggg
 
digital signal-processing-lab-manual
digital signal-processing-lab-manualdigital signal-processing-lab-manual
digital signal-processing-lab-manualAhmed Alshomi
 

Similar to Solucion compendio 4 (18)

Solution of matlab chapter 2
Solution of matlab chapter 2Solution of matlab chapter 2
Solution of matlab chapter 2
 
Flair furniture LPP problem
Flair furniture LPP problemFlair furniture LPP problem
Flair furniture LPP problem
 
17
1717
17
 
Practical work 2
Practical work 2Practical work 2
Practical work 2
 
Đề Thi HK2 Toán 7 - THCS Tô Ký
Đề Thi HK2 Toán 7 - THCS Tô KýĐề Thi HK2 Toán 7 - THCS Tô Ký
Đề Thi HK2 Toán 7 - THCS Tô Ký
 
INTRODUCTION TO MATLAB session with notes
  INTRODUCTION TO MATLAB   session with  notes  INTRODUCTION TO MATLAB   session with  notes
INTRODUCTION TO MATLAB session with notes
 
C23.2
C23.2C23.2
C23.2
 
Example of calculate of root
Example of calculate of rootExample of calculate of root
Example of calculate of root
 
Python project
Python projectPython project
Python project
 
Solution of matlab chapter 6
Solution of matlab chapter 6Solution of matlab chapter 6
Solution of matlab chapter 6
 
Programming with matlab session 1
Programming with matlab session 1Programming with matlab session 1
Programming with matlab session 1
 
Eligheor
EligheorEligheor
Eligheor
 
Lab 5 template Lab 5 - Your Name - MAT 275 Lab The M.docx
Lab 5 template  Lab 5 - Your Name - MAT 275 Lab The M.docxLab 5 template  Lab 5 - Your Name - MAT 275 Lab The M.docx
Lab 5 template Lab 5 - Your Name - MAT 275 Lab The M.docx
 
Math unit16 data presentation
Math unit16 data presentationMath unit16 data presentation
Math unit16 data presentation
 
Gilat_ch02.pdf
Gilat_ch02.pdfGilat_ch02.pdf
Gilat_ch02.pdf
 
Matlab ch1 (3)
Matlab ch1 (3)Matlab ch1 (3)
Matlab ch1 (3)
 
digital signal-processing-lab-manual
digital signal-processing-lab-manualdigital signal-processing-lab-manual
digital signal-processing-lab-manual
 
R part I
R part IR part I
R part I
 

More from cannia

Solucion compendio 10
Solucion compendio 10Solucion compendio 10
Solucion compendio 10cannia
 
Solucion compendio 9
Solucion compendio 9Solucion compendio 9
Solucion compendio 9cannia
 
Solución compendio 8
Solución compendio 8Solución compendio 8
Solución compendio 8cannia
 
Tercer corte
Tercer corteTercer corte
Tercer cortecannia
 
Macro exposicion
Macro exposicionMacro exposicion
Macro exposicioncannia
 
Segundo corte
Segundo corteSegundo corte
Segundo cortecannia
 
Segundo corte
Segundo corteSegundo corte
Segundo cortecannia
 
Primer corte
Primer cortePrimer corte
Primer cortecannia
 
Mapa conceptual
Mapa conceptualMapa conceptual
Mapa conceptualcannia
 
Solucion compendio 5
Solucion  compendio 5Solucion  compendio 5
Solucion compendio 5cannia
 
Solucion compendio 4
Solucion compendio 4Solucion compendio 4
Solucion compendio 4cannia
 
Solucion compendio 2
Solucion compendio 2Solucion compendio 2
Solucion compendio 2cannia
 
Solucion compendio 1
Solucion compendio 1Solucion compendio 1
Solucion compendio 1cannia
 
Hoja de vida julieth
Hoja de vida juliethHoja de vida julieth
Hoja de vida juliethcannia
 
Datos hoja de vida
Datos hoja de vidaDatos hoja de vida
Datos hoja de vidacannia
 
Hoja de vida camila
Hoja de vida camilaHoja de vida camila
Hoja de vida camilacannia
 
Portafolio derecho
Portafolio derechoPortafolio derecho
Portafolio derechocannia
 
Solucion compendio 2
Solucion compendio 2Solucion compendio 2
Solucion compendio 2cannia
 
Solucion compendio 1
Solucion compendio 1Solucion compendio 1
Solucion compendio 1cannia
 
Solucion compendio 4
Solucion compendio 4Solucion compendio 4
Solucion compendio 4cannia
 

More from cannia (20)

Solucion compendio 10
Solucion compendio 10Solucion compendio 10
Solucion compendio 10
 
Solucion compendio 9
Solucion compendio 9Solucion compendio 9
Solucion compendio 9
 
Solución compendio 8
Solución compendio 8Solución compendio 8
Solución compendio 8
 
Tercer corte
Tercer corteTercer corte
Tercer corte
 
Macro exposicion
Macro exposicionMacro exposicion
Macro exposicion
 
Segundo corte
Segundo corteSegundo corte
Segundo corte
 
Segundo corte
Segundo corteSegundo corte
Segundo corte
 
Primer corte
Primer cortePrimer corte
Primer corte
 
Mapa conceptual
Mapa conceptualMapa conceptual
Mapa conceptual
 
Solucion compendio 5
Solucion  compendio 5Solucion  compendio 5
Solucion compendio 5
 
Solucion compendio 4
Solucion compendio 4Solucion compendio 4
Solucion compendio 4
 
Solucion compendio 2
Solucion compendio 2Solucion compendio 2
Solucion compendio 2
 
Solucion compendio 1
Solucion compendio 1Solucion compendio 1
Solucion compendio 1
 
Hoja de vida julieth
Hoja de vida juliethHoja de vida julieth
Hoja de vida julieth
 
Datos hoja de vida
Datos hoja de vidaDatos hoja de vida
Datos hoja de vida
 
Hoja de vida camila
Hoja de vida camilaHoja de vida camila
Hoja de vida camila
 
Portafolio derecho
Portafolio derechoPortafolio derecho
Portafolio derecho
 
Solucion compendio 2
Solucion compendio 2Solucion compendio 2
Solucion compendio 2
 
Solucion compendio 1
Solucion compendio 1Solucion compendio 1
Solucion compendio 1
 
Solucion compendio 4
Solucion compendio 4Solucion compendio 4
Solucion compendio 4
 

Recently uploaded

Call Girls in Hyderabad Lavanya 9907093804 Independent Escort Service Hyderabad
Call Girls in Hyderabad Lavanya 9907093804 Independent Escort Service HyderabadCall Girls in Hyderabad Lavanya 9907093804 Independent Escort Service Hyderabad
Call Girls in Hyderabad Lavanya 9907093804 Independent Escort Service Hyderabaddelhimodelshub1
 
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...Call Girls Noida
 
Call Girls Hyderabad Krisha 9907093804 Independent Escort Service Hyderabad
Call Girls Hyderabad Krisha 9907093804 Independent Escort Service HyderabadCall Girls Hyderabad Krisha 9907093804 Independent Escort Service Hyderabad
Call Girls Hyderabad Krisha 9907093804 Independent Escort Service Hyderabaddelhimodelshub1
 
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...Vip call girls In Chandigarh
 
Hot Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In Ludhiana
Hot  Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In LudhianaHot  Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In Ludhiana
Hot Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In LudhianaRussian Call Girls in Ludhiana
 
Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...
Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...
Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...High Profile Call Girls Chandigarh Aarushi
 
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...delhimodelshub1
 
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service GurgaonCall Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service GurgaonCall Girls Service Gurgaon
 
VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591
VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591
VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591adityaroy0215
 
Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...delhimodelshub1
 
Call Girls Secunderabad 7001305949 all area service COD available Any Time
Call Girls Secunderabad 7001305949 all area service COD available Any TimeCall Girls Secunderabad 7001305949 all area service COD available Any Time
Call Girls Secunderabad 7001305949 all area service COD available Any Timedelhimodelshub1
 
Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...
Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...
Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...Call Girls Noida
 
Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7
Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7
Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7Miss joya
 

Recently uploaded (20)

Call Girl Guwahati Aashi 👉 7001305949 👈 🔝 Independent Escort Service Guwahati
Call Girl Guwahati Aashi 👉 7001305949 👈 🔝 Independent Escort Service GuwahatiCall Girl Guwahati Aashi 👉 7001305949 👈 🔝 Independent Escort Service Guwahati
Call Girl Guwahati Aashi 👉 7001305949 👈 🔝 Independent Escort Service Guwahati
 
Call Girls in Hyderabad Lavanya 9907093804 Independent Escort Service Hyderabad
Call Girls in Hyderabad Lavanya 9907093804 Independent Escort Service HyderabadCall Girls in Hyderabad Lavanya 9907093804 Independent Escort Service Hyderabad
Call Girls in Hyderabad Lavanya 9907093804 Independent Escort Service Hyderabad
 
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
 
Call Girls Hyderabad Krisha 9907093804 Independent Escort Service Hyderabad
Call Girls Hyderabad Krisha 9907093804 Independent Escort Service HyderabadCall Girls Hyderabad Krisha 9907093804 Independent Escort Service Hyderabad
Call Girls Hyderabad Krisha 9907093804 Independent Escort Service Hyderabad
 
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
 
Hot Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In Ludhiana
Hot  Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In LudhianaHot  Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In Ludhiana
Hot Call Girl In Ludhiana 👅🥵 9053'900678 Call Girls Service In Ludhiana
 
Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...
Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...
Russian Call Girls in Chandigarh Ojaswi ❤️🍑 9907093804 👄🫦 Independent Escort ...
 
Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...
Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...
Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...
 
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
 
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service GurgaonCall Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
 
VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591
VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591
VIP Call Girl Sector 88 Gurgaon Delhi Just Call Me 9899900591
 
Call Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service Dehradun
Call Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service DehradunCall Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service Dehradun
Call Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service Dehradun
 
College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...
College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...
College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...
 
Call Girls in Lucknow Esha 🔝 8923113531 🔝 🎶 Independent Escort Service Lucknow
Call Girls in Lucknow Esha 🔝 8923113531  🔝 🎶 Independent Escort Service LucknowCall Girls in Lucknow Esha 🔝 8923113531  🔝 🎶 Independent Escort Service Lucknow
Call Girls in Lucknow Esha 🔝 8923113531 🔝 🎶 Independent Escort Service Lucknow
 
Model Call Girl in Subhash Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Subhash Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Subhash Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Subhash Nagar Delhi reach out to us at 🔝9953056974🔝
 
Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Saloni 9907093804 Independent Escort Service Hyd...
 
Russian Call Girls South Delhi 9711199171 discount on your booking
Russian Call Girls South Delhi 9711199171 discount on your bookingRussian Call Girls South Delhi 9711199171 discount on your booking
Russian Call Girls South Delhi 9711199171 discount on your booking
 
Call Girls Secunderabad 7001305949 all area service COD available Any Time
Call Girls Secunderabad 7001305949 all area service COD available Any TimeCall Girls Secunderabad 7001305949 all area service COD available Any Time
Call Girls Secunderabad 7001305949 all area service COD available Any Time
 
Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...
Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...
Vip sexy Call Girls Service In Sector 137,9999965857 Young Female Escorts Ser...
 
Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7
Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7
Vip Kolkata Call Girls Cossipore 👉 8250192130 ❣️💯 Available With Room 24×7
 

Solucion compendio 4

  • 1. SOLUCIÓN COMPENDIO 4 Taller de Aplicación: Basándose en los anteriores procedimientos construir intervalos y gráficos para los siguientes datos que corresponden a la edad de 50 microempresarios de la ciudad de Villavicencio 48 39 35 29 30 38 42 37 40 38 22 37 34 55 48 35 50 36 48 42 53 35 38 38 35 40 50 23 32 45 35 42 59 28 38 34 38 44 46 23 40 48 34 30 35 43 32 36 32 46 Códigos en R Resultados Ingresando datos: datos=c(48,38,22,35,53,40 ,35,34,40,43,39,42,37,50, 35,50,42,38,48,32,35,37,3 4,36,38,23,59,44,34,36,29 ,40,55,48,38,32,28,46,30, 32,30,38,48,42,35,45,38,2 3,35,46) [1] 48 38 22 35 53 40 35 34 40 43 39 42 37 50 35 50 42 38 48 32 35 37 34 36 38 [26] 23 59 44 34 36 29 40 55 48 38 32 28 46 30 32 30 38 48 42 35 45 38 23 35 46 Calculando el rango: Rang= max(datos)- min(datos) > Rang [1] 37 Calculando el número de intervalos m=round(1+3.3*log10(50)) La función Round, redondea al entero más cercano. > m [1] 7
  • 2. Longitud del intervalo: C=Rang/m > C [1] 5.285714 Este resultado se redondea al entero más cercano, por exceso en este caso 6. Redefinir=42-37=5 2 Xmin-2=20 Xmax +3=62 Ahora le damos forma a los intervalos intervalos=cut(datos, breaks=c(20,26,32,38,44,5 0,56,62)) Intervalos [1] (44,50] (32,38] (20,26] (32,38] (50,56] (38,44] (32,38] (32,38] (38,44] [10] (38,44] (38,44] (38,44] (32,38] (44,50] (32,38] (44,50] (38,44] (32,38] [19] (44,50] (26,32] (32,38] (32,38] (32,38] (32,38] (32,38] (20,26] (56,62] [28] (38,44] (32,38] (32,38] (26,32] (38,44] (50,56] (44,50] (32,38] (26,32] [37] (26,32] (44,50] (26,32] (26,32] (26,32] (32,38] (44,50] (38,44] (32,38] [46] (44,50] (32,38] (20,26] (32,38] (44,50] Levels: (20,26] (26,32] (32,38] (38,44] (44,50] (50,56] (56,62] Ahora se forma las frecuencias absolutas f=table(intervalos) f intervalos (20,26] (26,32] (32,38] (38,44] (44,50] (50,56] (56,62] 3 7 19 9 9 2 1
  • 3. Calculando el número de elementos de la muestra n=sum(f) > n [1] 50 Construimos las frecuencias absolutas h h=f/n h intervalos (20,26] (26,32] (32,38] (38,44] (44,50] (50,56] (56,62] 0.06 0.14 0.38 0.18 0.18 0.04 0.02 Construyendo frecuencias absolutas acumuladas F=cumsum(f) F (20,26] (26,32] (32,38] (38,44] (44,50] (50,56] (56,62] 3 10 29 38 47 49 50 Construyendo las frecuencias relativas acumuladas. H=cumsum(h) H (20,26] (26,32] (32,38] (38,44] (44,50] (50,56] (56,62] 0.06 0.20 0.58 0.76 0.94 0.98 1.00 Ahora se arman la tabla de frecuencias cbind(f,h,F,H) f h F H (20,26] 3 0.06 3 0.06 (26,32] 7 0.14 10 0.20 (32,38] 19 0.38 29 0.58 (38,44] 9 0.18 38 0.76 (44,50] 9 0.18 47 0.94 (50,56] 2 0.04 49 0.98 (56,62] 1 0.02 50 1.00 Construyendo marcas de clase LimSup=c(26,32,38,44,50,56,62) LimInf=c(20,26,32,38,44,50,56) Marca= (LimSup+LimInf)/2 Marca [1] 23 29 35 41 47 53 59 La tabla con las frecuencias y la marca de clase f Marca h F H (20,26] 3 23 0.06 3 0.06 (26,32] 7 29 0.14 10 0.20
  • 4. tabla=cbind(f,Marca,h,F,H) (32,38] 19 35 0.38 29 0.58 (38,44] 9 41 0.18 38 0.76 (44,50] 9 47 0.18 47 0.94 (50,56] 2 53 0.04 49 0.98 (56,62] 1 59 0.02 50 1.00 Gráfico de un histograma hist(datos, breaks=c(20,26,32,38,44,50,56, 62), col = "green", border = 1, main = "MICROEMPRESARIOS",xlab = "EDAD" , ylab = "FRECUENCIA")