Multivariate Statistics

Size: px
Start display at page:

Download "Multivariate Statistics"

Transcription

1 Multivariate Statistics Chapter 6: Cluster Analysis Pedro Galeano Departamento de Estadística Universidad Carlos III de Madrid Course 2017/2018 Master in Mathematical Engineering Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 1 / 70

2 1 Introduction 2 The clustering problem 3 Hierarchical clustering 4 Partition clustering 5 Model-based clustering Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 2 / 70

3 Introduction The purpose of cluster analysis is to group objects in a multivariate data set into different homogeneous groups. This is done by grouping individuals that are somehow similar according to some appropriate criterion. Once the clusters are obtained, it is generally useful to describe each group using some descriptive tools to create a better understanding of the differences that exists among the formulated groups. Cluster methods are also known as unsupervised classification methods. These are different than the supervised classification methods, or Classification Analysis, that will be presented in Chapter 7. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 3 / 70

4 Introduction Clustering techniques are applicable whenever a data set needs to be grouped into meaningful groups. In some situations we know that the data naturally fall into a certain number of groups, but usually the number of clusters is unknown. Some clustering methods requires the user to specify the number of clusters a priori. Thus, unless additional information exists about the number of clusters, it is reasonable to explore different values and looks at potential interpretation of the clustering results. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 4 / 70

5 Introduction Central to some clustering approaches is the notion of proximity of two random vectors. We usually measure the degree of proximity of two multivariate observations by a distance measure. The Euclidean distance is typically the first and also the most common distance one applies in Cluster Analysis. Other distances such as those presented in Chapter 5 can be considered. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 5 / 70

6 Introduction Some cluster procedures are based on using mixtures of distributions. The underlying assumptions of these mixtures, i.e., that the data in the different parts are from a certain distribution, are not easy to verify and may not hold. However, these methods have been shown to be powerful under general circumstances. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 6 / 70

7 Introduction Cluster Analysis can be seen as an exploratory tool. Different cluster solutions will appear if one considers different number of clusters, distance measures or mixture distribution. These solutions might provide new understanding of the structure of the data set. Therefore, if possible, the interpretation of cluster solutions should involve subject experts. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 7 / 70

8 Introduction There are a large vast amount of cluster procedures. Here, we will focus on: Hierarchical clustering: start with single clusters (individual observations) and merges clusters or start with a single cluster (the whole data set) and split clusters. Partition clustering: starts from a given group definition and proceed by exchanging elements between groups until a certain criterion is optimized. Model-based clustering: the random vectors are modeled by mixtures of distributions leading to posterior probabilities of the observation memberships. Before presenting these methods, we define the problem. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 8 / 70

9 The clustering problem Given a data matrix X of dimension n p, we want to obtain a partition of the data set, C 1,..., C K, where C k, for k = 1,..., K, are sets containing the indices of the observations in each cluster. Therefore, i C k means that the observation x i belongs to cluster k. Any partition C 1,..., C K verifies the following two properties: Each observation belongs to at least one of the K clusters, i.e., C1 C K = {1,..., n}. No observation belongs to more than one cluster, i.e., Ck C k =, for k k. The problem is to find an appropriate partition, C 1,..., C K, for our data set. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 9 / 70

10 Clustering problem The key interpretative point of hierarchical and partition methods is that elements within a C k are much more similar to each other than to any element from a different C k. This interpretation does not necessarily hold in model-based clustering, where similar observations can belong to different clusters. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 10 / 70

11 Hierarchical clustering There are two types of hierarchical clustering methods: 1 In agglomerative clustering, one starts with n single clusters and merges them into larger clusters. 2 In divisive clustering, one starts with a single cluster and divides it into smaller clusters. Most attention has been paid on agglomerative methods. However, arguments have been made that divisive methods can provide more sophisticated and robust clusterings. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 11 / 70

12 Hierarchical clustering The end result of all hierarchical clustering methods is a graphical output called dendogram, where the k-th cluster solution is obtained by merging some of the clusters from the (k + 1)-th cluster solution. The result of hierarchical algorithms depend on the distance considered. In particular, when the variables are in different units of measurement and the distance used do not take into account this fact, it is better to standardize the variables. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 12 / 70

13 Hierarchical clustering The algorithm for agglomerative hierarchical clustering (agglomerative nesting or agnes) is given next: 1 Initially, each observation x i, for i = 1,..., n, is a cluster. 2 Compute D = {d ii, i, i = 1,..., n}, the matrix that contains the distances between the n observations (clusters). 3 Find the smallest distance in D, say, d II and merge clusters I and I to form a new cluster II. 4 Compute the distances, d II,I, between the new cluster II and all other clusters I II (detailed in the next slide). 5 Form a new distance matrix, D, by deleting rows and columns I and I and adding a new row and column II with the distances computed from step 4. 6 Repeat steps 3, 4 and 5 a total of n 1 times until all observations are merged together into a single cluster. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 13 / 70

14 Hierarchical clustering Computation of the distances d II,I, between the new cluster II and all other clusters I II can be done using one of the following linkage methods: Single linkage: dii,i = min {d I,I, d I,I }. Complete linkage: dii,i = max {d I,I, d I,I }. Average linkage: dii,i = i II i II d i,i / (n ii n i ), where n ii and n i are the number of items in clusters II and I, respectively. Ward linkage: dii,i is the squared Euclidean distance between the sample mean vector of the elements in both clusters. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 14 / 70

15 Hierarchical clustering The dendogram is a graphical representation of the cluster solutions. Particularly, the dendogram shows the distances at which clusters are combined together to form new clusters. Similar clusters are combined at low distances, whereas dissimilar clusters are combined at high distances. Consequently, the difference in distances defines how close clusters are of each other. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 15 / 70

16 Hierarchical clustering To obtain a partition of the data into a specified number of groups, we can cut the dendogram at an appropriate distance. The number of vertical lines, K, cut by a horizontal line on the dendogram at a given distance identifies a K-cluster solution. The items located at the end of all branches below the horizontal line constitute the members of the cluster. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 16 / 70

17 Hierarchical clustering To know whether or not the cluster solution is appropriate, we can use the Silhouette. Let: a (xi ) be the average distance of x i with respect all other points in its cluster. b (xi ) be the lowest average distance of x i to any other cluster of which x i is not a member. s (xi ) be the silhouette of x i : s (x i ) = a (x i ) b (x i ) max {a (x i ), b (x i )} The silhouette s (x i ) ranges from 1 to 1, such that a positive value means that the object is well matched to its own cluster and a negative value means that the object is bad matched to its own cluster. The average silhouette gives a global measure of the assignment, such that the more positive, the better the configuration. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 17 / 70

18 Illustrative example (I) We are going to apply the agnes algorithm to the states data set. For that, we make use of the Euclidean distance after take logarithms of the first, third and eighth variables and after standardize all the variables. The next slides shows dendograms for the solutions with the four linkage methods (simple, complete, average and Ward), joint with scatterplot matrices, plots of the first two PCs and the silhouette are given. To compare solutions, we focus on K = 3 although different linkage methods may provide with different suggestions on the number of clusters. For K = 3, the silhouette suggests to consider the solution given with the complete linkage. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 18 / 70

19 Illustrative example (I) Single linkage Height Alabama Louisiana Arkansas Kentucky Tennessee North Carolina Georgia Mississippi South Carolina West Virginia Florida Illinois Michigan Indiana Ohio Pennsylvania Missouri New York Oklahoma Virginia Colorado Idaho Iowa Minnesota Nebraska Kansas Wisconsin Montana Wyoming Utah Oregon Washington South Dakota Maine New Hampshire Vermont North Dakota Connecticut Maryland New Jersey Massachusetts Arizona Nevada California Texas New Mexico Delaware Rhode Island Hawaii Alaska X.s Agglomerative Coefficient = 0.6 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 19 / 70

