Bhisham C. Gupta - Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP

Здесь есть возможность читать онлайн «Bhisham C. Gupta - Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP» — ознакомительный отрывок электронной книги совершенно бесплатно, а после прочтения отрывка купить полную версию. В некоторых случаях можно слушать аудио, скачать через торрент в формате fb2 и присутствует краткое содержание. Жанр: unrecognised, на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале библиотеки ЛибКат.

Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP: краткое содержание, описание и аннотация

Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.

Introduces basic concepts in probability and statistics to data science students, as well as engineers and scientists Aimed at undergraduate/graduate-level engineering and natural science students, this timely, fully updated edition of a popular book on statistics and probability shows how real-world problems can be solved using statistical concepts. It removes Excel exhibits and replaces them with R software throughout, and updates both MINITAB and JMP software instructions and content. A new chapter discussing data mining—including big data, classification, machine learning, and visualization—is featured. Another new chapter covers cluster analysis methodologies in hierarchical, nonhierarchical, and model based clustering. The book also offers a chapter on Response Surfaces that previously appeared on the book’s companion website.
Statistics and Probability with Applications for Engineers and Scientists using MINITAB, R and JMP, Second Edition Features two new chapters—one on Data Mining and another on Cluster Analysis Now contains R exhibits including code, graphical display, and some results MINITAB and JMP have been updated to their latest versions Emphasizes the p-value approach and includes related practical interpretations Offers a more applied statistical focus, and features modified examples to better exhibit statistical concepts Supplemented with an Instructor's-only solutions manual on a book’s companion website 
is an excellent text for graduate level data science students, and engineers and scientists. It is also an ideal introduction to applied statistics and probability for undergraduate students in engineering and the natural sciences.

Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP — читать онлайн ознакомительный отрывок

Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

3 Step 3. From the outer lines, draw straight lines extending outwardly up to three times the IQR and mark them as shown in Figure 2.8.1. Note that each distance between the points A and B, B and C, D and E, and E and F is equal to one and a one‐half times distance between the points C and D, or one and one‐half times IQR. The points S and L are, respectively, the smallest and largest data points that fall within the inner fences. The lines from S to C and D to L are called the whiskers.

2.8.2 How to Use the Box Plot

About the Outliers

1 Any data points that fall beyond the lower and upper outer fences are the extreme outliers. These points are usually excluded from the analysis.

2 Any data points between the inner and outer fences are the mild outliers. These points are excluded from the analysis only if we were convinced that these points are somehow recorded or measured in error.

About the Shape of the Distribution

1 If the second quartile (median) is close to the center of the box and each of the whiskers is approximately of equal length, then the distribution is symmetric.

2 If the right box is substantially larger than the left box and/or the right whisker is much longer than the left whisker, then the distribution is right‐skewed.

3 If the left box is substantially larger than the right box and/or the left whisker is much longer than the right whisker, then the distribution is left‐skewed.

Example 2.8.1(Noise levels) The following data gives the noise level measured in decibels (a usual conversation by humans produces a noise level of about 75 dB) produced by 15 different machines in a very large manufacturing plant:

85 80 88 95 115 110 105 104 89 87 96 140 75 79 99

Construct a box plot and examine whether the data set contains any outliers.

Figure 282Box plot for the data in Example 281 SolutionFirst we arrange - фото 367

Figure 2.8.2Box plot for the data in Example 2.8.1.

Solution:First we arrange the data in the ascending order and rank them.

Data values 75 79 80 85 88 89 95 96 97 99 104 105 110 115 140
Ranks 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

We then find the ranks of the quartiles картинка 368, картинка 369, and картинка 370. Thus, we have ( картинка 371)

Rank of картинка 372= (25/100)(15+1) = 4

Rank of картинка 373= (50/100)(15+1) = 8

Rank of картинка 374= (75/100)(15+1) = 12

Therefore, the values of картинка 375, and are 85 96 and 105 respectively and the interquartile range is - фото 376, and are 85 96 and 105 respectively and the interquartile range is - фото 377are 85, 96, and 105, respectively, and the interquartile range is

Figure 282shows the box plot for these data Figure 282shows that the data - фото 378 Figure 282shows the box plot for these data Figure 282shows that the data - фото 379

Figure 2.8.2shows the box plot for these data. Figure 2.8.2shows that the data include one outlier. In this case, action should be taken to modify the machine that produced a noise level of 140 dB. Use MINITAB to create a box plot:

MINITAB

1 Enter the data in column C1.

2 From the Menu bar, select Graph Boxplot. This prompts a dialog box to appear. In this dialog box, select simple and click OK. This prompts another dialog box to appear.

3 In this dialog box, enter C1 in the box under the Graph variables and click OK. Then, the box plot shown in Figure 2.8.3will appear in the Session window.

Figure 283MNITAB printout of box plot for the data in Example 281 USING R - фото 380

Figure 2.8.3MNITAB printout of box plot for the data in Example 2.8.1.

USING R

We can use a built in ‘boxplot()’ function in R to generate box plots. Extra arguments such as inserting a heading, labeling картинка 381‐axis, and coloring can be done as shown in the following R code.

NoiseLevels = c(75,79,80,85,88,89,95,96,97,99,104,105,110,115,140) #To plot boxplot boxplot(NoiseLevels, main = ‘Box plot of Noise Levels (dB)’, ylab = ‘Noise Levels (dB)’, col = ‘grey’)

Example 2.8.2(Bus riders') From the bus riders' data in Example 2.7.4, we have

12 12 14 15 16 16 16 16 17 17 17 18 18 18 19 19 20 20 20 20
20 20 20 20 21 21 21 22 22 23 23 23 24 24 25 26 26 28 28 28

1 Find the mean, mode, and median for these data.

2 Prepare the box plot for the data.

3 Using the results of parts (a) and (b), verify if the data are symmetric or skewed. Examine whether the conclusions made using the two methods, the results of part (a) and (b) about the shapes of the distribution, are the same or not.

4 Using the box plot, check if the data contain any outliers.

5 If in part (c) the conclusion is that the data are symmetric, then find the standard deviation and verify if the empirical rule holds or not.

Solution:The sample size in this problem is n = 40. Thus, we have

1 Mean , mode , and median

2 To prepare the box plot, we first find the quartiles , , and .Rank of Rank of Rank of .Since the data presented in this problem are already in the ascending order, we can easily see that the quartiles , , and areThe interquartile range is IQR . Thus, Figure 2.8.4Box plot for the data in Example 2.8.2.The box plot for the data is as shown in Figure 2.8.4.

3 Both parts (a) and (b) lead to the same conclusion; that is, the data are symmetric.

Читать дальше
Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Похожие книги на «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP»

Представляем Вашему вниманию похожие книги на «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё непрочитанные произведения.


Отзывы о книге «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP»

Обсуждение, отзывы о книге «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.

x