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», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

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

Интервал:

Закладка:

Сделать

2 Enter frequencies of the categories in C2.

3 From the Menu bar select Graph Bar Chart. This prompts the following dialog box to appear on the screen:

4 Select one of the three options under Bars represent, that is, Counts of unique values, A function of variables, or Values from a table, depending upon whether the data are sample values, functions of sample values such as means of various samples, or categories and their frequencies.

5 Select one of the three possible bar charts that suits your problem. If we are dealing with only one sample from a single population, then select Simple and click OK. This prompts another dialog box, as shown below, to appear on the screen:

6 Enter C2 in the box under Graph Variables.

7 Enter C1 in the box under Categorical values.

8 There are several other options such as Chart Option, scale; click them and use them as needed. Otherwise click OK. The bar chart will appear identical to the one shown in Figure 2.4.4.

USING R

We can use built in ‘barplot()’ function in R to generate bar charts. First, we obtain the frequency table via the ‘table()’ function. The resulting tabulated categories and their frequencies are then inputted into the ‘barplot()’ function as shown in the following R code.

DefectTypes = c(2,1,3,1,2,1,5,4,3,1,2,3,4,3,1,5,2,3,1,2,3,5,4,3, 1,5,1,4,2,3,2,1,2,5,4,2,4,2,5,1,2,1,2,1,5,2,1,3,1,4) #To obtain the frequencies counts = table(DefectTypes) #To obtain the bar chart barplot(counts, xlab=‘Defect type’, ylab=‘Frequency’)

2.4.4 Histograms

Histograms are extremely powerful graphs that are used to describe quantitative data graphically. Since the shape of a histogram is determined by the frequency distribution table of the given set of data, the first step in constructing a histogram is to create a frequency distribution table. This means that a histogram is not uniquely defined until the classes or bins are defined for a given set of data. However, a carefully constructed histogram can be very informative.

For instance, a histogram provides information about the patterns, location/center, and dispersion of the data. This information is not usually apparent from raw data. We may define a histogram as follows:

Definition 2.4.1

A histogram is a graphical tool consisting of bars placed side by side on a set of intervals (classes, bins, or cells) of equal width. The bars represent the frequency or relative frequency of classes. The height of each bar is proportional to the frequency or relative frequency of the corresponding class.

To construct a histogram, we take the following steps:

1 Step 1. Prepare a frequency distribution table for the given data.

2 Step 2. Use the frequency distribution table prepared in Step 1 to construct the histogram. From here, the steps involved in constructing a histogram are exactly the same as those to construct a bar chart, except that in a histogram, there is no gap between the intervals marked on the horizontal axis (the ‐axis).

A histogram is called a frequency histogram or a relative frequency histogram depending on whether the scale on the vertical axis (the картинка 167‐axis) represents the frequencies or the relative frequencies. In both types of histograms, the widths of the rectangles are equal to the class width. The two types of histograms are in fact identical except that the scales used on the картинка 168‐axes are different. This point becomes quite clear in the following example:

Example 2.4.5(Survival times) The following data give the survival times (in hours) of 50 parts involved in a field test under extraneous operating conditions.

60 100 130 100 115 30 картинка 169 145 75 80 89 57 64 92 87 110 180
195 175 179 159 155 146 157 167 174 87 67 73 109 123 135 129 141
154 166 179 37 картинка 170 картинка 171 картинка 172 89 картинка 173 картинка 174 картинка 175 картинка 176 картинка 177 39 49 190

Construct a frequency distribution table for this data. Then, construct frequency and relative frequency histograms for these data.

Solution:

1 Step 1. Find the range of the data:Then, determine the number of classes (see for example the Sturges' formula , in (2.3.2))Last, compute the class width:As we noted earlier, the class width number is always rounded up to another convenient number that is easy to work with. If the number calculated using (2.3.4) is rounded down, then some of the observations will be left out as they will not belong to any class. Consequently, the total frequency will be less than the total count of the data. The frequency distribution table for the data in this example is shown in Table 2.4.3.

2 Step 2. Having completed the frequency distribution table, construct the histograms. To construct the frequency histogram, first mark the classes on the ‐axis and the frequencies on the ‐axis. Remember that when marking the classes and identifying the bins on the ‐axis, there must be no gap between them. Then, on each class marked on the ‐axis, place a rectangle, where the height of each rectangle is proportional to the frequency of the corresponding class. The frequency histogram for the data with the frequency distribution given in Table 2.4.3is shown in Figure 2.4.5. To construct the relative frequency histogram, the scale is changed on the ‐axis (see Figure 2.4.5) so that instead of plotting the frequencies, we plot relative frequencies. The resulting graph for this example, shown in Figure 2.4.6, is called the relative frequency histogram for the data with relative frequency distribution given in Table 2.4.3.

Table 2.4.3Frequency distribution table for the survival time of parts.

Frequency Relative Cumulative
Class Tally or count frequency frequency
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 178 ///// 5 5/50 5
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 179 ///// ///// 10 10/50 15
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 180 ///// //// 9 9/50 24
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 181 ///// // 7 7/50 31
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 182 ///// / 6 6/50 37
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 183 ///// / 6 6/50 43
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 184 ///// // 7 7/50 50
Total 50 1
Figure 245Frequency histogram for survival time of parts under extraneous - фото 185

Figure 2.4.5Frequency histogram for survival time of parts under extraneous operating conditions.

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

Интервал:

Закладка:

Сделать

Похожие книги на «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