20 Illustrative example (I) Single linkage Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 20 / 70

21 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona Florida New York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Montana Wisconsin Wyoming Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 21 / 70

22 Illustrative example (I) Silhouette for Agnes and Single n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : 0.2 Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 22 / 70

23 Illustrative example (I) Complete linkage Height Alabama Louisiana Georgia Mississippi South Carolina Arkansas Kentucky Tennessee North Carolina West Virginia New Mexico Arizona Florida Texas California Illinois Michigan New York Virginia Indiana Ohio Pennsylvania Missouri Oklahoma Colorado Iowa Minnesota Wisconsin Kansas Nebraska Idaho Utah Oregon Washington Maine New Hampshire Vermont Montana Wyoming North Dakota South Dakota Connecticut Massachusetts Maryland New Jersey Delaware Rhode Island Hawaii Alaska Nevada X.s Agglomerative Coefficient = 0.79 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 23 / 70

24 Illustrative example (I) Complete linkage Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 24 / 70

25 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona Florida New York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Montana Wisconsin Wyoming Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 25 / 70

26 Illustrative example (I) Silhouette for Agnes and Complete n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 26 / 70

27 Illustrative example (I) Average linkage Height Alabama Louisiana Georgia Mississippi South Carolina Arkansas Kentucky Tennessee North Carolina West Virginia New Mexico Arizona Florida Texas California Connecticut Massachusetts Maryland New Jersey Illinois Michigan New York Virginia Indiana Ohio Pennsylvania Missouri Oklahoma Colorado Iowa Minnesota Wisconsin Kansas Nebraska Idaho Utah North Dakota South Dakota Oregon Washington Maine New Hampshire Vermont Montana Wyoming Nevada Delaware Rhode Island Hawaii Alaska X.s Agglomerative Coefficient = 0.74 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 27 / 70

28 Illustrative example (I) Average linkage Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 28 / 70

29 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona FloridaNew York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Wyoming Montana Wisconsin Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 29 / 70

30 Illustrative example (I) Silhouette for Agnes and Average n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 30 / 70

31 Illustrative example (I) Ward linkage Height Alabama Louisiana Georgia Mississippi South Carolina Arkansas Kentucky Tennessee North Carolina West Virginia Alaska Montana Wyoming Nevada Colorado Iowa Minnesota Wisconsin Kansas Nebraska Idaho Utah North Dakota Oregon Washington Maine South Dakota New Hampshire Vermont Arizona Oklahoma New Mexico California Florida New York Virginia Texas Illinois Michigan Indiana Ohio Pennsylvania Missouri Connecticut Massachusetts Maryland New Jersey Delaware Rhode Island Hawaii X.s Agglomerative Coefficient = 0.9 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 31 / 70

32 Illustrative example (I) Ward linkage Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 32 / 70

33 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona FloridaNew York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Montana Wyoming Wisconsin Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 33 / 70

34 Illustrative example (I) Silhouette for Agnes and Ward n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : 0.27 Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 34 / 70

35 Hierarchical clustering None of the distance/linkage procedures is uniformly best for all clustering problems. Singe linkage often leads to long clusters, joined by singleton observations near each other, a result that does not have much appeal in practice. Complete linkage tends to produce many small, compact clusters. Average linkage is dependent upon the size of the clusters, while single and complete linkage do not. Ward linkage also tends to produce many small, compact clusters. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 35 / 70

36 Hierarchical clustering In divisive clustering (divisive analysis or diana), the idea is that at each step, the observations are divided into a splinter group (say cluster A) and the remainder group (say cluster B). The splinter group is initiated by extracting that observation that has the largest average distance from all other observations in the data set, and that observation is set up as cluster A. Given the separation of the data into A and B, we next compute, for each observation in cluster B, the following quantities: 1 the average distance between that observation and all other observations in cluster B, and 2 the average distance between that observation and all observations in cluster A. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 36 / 70

37 Hierarchical clustering Then, we compute the difference between (1) and (2) above for each observation in B. There are two possibilities: 1 If all the differences are negative, we stop the algorithm. 2 If any of these differences are positive, we take the observation in B with the largest positive difference, move it to A, and repeat the procedure. This algorithm provides with a binary split of the data into two clusters A and B. This same procedure can then be used to obtain binary splits of each of the clusters A and B separately. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 37 / 70

38 Illustrative example (I) We are going to apply the diana algorithm to the states data set. The next slides shows dendograms for the solution, joint with scatterplot matrices, plots of the first two PCs and the silhouette with the optimal solution for K = 3. It is not difficult to see that this algorithm points out the presence of special states. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 38 / 70

39 Illustrative example (I) Diana Height Alabama Louisiana Georgia Mississippi South Carolina Arkansas Kentucky Tennessee North Carolina West Virginia Texas New Mexico Arizona Florida California Illinois Michigan New York Virginia Indiana Ohio Pennsylvania Missouri Oklahoma Maryland New Jersey Alaska Montana Wyoming Nevada Colorado Iowa Nebraska Kansas Minnesota Wisconsin Idaho Utah Oregon Washington Maine New Hampshire Vermont North Dakota South Dakota Connecticut Massachusetts Delaware Rhode Island Hawaii X.s Divisive Coefficient = 0.79 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 39 / 70

40 Illustrative example (I) Diana Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 40 / 70

41 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona Florida New York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Montana Wisconsin Wyoming Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 41 / 70

42 Illustrative example (I) Silhouette for Diana n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : 0.27 Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 42 / 70

43 Partition clustering Partition methods simply split the data observations into a predetermined number K of groups or clusters, where there is no hierarchical relationship between the K-cluster solution and the (K + 1)-cluster solution. Given K, we seek to partition the data into K clusters so that the observations within each cluster are similar to each other, whereas observations from different clusters are dissimilar. Ideally, one can obtain all the possible partition of the data into K clusters and selects the best partition using some optimizing criterion. Clearly, for medium or large data sets such a method rapidly becomes infeasible, requiring incredible amount of computer time and storage. As a result, all available partition methods are iterative and work on only a few possible partitions. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 43 / 70

44 Partition clustering The k-means algorithm is the most popular partition method. As it is extremely efficient, it is often used for large-scale clustering projects. The algorithm depends on the concept of centroid of a cluster, which is a representative point of the group (not necessarily an observation). Usually, the centroid is taken as the sample mean vector of the observations in the cluster, although this is not always the choice. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 44 / 70

45 Partition clustering The algorithm is given next: 1 Let x i, for i = 1,..., n be the set of observations in the data matrix X. 2 Do one of the following: 1 Form an initial random assignment of the observations into K clusters and, for cluster k, compute its current centroid, k x. 2 Pre-specify K cluster centroids, k x, for k = 1,..., K. 3 Compute the squared Euclidean distance of each observation to its current cluster centroid and sum all of them: SSE = K (x i k x) (x i k x) k=1 c(i)=k where k x is the k-th cluster centroid and c (i) is the cluster containing x i. 4 Reassign each observation to its nearest cluster centroid so that SSE is reduced in magnitude. Update the cluster centroids after each reassignment. 5 Repeat steps 3 and 4 until no further reassignment of observations takes place. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 45 / 70

46 Partition clustering The solution (a configuration of observations into K clusters) will typically not be unique. This is because, the algorithm will only find a local minimum of the SSE. It is recommended that the algorithm be run using different initial random assignments to the observations to the K clusters (or by randomly selecting K initial centroids) in order to find the lowest minimum of SSE and, hence, the best clustering solution based upon K clusters. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 46 / 70

47 Illustrative example (I) We are going to apply the k-means algorithm to the states data set. As with the hierarchical algorithms, we use standardized variables, as the algorithm uses Euclidean distances. The next slides show scatterplot matrices, plots of the first two PCs and the silhouette with the optimal solution for K = 3. We run the algorithm 25 times, i.e., we form 25 initial random assignments of the observations into 3 clusters and run the algorithm. The value of SSE attained by the algorithm is Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 47 / 70

48 Illustrative example (I) k means Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 48 / 70

49 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona Florida New York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Montana Wisconsin Wyoming Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 49 / 70

50 Illustrative example (I) Silhouette for k means n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : 0.28 Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 50 / 70

51 Partition clustering Partition around medoids (pam) is another partition algorithm. Essentially, pam is a modification of the k-means algorithm. This algorithm searches for K representative objects rather than the centroids among the observations in the data set. Then, the method is expected to be more robust to data anomalies such as outliers. A disadvantage of the pam algorithm is that, although it run well on small data sets, they are not efficient enough to use for clustering large data sets. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 51 / 70

52 Partition clustering The algorithm is given next: 1 Let x i, for i = 1,..., n be the set of observations in the data matrix. 2 Compute D = {d ii, i, i = 1,..., n}, the matrix that contains the distances between the n observations. 3 Choose K observations as the medoids of K initial clusters. 4 Assign every observation to its closest medoid using the matrix D. 5 For each cluster, search the observation, x i, of the cluster (if any) that gives the largest reduction in: K SSE med = d ii k=1 c(i)=k and select this observation as the medoid for this cluster (note that SSE med only considers distances from every observation in the cluster to the medoid). 6 Repeat steps 4 and 5 until no further reduction in SSE med takes place. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 52 / 70

53 Illustrative example (I) We are going to apply the pam algorithm to the states data set. As with the previous algorithms, we use standardized variables. The next slides show the same information as in the previous methods. For that we consider the case of 3 groups, as previously done. The results do not appear to be very good. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 53 / 70

54 Illustrative example (I) pam Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 54 / 70

55 Illustrative example (I) CLUSPLOT( X.s ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona Florida New York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Montana Wisconsin Wyoming Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 55 / 70

56 Illustrative example (I) Silhouette for pam n = 50 3 clusters C j j : n j ave i C 1 : : : Average silhouette width : Silhouette width s i Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 56 / 70

57 Model-based clustering In model-based clustering, it is assumed that the data have been generated by a mixture of K unknown distributions. Maximum likelihood estimation can be carried out to estimate the parameters of the mixture model. This is usually undertaken using the Expectation-Maximization (EM) algorithm. Then, once the model parameters have been estimated, each observation is assigned to the mixture (cluster) with larger probability of having generated the observation. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 57 / 70

58 Model-based clustering Then, we assume that the data set have been generated from a mixture of distributions with pdf given by: f x (x θ) = K π k f x,k (x θ k ) k=1 where θ is a vector with all the parameters of the model, including the weights π k and the parameters of the distributions f x,k ( θ k ), denoted by θ k. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 58 / 70

59 Model-based clustering Then, for a data matrix, X, with observations x i = (x i1,..., x ip ), the likelihood function is given by: ( n n K ) L (θ X ) = f x (x i θ k ) = π k f x,k (x i θ k ) i=1 i=1 k=1 while the log-likelihood is given by: ( n K ) l (θ X ) = log π k f x,k (x i θ k ) i=1 k=1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 59 / 70

60 Model-based clustering Derivation of closed form expressions of the MLE of the mixture parameters is not possible, even in the case of the multivariate Gaussian distribution. Moreover, although it is possible to apply a Newton-Raphson type algorithm to solve the equalities provided by the MLE method, the usual approach is to use the EM algorithm to obtain the MLEs (see the references). Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 60 / 70

61 Model-based clustering Then, let π 1,..., π G and θ 1,..., θ G, be the MLE of the weights and the parameters of the group distributions, respectively, obtained with the EM algorithm. The estimated posterior probabilities that observation x i belongs to population k are obtained by applying the Bayes Theorem: ( ) π k f x,k x i θ k Pr (k x i ) = ) K g=1 π g f x,g (x i θ g The observations are assigned to the density (cluster) k with maximum value of Pr (k x i ). Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 61 / 70

62 Model-based clustering In model-based clustering, it is possible to select the number of groups, K, from the data set. The idea is to compare solutions with different values of K = 1, 2,... and choosing the best result. For that, we can rely on model selection criteria such as the Akaike Information Criterion (AIC) or the Bayesian Information Criterion (BIC). For instance, the BIC selects the number of clusters that minimizes: BIC (k) = 2 l k ( θ X ) + log (n) q ) where l k ( θ X denotes the maximized log-likelihood assuming k groups and q is the number of parameters of the model. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 62 / 70

63 Model-based clustering M-clust is a popular method to perform model-based clustering. M-clust assumes Gaussian densities and selects the optimal model according to BIC. To reduce the number of parameters to fit, M-clust works with the spectral decomposition of the covariance matrices of the Gaussian densities, Σ k, for k = 1,..., K, given by: Σ k = λ 1,k V k Λk V k, where λ 1,k is the largest eigenvalue, V k is the matrix that contains the eigenvectors of Σ k and Λ k is the diagonal matrix of eigenvalues divided by λ 1,k. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 63 / 70

64 Model-based clustering The decompostion allows for different configurations: 1 spherical and equal volume, 2 spherical and unequal volume, 3 diagonal and equal volume and shape, 4 diagonal, varying volume and equal shape, 5 diagonal, equal volume and varying shape, 6 diagonal, varying volume and shape, 7 ellipsoidal, equal volume, shape, and orientation, 8 ellipsoidal, equal volume and equal shape, 9 ellipsoidal and equal shape, and 10 ellipsoidal, varying volume, shape, and orientation. Here (i) spherical, diagonal and ellipsoidal are relative to the covariance matrices; (ii) similar volume means that λ 1,1 = = λ 1,K ; (iii) equal shape means Λ 1 = = Λ K ; and (iv) equal orientation means V 1 = = V K. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 64 / 70

65 Illustrative example (I) For the states data set, Mclust selects an ellipsoidal, equal shape and orientation (VEE) model with 3 components. After estimating the model using the EM algorithm, the procedure compute the posterior probabilities for each country and population. The results are shown in the next two slides. The first one shows the scatterplot matrix with the assignments made by the algorithm. The second one shows the first two principal components with the assignments made by the algorithm. Note how close observations can be in different clusters. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 65 / 70

66 Illustrative example (I) M clust solution Log Population Income Log Illiteracy Life Exp Murder HS Grad Frost Log Area Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 66 / 70

67 Illustrative example (I) CLUSPLOT( X ) Component Mississippi South Carolina Louisiana Alabama Georgia Arkansas Kentucky North Carolina Tennessee Texas West Virginia New Mexico Virginia Arizona FloridaNew York Rhode Island Vermont Delaware New Hampshire Maine South Dakota Connecticut North Dakota Massachusetts Hawaii Idaho Oklahoma New Jersey Wyoming Montana Wisconsin Nebraska Maryland Indiana Utah Iowa Missouri Pennsylvania Minnesota Ohio Kansas Oregon Nevada Michigan Colorado Illinois Washington Alaska California These two components explain 62.5 % of the point variability. Component 1 Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 67 / 70

68 Model-based clustering There are other alternatives procedures for model based clustering. For instance, very appealing methodologies for estimating mixtures have been given from the Bayesian point of view. These procedures include the number of groups as an additional parameter, and posterior probabilities are also provided for this number. Also, procedures based on the use of projections (projection pursuit methods) are also very popular. The idea is to project the data into different directions that separate the groups as much as possible and look for clusters in the univariate projected data. Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 68 / 70

69 Chapter outline 1 Introduction 2 The clustering problem 3 Hierarchical clustering 4 Partition clustering 5 Model-based clustering Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 69 / 70

70 We are ready now for: Chapter 7: Classification analysis Pedro Galeano (Course 2017/2018) Multivariate Statistics - Chapter 6 Master in Mathematical Engineering 70 / 70

Multivariate Analysis

Multivariate Analysis Multivariate Analysis Chapter 5: Cluster analysis Pedro Galeano Departamento de Estadística Universidad Carlos III de Madrid pedro.galeano@uc3m.es Course 2015/2016 Master in Business Administration and

More information

Multivariate Statistics

Multivariate Statistics Multivariate Statistics Chapter 4: Factor analysis Pedro Galeano Departamento de Estadística Universidad Carlos III de Madrid pedro.galeano@uc3m.es Course 2017/2018 Master in Mathematical Engineering Pedro

More information

Multivariate Statistics

Multivariate Statistics Multivariate Statistics Chapter 3: Principal Component Analysis Pedro Galeano Departamento de Estadística Universidad Carlos III de Madrid pedro.galeano@uc3m.es Course 2017/2018 Master in Mathematical

More information

Jakarta International School 6 th Grade Formative Assessment Graphing and Statistics -Black

Jakarta International School 6 th Grade Formative Assessment Graphing and Statistics -Black Jakarta International School 6 th Grade Formative Assessment Graphing and Statistics -Black Name: Date: Score : 42 Data collection, presentation and application Frequency tables. (Answer question 1 on

More information

New Educators Campaign Weekly Report

New Educators Campaign Weekly Report Campaign Weekly Report Conversations and 9/24/2017 Leader Forms Emails Collected Text Opt-ins Digital Journey 14,661 5,289 4,458 7,124 317 13,699 1,871 2,124 Pro 13,924 5,175 4,345 6,726 294 13,086 1,767

More information

Standard Indicator That s the Latitude! Students will use latitude and longitude to locate places in Indiana and other parts of the world.

Standard Indicator That s the Latitude! Students will use latitude and longitude to locate places in Indiana and other parts of the world. Standard Indicator 4.3.1 That s the Latitude! Purpose Students will use latitude and longitude to locate places in Indiana and other parts of the world. Materials For the teacher: graph paper, globe showing

More information

Challenge 1: Learning About the Physical Geography of Canada and the United States

Challenge 1: Learning About the Physical Geography of Canada and the United States 60ºN S T U D E N T H A N D O U T Challenge 1: Learning About the Physical Geography of Canada and the United States 170ºE 10ºW 180º 20ºW 60ºN 30ºW 1 40ºW 160ºW 50ºW 150ºW 60ºW 140ºW N W S E 0 500 1,000

More information

Correction to Spatial and temporal distributions of U.S. winds and wind power at 80 m derived from measurements

Correction to Spatial and temporal distributions of U.S. winds and wind power at 80 m derived from measurements JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 109,, doi:10.1029/2004jd005099, 2004 Correction to Spatial and temporal distributions of U.S. winds and wind power at 80 m derived from measurements Cristina L. Archer

More information

Abortion Facilities Target College Students

Abortion Facilities Target College Students Target College Students By Kristan Hawkins Executive Director, Students for Life America Ashleigh Weaver Researcher Abstract In the Fall 2011, Life Dynamics released a study entitled, Racial Targeting

More information

, District of Columbia

, District of Columbia State Capitals These are the State Seals of each state. Fill in the blank with the name of each states capital city. (Hint: You may find it helpful to do the word search first to refresh your memory.),

More information

Cooperative Program Allocation Budget Receipts Southern Baptist Convention Executive Committee May 2018

Cooperative Program Allocation Budget Receipts Southern Baptist Convention Executive Committee May 2018 Cooperative Program Allocation Budget Receipts May 2018 Cooperative Program Allocation Budget Current Current $ Change % Change Month Month from from Contribution Sources 2017-2018 2016-2017 Prior Year

More information

Cooperative Program Allocation Budget Receipts Southern Baptist Convention Executive Committee October 2017

Cooperative Program Allocation Budget Receipts Southern Baptist Convention Executive Committee October 2017 Cooperative Program Allocation Budget Receipts October 2017 Cooperative Program Allocation Budget Current Current $ Change % Change Month Month from from Contribution Sources 2017-2018 2016-2017 Prior

More information

Cooperative Program Allocation Budget Receipts Southern Baptist Convention Executive Committee October 2018

Cooperative Program Allocation Budget Receipts Southern Baptist Convention Executive Committee October 2018 Cooperative Program Allocation Budget Receipts October 2018 Cooperative Program Allocation Budget Current Current $ Change % Change Month Month from from Contribution Sources 2018-2019 2017-2018 Prior

More information

Preview: Making a Mental Map of the Region

Preview: Making a Mental Map of the Region Preview: Making a Mental Map of the Region Draw an outline map of Canada and the United States on the next page or on a separate sheet of paper. Add a compass rose to your map, showing where north, south,

More information

Lecture 5: Ecological distance metrics; Principal Coordinates Analysis. Univariate testing vs. community analysis

Lecture 5: Ecological distance metrics; Principal Coordinates Analysis. Univariate testing vs. community analysis Lecture 5: Ecological distance metrics; Principal Coordinates Analysis Univariate testing vs. community analysis Univariate testing deals with hypotheses concerning individual taxa Is this taxon differentially

More information

Intercity Bus Stop Analysis

Intercity Bus Stop Analysis by Karalyn Clouser, Research Associate and David Kack, Director of the Small Urban and Rural Livability Center Western Transportation Institute College of Engineering Montana State University Report prepared

More information

Lecture 5: Ecological distance metrics; Principal Coordinates Analysis. Univariate testing vs. community analysis

Lecture 5: Ecological distance metrics; Principal Coordinates Analysis. Univariate testing vs. community analysis Lecture 5: Ecological distance metrics; Principal Coordinates Analysis Univariate testing vs. community analysis Univariate testing deals with hypotheses concerning individual taxa Is this taxon differentially

More information

Additional VEX Worlds 2019 Spot Allocations

Additional VEX Worlds 2019 Spot Allocations Overview VEX Worlds 2019 Spot s Qualifying spots for the VEX Robotics World Championship are calculated twice per year. On the following table, the number in the column is based on the number of teams

More information

QF (Build 1010) Widget Publishing, Inc Page: 1 Batch: 98 Test Mode VAC Publisher's Statement 03/15/16, 10:20:02 Circulation by Issue

QF (Build 1010) Widget Publishing, Inc Page: 1 Batch: 98 Test Mode VAC Publisher's Statement 03/15/16, 10:20:02 Circulation by Issue QF 1.100 (Build 1010) Widget Publishing, Inc Page: 1 Circulation by Issue Qualified Non-Paid Circulation Qualified Paid Circulation Individual Assoc. Total Assoc. Total Total Requester Group Qualified

More information

Hourly Precipitation Data Documentation (text and csv version) February 2016

Hourly Precipitation Data Documentation (text and csv version) February 2016 I. Description Hourly Precipitation Data Documentation (text and csv version) February 2016 Hourly Precipitation Data (labeled Precipitation Hourly in Climate Data Online system) is a database that gives

More information

Club Convergence and Clustering of U.S. State-Level CO 2 Emissions

Club Convergence and Clustering of U.S. State-Level CO 2 Emissions Methodological Club Convergence and Clustering of U.S. State-Level CO 2 Emissions J. Wesley Burnett Division of Resource Management West Virginia University Wednesday, August 31, 2013 Outline Motivation

More information

Outline. Administrivia and Introduction Course Structure Syllabus Introduction to Data Mining

Outline. Administrivia and Introduction Course Structure Syllabus Introduction to Data Mining Outline Administrivia and Introduction Course Structure Syllabus Introduction to Data Mining Dimensionality Reduction Introduction Principal Components Analysis Singular Value Decomposition Multidimensional

More information

Chapter. Organizing and Summarizing Data. Copyright 2013, 2010 and 2007 Pearson Education, Inc.

Chapter. Organizing and Summarizing Data. Copyright 2013, 2010 and 2007 Pearson Education, Inc. Chapter 2 Organizing and Summarizing Data Section 2.1 Organizing Qualitative Data Objectives 1. Organize Qualitative Data in Tables 2. Construct Bar Graphs 3. Construct Pie Charts When data is collected

More information

Online Appendix: Can Easing Concealed Carry Deter Crime?

Online Appendix: Can Easing Concealed Carry Deter Crime? Online Appendix: Can Easing Concealed Carry Deter Crime? David Fortunato University of California, Merced dfortunato@ucmerced.edu Regulations included in institutional context measure As noted in the main

More information

Printable Activity book

Printable Activity book Printable Activity book 16 Pages of Activities Printable Activity Book Print it Take it Keep them busy Print them out Laminate them or Put them in page protectors Put them in a binder Bring along a dry

More information

A. Geography Students know the location of places, geographic features, and patterns of the environment.

A. Geography Students know the location of places, geographic features, and patterns of the environment. Learning Targets Elementary Social Studies Grade 5 2014-2015 A. Geography Students know the location of places, geographic features, and patterns of the environment. A.5.1. A.5.2. A.5.3. A.5.4. Label North

More information

Multivariate Classification Methods: The Prevalence of Sexually Transmitted Diseases

Multivariate Classification Methods: The Prevalence of Sexually Transmitted Diseases Multivariate Classification Methods: The Prevalence of Sexually Transmitted Diseases Summer Undergraduate Mathematical Sciences Research Institute (SUMSRI) Lindsay Kellam, Queens College kellaml@queens.edu

More information

2005 Mortgage Broker Regulation Matrix

2005 Mortgage Broker Regulation Matrix 2005 Mortgage Broker Regulation Matrix Notes on individual states follow the table REG EXEMPTIONS LIC-EDU LIC-EXP LIC-EXAM LIC-CONT-EDU NET WORTH BOND MAN-LIC MAN-EDU MAN-EXP MAN-EXAM Alabama 1 0 2 0 0

More information

North American Geography. Lesson 2: My Country tis of Thee

North American Geography. Lesson 2: My Country tis of Thee North American Geography Lesson 2: My Country tis of Thee Unit Overview: As students work through the activities in this unit they will be introduced to the United States in general, different regions

More information

RELATIONSHIPS BETWEEN THE AMERICAN BROWN BEAR POPULATION AND THE BIGFOOT PHENOMENON

RELATIONSHIPS BETWEEN THE AMERICAN BROWN BEAR POPULATION AND THE BIGFOOT PHENOMENON RELATIONSHIPS BETWEEN THE AMERICAN BROWN BEAR POPULATION AND THE BIGFOOT PHENOMENON ETHAN A. BLIGHT Blight Investigations, Gainesville, FL ABSTRACT Misidentification of the American brown bear (Ursus arctos,

More information

Office of Special Education Projects State Contacts List - Part B and Part C

Office of Special Education Projects State Contacts List - Part B and Part C Office of Special Education Projects State Contacts List - Part B and Part C Source: http://www.ed.gov/policy/speced/guid/idea/monitor/state-contactlist.html Alabama Customer Specialist: Jill Harris 202-245-7372

More information

JAN/FEB MAR/APR MAY/JUN

JAN/FEB MAR/APR MAY/JUN QF 1.100 (Build 1010) Widget Publishing, Inc Page: 1 Circulation Breakdown by Issue Qualified Non-Paid Qualified Paid Previous This Previous This Total Total issue Removals Additions issue issue Removals

More information

SUPPLEMENTAL NUTRITION ASSISTANCE PROGRAM QUALITY CONTROL ANNUAL REPORT FISCAL YEAR 2008

SUPPLEMENTAL NUTRITION ASSISTANCE PROGRAM QUALITY CONTROL ANNUAL REPORT FISCAL YEAR 2008 SUPPLEMENTAL NUTRITION ASSISTANCE PROGRAM QUALITY CONTROL ANNUAL REPORT FISCAL YEAR 2008 U.S. DEPARTMENT OF AGRICULTURE FOOD AND NUTRITION SERVICE PROGRAM ACCOUNTABILITY AND ADMINISTRATION DIVISION QUALITY

More information

What Lies Beneath: A Sub- National Look at Okun s Law for the United States.

What Lies Beneath: A Sub- National Look at Okun s Law for the United States. What Lies Beneath: A Sub- National Look at Okun s Law for the United States. Nathalie Gonzalez Prieto International Monetary Fund Global Labor Markets Workshop Paris, September 1-2, 2016 What the paper

More information

Summary of Natural Hazard Statistics for 2008 in the United States

Summary of Natural Hazard Statistics for 2008 in the United States Summary of Natural Hazard Statistics for 2008 in the United States This National Weather Service (NWS) report summarizes fatalities, injuries and damages caused by severe weather in 2008. The NWS Office

More information

Last time: PCA. Statistical Data Mining and Machine Learning Hilary Term Singular Value Decomposition (SVD) Eigendecomposition and PCA

Last time: PCA. Statistical Data Mining and Machine Learning Hilary Term Singular Value Decomposition (SVD) Eigendecomposition and PCA Last time: PCA Statistical Data Mining and Machine Learning Hilary Term 2016 Dino Sejdinovic Department of Statistics Oxford Slides and other materials available at: http://www.stats.ox.ac.uk/~sejdinov/sdmml

More information

Alpine Funds 2016 Tax Guide

Alpine Funds 2016 Tax Guide Alpine s 2016 Guide Alpine Dynamic Dividend ADVDX 01/28/2016 01/29/2016 01/29/2016 0.020000000 0.017621842 0.000000000 0.00000000 0.017621842 0.013359130 0.000000000 0.000000000 0.002378158 0.000000000

More information

Crop Progress. Corn Mature Selected States [These 18 States planted 92% of the 2017 corn acreage]

Crop Progress. Corn Mature Selected States [These 18 States planted 92% of the 2017 corn acreage] Crop Progress ISSN: 00 Released October, 0, by the National Agricultural Statistics Service (NASS), Agricultural Statistics Board, United s Department of Agriculture (USDA). Corn Mature Selected s [These

More information

Osteopathic Medical Colleges

Osteopathic Medical Colleges Osteopathic Medical Colleges Matriculants by U.S. States and Territories Entering Class 0 Prepared by the Research Department American Association of Colleges of Osteopathic Medicine Copyright 0, AAM All

More information

Alpine Funds 2017 Tax Guide

Alpine Funds 2017 Tax Guide Alpine s 2017 Guide Alpine Dynamic Dividend ADVDX 1/30/17 1/31/17 1/31/17 0.020000000 0.019248130 0.000000000 0.00000000 0.019248130 0.013842273 0.000000000 0.000000000 0.000751870 0.000000000 0.00 0.00

More information

Parametric Test. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 1984.

Parametric Test. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 1984. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 984. y ˆ = a + b x + b 2 x 2K + b n x n where n is the number of variables Example: In an earlier bivariate

More information

Meteorology 110. Lab 1. Geography and Map Skills

Meteorology 110. Lab 1. Geography and Map Skills Meteorology 110 Name Lab 1 Geography and Map Skills 1. Geography Weather involves maps. There s no getting around it. You must know where places are so when they are mentioned in the course it won t be

More information

LABORATORY REPORT. If you have any questions concerning this report, please do not hesitate to call us at (800) or (574)

LABORATORY REPORT. If you have any questions concerning this report, please do not hesitate to call us at (800) or (574) LABORATORY REPORT If you have any questions concerning this report, please do not hesitate to call us at (800) 332-4345 or (574) 233-4777. This report may not be reproduced, except in full, without written

More information

LABORATORY REPORT. If you have any questions concerning this report, please do not hesitate to call us at (800) or (574)

LABORATORY REPORT. If you have any questions concerning this report, please do not hesitate to call us at (800) or (574) LABORATORY REPORT If you have any questions concerning this report, please do not hesitate to call us at (800) 332-4345 or (574) 233-4777. This report may not be reproduced, except in full, without written

More information

Grand Total Baccalaureate Post-Baccalaureate Masters Doctorate Professional Post-Professional

Grand Total Baccalaureate Post-Baccalaureate Masters Doctorate Professional Post-Professional s by Location of Permanent Home Address and Degree Level Louisiana Acadia 19 13 0 3 0 3 0 0 0 Allen 5 5 0 0 0 0 0 0 0 Ascension 307 269 2 28 1 6 0 1 0 Assumption 14 12 0 1 0 1 0 0 0 Avoyelles 6 4 0 1 0

More information

BlackRock Core Bond Trust (BHK) BlackRock Enhanced International Dividend Trust (BGY) 2 BlackRock Defined Opportunity Credit Trust (BHL) 3

BlackRock Core Bond Trust (BHK) BlackRock Enhanced International Dividend Trust (BGY) 2 BlackRock Defined Opportunity Credit Trust (BHL) 3 MUNICIPAL FUNDS Arizona (MZA) California Municipal Income Trust (BFZ) California Municipal 08 Term Trust (BJZ) California Quality (MCA) California Quality (MUC) California (MYC) Florida Municipal 00 Term

More information

Non-iterative, regression-based estimation of haplotype associations

Non-iterative, regression-based estimation of haplotype associations Non-iterative, regression-based estimation of haplotype associations Benjamin French, PhD Department of Biostatistics and Epidemiology University of Pennsylvania bcfrench@upenn.edu National Cancer Center

More information

Grand Total Baccalaureate Post-Baccalaureate Masters Doctorate Professional Post-Professional

Grand Total Baccalaureate Post-Baccalaureate Masters Doctorate Professional Post-Professional s by Location of Permanent Home Address and Degree Level Louisiana Acadia 26 19 0 6 1 0 0 0 0 Allen 7 7 0 0 0 0 0 0 0 Ascension 275 241 3 23 1 6 0 1 0 Assumption 13 12 0 1 0 0 0 0 0 Avoyelles 15 11 0 3

More information

An Analysis of Regional Income Variation in the United States:

An Analysis of Regional Income Variation in the United States: Modern Economy, 2017, 8, 232-248 http://www.scirp.org/journal/me ISSN Online: 2152-7261 ISSN Print: 2152-7245 An Analysis of Regional Income Variation in the United States: 1969-2013 Orley M. Amos Jr.

More information

High School World History Cycle 2 Week 2 Lifework

High School World History Cycle 2 Week 2 Lifework Name: Advisory: Period: High School World History Cycle 2 Week 2 Lifework This packet is due Monday, November 7 Complete and turn in on Friday for 10 points of EXTRA CREDIT! Lifework Assignment Complete

More information

OUT-OF-STATE 965 SUBTOTAL OUT-OF-STATE U.S. TERRITORIES FOREIGN COUNTRIES UNKNOWN GRAND TOTAL

OUT-OF-STATE 965 SUBTOTAL OUT-OF-STATE U.S. TERRITORIES FOREIGN COUNTRIES UNKNOWN GRAND TOTAL Report ID: USSR8072-V3 Page No. 1 Jurisdiction: ON-CAMPUS IL Southern Illinois University - Carb 1 0 0 0 Black Hawk College Quad-Cities 0 0 1 0 John A Logan College 1 0 0 0 Rend Lake College 1 0 0 0 Aurora

More information

Office of Budget & Planning 311 Thomas Boyd Hall Baton Rouge, LA Telephone 225/ Fax 225/

Office of Budget & Planning 311 Thomas Boyd Hall Baton Rouge, LA Telephone 225/ Fax 225/ Louisiana Acadia 20 17 3 0 0 0 Allen 2 2 0 0 0 0 Ascension 226 185 37 2 1 1 Assumption 16 15 1 0 0 0 Avoyelles 20 19 1 0 0 0 Beauregard 16 11 4 0 0 1 Bienville 2 2 0 0 0 0 Bossier 22 18 4 0 0 0 Caddo 91

More information

extreme weather, climate & preparedness in the american mind

extreme weather, climate & preparedness in the american mind extreme weather, climate & preparedness in the american mind Extreme Weather, Climate & Preparedness In the American Mind Interview dates: March 12, 2012 March 30, 2012. Interviews: 1,008 Adults (18+)

More information

JAN/FEB MAR/APR MAY/JUN

JAN/FEB MAR/APR MAY/JUN QF 1.100 (Build 1010) Widget Publishing, Inc Page: 1 Circulation Breakdown by Issue Analyzed Nonpaid and Verified Paid Previous This Previous This Total Total issue Removals Additions issue issue Removals

More information

Insurance Department Resources Report Volume 1

Insurance Department Resources Report Volume 1 2014 Insurance Department Resources Report Volume 1 201 Insurance Department Resources Report Volume One 201 The NAIC is the authoritative source for insurance industry information. Our expert solutions

More information

MINERALS THROUGH GEOGRAPHY

MINERALS THROUGH GEOGRAPHY MINERALS THROUGH GEOGRAPHY INTRODUCTION Minerals are related to rock type, not political definition of place. So, the minerals are to be found in a variety of locations that doesn t depend on population

More information

Chapter 11 : State SAT scores for 1982 Data Listing

Chapter 11 : State SAT scores for 1982 Data Listing EXST3201 Chapter 12a Geaghan Fall 2005: Page 1 Chapter 12 : Variable selection An example: State SAT scores In 1982 there was concern for scores of the Scholastic Aptitude Test (SAT) scores that varied

More information

National Organization of Life and Health Insurance Guaranty Associations

National Organization of Life and Health Insurance Guaranty Associations National Organization of and Health Insurance Guaranty Associations November 21, 2005 Dear Chief Executive Officer: Consistent with prior years, NOLHGA is providing the enclosed data regarding insolvency

More information

Statistical Methods for Data Mining

Statistical Methods for Data Mining Statistical Methods for Data Mining Kuangnan Fang Xiamen University Email: xmufkn@xmu.edu.cn Linear Model Selection and Regularization Recall the linear model Y = 0 + 1 X 1 + + p X p +. In the lectures

More information

MINERALS THROUGH GEOGRAPHY. General Standard. Grade level K , resources, and environmen t

MINERALS THROUGH GEOGRAPHY. General Standard. Grade level K , resources, and environmen t Minerals through Geography 1 STANDARDS MINERALS THROUGH GEOGRAPHY See summary of National Science Education s. Original: http://books.nap.edu/readingroom/books/nses/ Concept General Specific General Specific

More information

Infant Mortality: Cross Section study of the United State, with Emphasis on Education

Infant Mortality: Cross Section study of the United State, with Emphasis on Education Illinois State University ISU ReD: Research and edata Stevenson Center for Community and Economic Development Arts and Sciences Fall 12-15-2014 Infant Mortality: Cross Section study of the United State,

More information

United States Geography Unit 1

United States Geography Unit 1 United States Geography Unit 1 I WANT YOU TO STUDY YOUR GEORGAPHY Name: Period: Due Date: Geography Key Terms Absolute Location: Relative Location: Demographic Map: Population Density: Sun-Belt: Archipelago:

More information

GIS use in Public Health 1

GIS use in Public Health 1 Geographic Information Systems (GIS) use in Public Health Douglas Morales, MPH Epidemiologist/GIS Coordinator Office of Health Assessment and Epidemiology Epidemiology Unit Objectives Define GIS and justify

More information

Pima Community College Students who Enrolled at Top 200 Ranked Universities

Pima Community College Students who Enrolled at Top 200 Ranked Universities Pima Community College Students who Enrolled at Top 200 Ranked Universities Institutional Research, Planning and Effectiveness Project #20170814-MH-60-CIR August 2017 Students who Attended Pima Community

More information

KS PUBL 4YR Kansas State University Pittsburg State University SUBTOTAL-KS

KS PUBL 4YR Kansas State University Pittsburg State University SUBTOTAL-KS Report ID: USSR8072-V3 Page No. 1 Jurisdiction: ON-CAMPUS IL PUBL TCH DeVry University Addison 1 0 0 0 Eastern Illinois University 1 0 0 0 Illinois State University 0 0 2 0 Northern Illinois University

More information

Rank University AMJ AMR ASQ JAP OBHDP OS PPSYCH SMJ SUM 1 University of Pennsylvania (T) Michigan State University

Rank University AMJ AMR ASQ JAP OBHDP OS PPSYCH SMJ SUM 1 University of Pennsylvania (T) Michigan State University Rank University AMJ AMR ASQ JAP OBHDP OS PPSYCH SMJ SUM 1 University of Pennsylvania 4 1 2 0 2 4 0 9 22 2(T) Michigan State University 2 0 0 9 1 0 0 4 16 University of Michigan 3 0 2 5 2 0 0 4 16 4 Harvard

More information

October 2016 v1 12/10/2015 Page 1 of 10

October 2016 v1 12/10/2015 Page 1 of 10 State Section S s Effective October 1, 2016 Overview The tables list the Section S items that will be active on records with a target date on or after October 1, 2016. The active on each item subset code

More information

Package ZIM. R topics documented: August 29, Type Package. Title Statistical Models for Count Time Series with Excess Zeros. Version 1.

Package ZIM. R topics documented: August 29, Type Package. Title Statistical Models for Count Time Series with Excess Zeros. Version 1. Package ZIM August 29, 2013 Type Package Title Statistical Models for Count Time Series with Excess Zeros Version 1.0 Date 2013-06-15 Author Ming Yang, Gideon K. D. Zamba, and Joseph E. Cavanaugh Maintainer

More information

FLOOD/FLASH FLOOD. Lightning. Tornado

FLOOD/FLASH FLOOD. Lightning. Tornado 2004 Annual Summaries National Oceanic and Atmospheric Administration National Environmental Satellite Data Information Service National Climatic Data Center FLOOD/FLASH FLOOD Lightning Tornado Hurricane

More information

Stem-and-Leaf Displays

Stem-and-Leaf Displays 3.2 Displaying Numerical Data: Stem-and-Leaf Displays 107 casts in your area? (San Luis Obispo Tribune, June 15, 2005). The responses are summarized in the table below. Extremely 4% Very 27% Somewhat 53%

More information

A Summary of State DOT GIS Activities

A Summary of State DOT GIS Activities A Summary of State DOT GIS Activities Prepared for the 2006 AASHTO GIS-T Symposium Columbus, OH Introduction This is the 11 th year that the GIS-T Symposium has conducted a survey of GIS activities at

More information

112th U.S. Senate ACEC Scorecard

112th U.S. Senate ACEC Scorecard 112th U.S. Senate ACEC Scorecard HR 658 FAA Funding Alaska Alabama Arkansas Arizona California Colorado Connecticut S1 Lisa Murkowski R 100% Y Y Y Y Y Y Y Y Y S2 Mark Begich D 89% Y Y Y Y N Y Y Y Y S1

More information

DOWNLOAD OR READ : USA PLANNING MAP PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : USA PLANNING MAP PDF EBOOK EPUB MOBI DOWNLOAD OR READ : USA PLANNING MAP PDF EBOOK EPUB MOBI Page 1 Page 2 usa planning map usa planning map pdf usa planning map Printable USA Blank Map, USA Blank Map PDF, Blank US State Map. Thursday, 19

More information

MO PUBL 4YR 2090 Missouri State University SUBTOTAL-MO

MO PUBL 4YR 2090 Missouri State University SUBTOTAL-MO Report ID: USSR8072-V3 Page No. 1 Jurisdiction: ON-CAMPUS IL American Intercontinental Universit 0 0 1 0 Northern Illinois University 0 0 4 0 Southern Illinois Univ - Edwardsvil 2 0 2 0 Southern Illinois

More information

CCC-A Survey Summary Report: Number and Type of Responses

CCC-A Survey Summary Report: Number and Type of Responses CCC-A Survey Summary Report: Number and Type of Responses Suggested Citation: American Speech-Language-Hearing Association. (2011). 2011 Membership survey. CCC-A survey summary report: Number and type

More information

Green Building Criteria in Low-Income Housing Tax Credit Programs Analysis

Green Building Criteria in Low-Income Housing Tax Credit Programs Analysis Green Building Criteria in Low-Income Housing Tax Credit Programs 2010 Analysis www.globalgreen.org September 2010 Green Building Criteria in State Low-Income Housing Tax Credit Programs 2 Introduction

More information

Data Preprocessing. Cluster Similarity

Data Preprocessing. Cluster Similarity 1 Cluster Similarity Similarity is most often measured with the help of a distance function. The smaller the distance, the more similar the data objects (points). A function d: M M R is a distance on M

More information

Introducing North America

Introducing North America Introducing North America I. Quick Stats Includes U.S. & Canada U.S consists of 50 States Federal Government Democracy 4 th in world w/ land area 3 rd in population Economic leader of free world II. Major

More information

Office of Budget & Planning 311 Thomas Boyd Hall Baton Rouge, LA Telephone 225/ Fax 225/

Office of Budget & Planning 311 Thomas Boyd Hall Baton Rouge, LA Telephone 225/ Fax 225/ Louisiana Acadia 25 19 4 2 0 0 Allen 8 7 1 0 0 0 Ascension 173 143 26 1 0 3 Assumption 14 12 2 0 0 0 Avoyelles 51 41 9 0 0 1 Beauregard 18 14 3 0 0 1 Bienville 5 0 4 0 1 0 Bossier 28 27 0 1 0 0 Caddo 95

More information

Fungal conservation in the USA

Fungal conservation in the USA The following supplements accompany the article Fungal conservation in the USA Jessica L. Allen*, James C. Lendemer *Corresponding author: jlendemer@nybg.org Endangered Species Research 28: 33 42 (2015)

More information

A GUIDE TO THE CARTOGRAPHIC PRODUCTS OF

A GUIDE TO THE CARTOGRAPHIC PRODUCTS OF A GUIDE TO THE CARTOGRAPHIC PRODUCTS OF THE FEDERAL DEPOSITORY LIBRARY PROGRAM (FDLP) This guide was designed for use as a collection development tool by map selectors of depository libraries that participate

More information

State Section S Items Effective October 1, 2017

State Section S Items Effective October 1, 2017 State Section S Items Effective October 1, 2017 Overview The tables list the Section S items that will be active on records with a target date on or after October 1, 2017. The active item on each item

More information

Evidence for increasingly extreme and variable drought conditions in the contiguous United States between 1895 and 2012

Evidence for increasingly extreme and variable drought conditions in the contiguous United States between 1895 and 2012 Evidence for increasingly extreme and variable drought conditions in the contiguous United States between 1895 and 2012 Sierra Rayne a,, Kaya Forest b a Chemologica Research, 318 Rose Street, PO Box 74,

More information

Clustering. CSL465/603 - Fall 2016 Narayanan C Krishnan

Clustering. CSL465/603 - Fall 2016 Narayanan C Krishnan Clustering CSL465/603 - Fall 2016 Narayanan C Krishnan ckn@iitrpr.ac.in Supervised vs Unsupervised Learning Supervised learning Given x ", y " "%& ', learn a function f: X Y Categorical output classification

More information

This project is supported by a National Crime Victims' Right Week Community Awareness Project subgrant awarded by the National Association of VOCA

This project is supported by a National Crime Victims' Right Week Community Awareness Project subgrant awarded by the National Association of VOCA TABLE OF CONTENTS ACTIVITY PAGES Coloring Pages Younger Children (6) Coloring Pages Older (2) Connect the Dots (1 English, 1 Spanish) Word Search 1 (1 English, 1 Spanish) Younger Children Word Search 2

More information

All-Time Conference Standings

All-Time Conference Standings All-Time Conference Standings Pac 12 Conference Conf. Matches Sets Overall Matches Team W L Pct W L Pct. Score Opp Last 10 Streak Home Away Neutral W L Pct. Arizona 6 5.545 22 19.537 886 889 6-4 W5 4-2

More information

BOWL - APRIL 27, QUESTIONS 45 MINUTES

BOWL - APRIL 27, QUESTIONS 45 MINUTES PHYSICSBOWL AAPT/Metrologic High School Physics Contest PHYSICS BOWL - APRIL 27, 1995 40 QUESTIONS 45 MINUTES This contest is sponsored by the American Association of Physics Teachers (AAPT) and Metrologic

More information

Multivariate Statistics

Multivariate Statistics Multivariate Statistics Chapter 2: Multivariate distributions and inference Pedro Galeano Departamento de Estadística Universidad Carlos III de Madrid pedro.galeano@uc3m.es Course 2016/2017 Master in Mathematical

More information

Statistics 202: Data Mining. c Jonathan Taylor. Model-based clustering Based in part on slides from textbook, slides of Susan Holmes.

Statistics 202: Data Mining. c Jonathan Taylor. Model-based clustering Based in part on slides from textbook, slides of Susan Holmes. Model-based clustering Based in part on slides from textbook, slides of Susan Holmes December 2, 2012 1 / 1 Model-based clustering General approach Choose a type of mixture model (e.g. multivariate Normal)

More information

The Heterogeneous Effects of the Minimum Wage on Employment Across States

The Heterogeneous Effects of the Minimum Wage on Employment Across States The Heterogeneous Effects of the Minimum Wage on Employment Across States Wuyi Wang a, Peter C.B. Phillips b, Liangjun Su c a Institute for Economic and Social Research, Jinan University b Yale University,

More information

Division I Sears Directors' Cup Final Standings As of 6/20/2001

Division I Sears Directors' Cup Final Standings As of 6/20/2001 1 Stanford (Cal.) 1359 2 90 9 75 20 62.5 0 0 0 0 0 0 3 75 1 100 5 60 8 76 4 80 0 0 2 70 2 California-Los Angeles 1138 0 0 5 78.5 17 67 0 0 0 0 0 0 2 90 9 50 5 60 2 0 33 48.5 2 70 1 100 3 Georgia 890.5

More information

PHYSICS BOWL - APRIL 22, 1998

PHYSICS BOWL - APRIL 22, 1998 AAPT/Metrologic High School Physics Contest PHYSICS BOWL - APRIL 22, 1998 40 QUESTIONS 45 MINUTES This contest is sponsored by the American Association of Physics Teachers (AAPT) and Metrologic Instruments

More information

Physical Features of Canada and the United States

Physical Features of Canada and the United States I VIUAL Physical Features of Canada and the United tates 170 ARCTIC OCA Aleutian s 1 Bering ea ALAKA Yukon R. Mt. McKinley (20,320 ft. 6,194 m) Gulf of Alaska BROOK RAG RAG Queen Charlotte s R Vancouver

More information

Physical Features of Canada and the United States

Physical Features of Canada and the United States Physical Features of Canada and the United tates 170 ARCTIC OCA Aleutian s 1 1 Bering ea ALAKA Yukon R. Mt. McKinley (20,320 ft. 6,194 m) Gulf of Alaska BROOK RAG RAG Queen Charlotte s R Vancouver O C

More information

Chapter 5 Linear least squares regression

Chapter 5 Linear least squares regression Chapter 5 Linear least squares regression Consider first simple linear regression. For now, the model of interest is only the model of the conditional expectations; the distribution of the residuals is

More information

Direct Selling Association 1

Direct Selling Association 1 Total Number of Firms 1,100 104 58 46 14 41 22 27 44 60 1 U.S. Sales Volume & Growth 1 Average Retail Sales per Firm ($thousands) 2015 $32,836 $210,572 $320,820 $69,556 $1,041 $11,788 $100,216 $721,897

More information

14. Where in the World is Wheat?

14. Where in the World is Wheat? 14. Where in the World is Wheat? Overview Every year thousands of acres of land are planted with wheat, which provides food for people and animals around the world. However, wheat cannot be grown in all

More information

Summary of Terminal Master s Degree Programs in Philosophy

Summary of Terminal Master s Degree Programs in Philosophy Summary of Terminal Master s Degree Programs in Philosophy Faculty and Student Demographics All data collected by the ican Philosophical Association. The data in this publication have been provided by

More information

2011 NATIONAL SURVEY ON DRUG USE AND HEALTH

2011 NATIONAL SURVEY ON DRUG USE AND HEALTH 2011 NATIONAL SURVEY ON DRUG USE AND HEALTH PERSON-LEVEL SAMPLING WEIGHT CALIBRATION Prepared for the 2011 Methodological Resource Book Contract No. HHSS283200800004C RTI Project No. 0211838.207.004 Phase

More information

Crop / Weather Update

Crop / Weather Update Crop / Weather Update Corn Crop Condition Percent of Acreage Rated Good or Excellent 85 80 75 70 65 60 55 50 45 As of September 9, USDA rates the crop at 68% good to excellent. The rating is up one point

More information