Topic Modeling — Text Files#

In these lessons, we’re learning about a text analysis method called topic modeling. This method will help us identify the main topics or discourses within a collection of texts or single text that has been separated into smaller text chunks.


Dataset#

New York Times Obituaries#

Georgia O’Keeffe, the undisputed doyenne of American painting and a leader, with her husband, Alfred Stieglitz, of a crucial phase in the development and dissemination of American modernism, died yesterday at St. Vincent Hospital in Santa Fe, N.M.

—Edith Evans Asbury, Georgia O'Keefe Dead At 98

In this particular lesson, we’re going to use Little MALLET Wrapper, a Python wrapper for MALLET, to topic model 379 obituaries published by The New York Times. This dataset is based on data originally collected by Matt Lavin for his Programming Historian TF-IDF tutorial. I have re-scraped the obituaries so that the subject’s name and death year is included in each text file name, and I have added 13 more “Overlooked” obituaries, including Karen Spärck Jones, the computer scientist who introduced TF-IDF.


Set MALLET Path#

Note

If you’re working in this Jupyter notebook on your own computer, you’ll need to have both the Java Development Kit and MALLET pre-installed. For set up instructions, please see the previous lesson .

If you’re working in this Jupyter notebook in the cloud via Binder, then the Java Development Kit and Mallet will already be installed. You’re good to go!

Since Little MALLET Wrapper is a Python package built around MALLET, we first need to tell it where the bigger, Java-based MALLET lives.

We’re going to make a variable called path_to_mallet and assign it the file path of our MALLET program. We need to point it, specifically, to the “mallet” file inside the “bin” folder inside the “mallet-2.0.8” folder.

path_to_mallet = 'mallet-2.0.8/bin/mallet'

If MALLET is located in another directory, then set your path_to_mallet to that file path.

Install Packages#

#!pip install little_mallet_wrapper
#!pip install seaborn

Import Packages#

#!pip install little_mallet_wrapper
#!pip install seaborn

Now let’s import the little_mallet_wrapper and the data viz library seaborn.

import little_mallet_wrapper
import seaborn
import glob
from pathlib import Path

We’re also going to import glob and pathlib for working with files and the file system.

Get Training Data From Text Files#

Before we topic model the NYT obituaries, we need to process the text files and prepare them for analysis. The steps below demonstrate how to process texts if your corpus is a collection of separate text files. In the next lesson, we’ll demonstrate how to process texts that come from a CSV file.

Note

We’re calling these text files our training data, because we’re training our topic model with these texts. The topic model will be learning and extracting topics based on these texts.

To get the necessary text files, we’re going to make a variable and assign it the file path for the directory that contains the text files.

directory = "../texts/history/NYT-Obituaries/"

Then we’re going to use the glob.gob() function to make a list of all (*) the .txt files in that directory.

files = glob.glob(f"{directory}/*.txt")
files
Hide code cell output
['../texts/history/NYT-Obituaries/1945-Adolf-Hitler.txt',
 '../texts/history/NYT-Obituaries/1915-F-W-Taylor.txt',
 '../texts/history/NYT-Obituaries/1975-Chiang-Kai-shek.txt',
 '../texts/history/NYT-Obituaries/1984-Ethel-Merman.txt',
 '../texts/history/NYT-Obituaries/1953-Jim-Thorpe.txt',
 '../texts/history/NYT-Obituaries/1964-Nella-Larsen.txt',
 '../texts/history/NYT-Obituaries/1955-Margaret-Abbott.txt',
 '../texts/history/NYT-Obituaries/1984-Lillian-Hellman.txt',
 '../texts/history/NYT-Obituaries/1959-Cecil-De-Mille.txt',
 '../texts/history/NYT-Obituaries/1928-Mabel-Craty.txt',
 '../texts/history/NYT-Obituaries/1973-Eddie-Rickenbacker.txt',
 '../texts/history/NYT-Obituaries/1989-Ferdinand-Marcos.txt',
 '../texts/history/NYT-Obituaries/1991-Martha-Graham.txt',
 '../texts/history/NYT-Obituaries/1997-Deng-Xiaoping.txt',
 '../texts/history/NYT-Obituaries/1938-George-E-Hale.txt',
 '../texts/history/NYT-Obituaries/1885-Ulysses-Grant.txt',
 '../texts/history/NYT-Obituaries/1909-Sarah-Orne-Jewett.txt',
 '../texts/history/NYT-Obituaries/1957-Christian-Dior.txt',
 '../texts/history/NYT-Obituaries/1987-Clare-Boothe-Luce.txt',
 '../texts/history/NYT-Obituaries/1976-Jacques-Monod.txt',
 '../texts/history/NYT-Obituaries/1954-Getulio-Vargas.txt',
 '../texts/history/NYT-Obituaries/1979-Stan-Kenton.txt',
 '../texts/history/NYT-Obituaries/1990-Leonard-Bernstein.txt',
 '../texts/history/NYT-Obituaries/1972-Jackie-Robinson.txt',
 '../texts/history/NYT-Obituaries/1998-Fred-W-Friendly.txt',
 '../texts/history/NYT-Obituaries/1991-Leo-Durocher.txt',
 '../texts/history/NYT-Obituaries/1915-B-T-Washington.txt',
 '../texts/history/NYT-Obituaries/1997-James-Stewart.txt',
 '../texts/history/NYT-Obituaries/1981-Joe-Louis.txt',
 '../texts/history/NYT-Obituaries/1983-Muddy-Waters.txt',
 '../texts/history/NYT-Obituaries/1942-George-M-Cohan.txt',
 '../texts/history/NYT-Obituaries/1989-Samuel-Beckett.txt',
 '../texts/history/NYT-Obituaries/1962-Marilyn-Monroe.txt',
 '../texts/history/NYT-Obituaries/2000-Charles-M-Schulz.txt',
 '../texts/history/NYT-Obituaries/1967-Gregory-Pincus.txt',
 '../texts/history/NYT-Obituaries/1894-R-L-Stevenson.txt',
 '../texts/history/NYT-Obituaries/1978-Bruce-Catton.txt',
 '../texts/history/NYT-Obituaries/1982-Arthur-Rubinstein.txt',
 '../texts/history/NYT-Obituaries/1875-Andrew-Johnson.txt',
 '../texts/history/NYT-Obituaries/1974-Charles-Lindbergh.txt',
 '../texts/history/NYT-Obituaries/1964-Rachel-Carson.txt',
 '../texts/history/NYT-Obituaries/1953-Marjorie-Rawlings.txt',
 '../texts/history/NYT-Obituaries/1973-Otto-Klemperer.txt',
 '../texts/history/NYT-Obituaries/1963-Sylvia-Plath.txt',
 '../texts/history/NYT-Obituaries/1956-Charles-Merrill.txt',
 '../texts/history/NYT-Obituaries/1966-Lenny-Bruce.txt',
 '../texts/history/NYT-Obituaries/1908-Cleveland.txt',
 '../texts/history/NYT-Obituaries/1982-Anna-Freud.txt',
 '../texts/history/NYT-Obituaries/1941-Frank-Conrad.txt',
 '../texts/history/NYT-Obituaries/1966-Alfred-P-Sloan-Jr.txt',
 '../texts/history/NYT-Obituaries/1960-Beno-Gutenberg.txt',
 '../texts/history/NYT-Obituaries/1976-J-Paul-Getty.txt',
 '../texts/history/NYT-Obituaries/1891-P-T-Barnum.txt',
 '../texts/history/NYT-Obituaries/1901-Queen-Victoria.txt',
 '../texts/history/NYT-Obituaries/1970-Erich-Maria-Remarque.txt',
 '../texts/history/NYT-Obituaries/1989-August-A-Busch-Jr.txt',
 '../texts/history/NYT-Obituaries/1992-John-Cage.txt',
 '../texts/history/NYT-Obituaries/1994-Erik-Erikson.txt',
 '../texts/history/NYT-Obituaries/1990-Erte.txt',
 '../texts/history/NYT-Obituaries/1966-Chester-Nimitz.txt',
 '../texts/history/NYT-Obituaries/1954-Enrico-Fermi.txt',
 '../texts/history/NYT-Obituaries/1961-Primitive-Artist.txt',
 '../texts/history/NYT-Obituaries/1945-Bela-Bartok.txt',
 '../texts/history/NYT-Obituaries/1978-Pope-Paul-VI.txt',
 '../texts/history/NYT-Obituaries/1965-Martin-Buber.txt',
 '../texts/history/NYT-Obituaries/1971-Diane-Arbus.txt',
 '../texts/history/NYT-Obituaries/1973-Lyndon-Johnson.txt',
 '../texts/history/NYT-Obituaries/1998-Bob-Kane.txt',
 '../texts/history/NYT-Obituaries/1969-Judy-Garland.txt',
 '../texts/history/NYT-Obituaries/1959-Frank-Lloyd-Wright.txt',
 '../texts/history/NYT-Obituaries/1995-Ginger-Rogers.txt',
 '../texts/history/NYT-Obituaries/1920-Marlene-Dietrich.txt',
 '../texts/history/NYT-Obituaries/1998-Alan-B-Shepard-Jr.txt',
 '../texts/history/NYT-Obituaries/1971-Khrushchev.txt',
 '../texts/history/NYT-Obituaries/1935-Justice-Holmes.txt',
 '../texts/history/NYT-Obituaries/1969-David-Eisenhower.txt',
 '../texts/history/NYT-Obituaries/1992-Marsha-P-Johnson.txt',
 '../texts/history/NYT-Obituaries/1914-Alfred-Thayer-Mahan.txt',
 '../texts/history/NYT-Obituaries/1965-Branch-Rickey.txt',
 '../texts/history/NYT-Obituaries/2007-Karen-Sparck-Jones.txt',
 '../texts/history/NYT-Obituaries/1965-Albert-Schweitzer.txt',
 '../texts/history/NYT-Obituaries/1992-Isaac-Asimov.txt',
 '../texts/history/NYT-Obituaries/1989-William-B-Shockley.txt',
 '../texts/history/NYT-Obituaries/1910-William-James.txt',
 '../texts/history/NYT-Obituaries/1951-Fanny-Brice.txt',
 '../texts/history/NYT-Obituaries/1916-Jack-London.txt',
 '../texts/history/NYT-Obituaries/1947-Al-Capone.txt',
 '../texts/history/NYT-Obituaries/1989-Lucille-Ball.txt',
 '../texts/history/NYT-Obituaries/1980-Jean-Paul-Sartre.txt',
 '../texts/history/NYT-Obituaries/1969-Sonja-Henie.txt',
 '../texts/history/NYT-Obituaries/1976-Adolph-Zukor.txt',
 '../texts/history/NYT-Obituaries/1959-John-Dulles.txt',
 '../texts/history/NYT-Obituaries/1980-Alfred-Hitchcock.txt',
 '../texts/history/NYT-Obituaries/1901-Benjamin-Harrison.txt',
 '../texts/history/NYT-Obituaries/1994-Richard-Nixon.txt',
 '../texts/history/NYT-Obituaries/1917-Hilaire-G-E-Degas.txt',
 '../texts/history/NYT-Obituaries/1987-James-Baldwin.txt',
 '../texts/history/NYT-Obituaries/1941-Virginia-Woolf.txt',
 '../texts/history/NYT-Obituaries/1922-Alexander-Graham-Bell.txt',
 '../texts/history/NYT-Obituaries/1907-Qiu-Jin.txt',
 '../texts/history/NYT-Obituaries/1895-Fred-Douglass.txt',
 '../texts/history/NYT-Obituaries/1971-Florence-Blanchfield.txt',
 '../texts/history/NYT-Obituaries/1984-Ray-A-Kroc.txt',
 '../texts/history/NYT-Obituaries/1947-Fiorello-La-Guardia.txt',
 '../texts/history/NYT-Obituaries/1988-Louis-L-Amour.txt',
 '../texts/history/NYT-Obituaries/1902-Elizabeth-Cady-Stanton.txt',
 '../texts/history/NYT-Obituaries/1965-Shirley-Jackson.txt',
 '../texts/history/NYT-Obituaries/1979-John-Wayne.txt',
 '../texts/history/NYT-Obituaries/1994-Thomas-P-O-Neill-Jr.txt',
 '../texts/history/NYT-Obituaries/1982-Thelonious-Monk.txt',
 '../texts/history/NYT-Obituaries/1919-C-J-Walker.txt',
 '../texts/history/NYT-Obituaries/1954-Liberty-H-Bailey.txt',
 '../texts/history/NYT-Obituaries/1977-Dash-Ended.txt',
 '../texts/history/NYT-Obituaries/1936-Maxim-Gorky.txt',
 '../texts/history/NYT-Obituaries/2000-Pierre-Trudeau.txt',
 '../texts/history/NYT-Obituaries/1976-Mao-Tse-Tung.txt',
 '../texts/history/NYT-Obituaries/1955-Walter-White.txt',
 '../texts/history/NYT-Obituaries/1930-Conan-Doyle.txt',
 '../texts/history/NYT-Obituaries/1995-Jonas-Salk.txt',
 '../texts/history/NYT-Obituaries/1949-Mitchell.txt',
 '../texts/history/NYT-Obituaries/1951-Henrietta-Lacks.txt',
 '../texts/history/NYT-Obituaries/1903-James-M-N-Whistler.txt',
 '../texts/history/NYT-Obituaries/1950-A-J-Dempster.txt',
 '../texts/history/NYT-Obituaries/1937-Edith-Wharton.txt',
 '../texts/history/NYT-Obituaries/1935-Jane-Addams.txt',
 '../texts/history/NYT-Obituaries/1941-James-Joyce.txt',
 '../texts/history/NYT-Obituaries/1952-John-Dewey.txt',
 '../texts/history/NYT-Obituaries/1940-Marcus-Garvey.txt',
 '../texts/history/NYT-Obituaries/1971-Louis-Armstrong.txt',
 '../texts/history/NYT-Obituaries/1923-Warren-Harding.txt',
 '../texts/history/NYT-Obituaries/1937-John-Rockefeller.txt',
 '../texts/history/NYT-Obituaries/2000-Elliot-Richardson.txt',
 '../texts/history/NYT-Obituaries/1972-J-Edgar-Hoover.txt',
 '../texts/history/NYT-Obituaries/1975-Franco.txt',
 '../texts/history/NYT-Obituaries/1973-Jeanette-Rankin.txt',
 '../texts/history/NYT-Obituaries/1888-Louisa-M-Alcott.txt',
 '../texts/history/NYT-Obituaries/1977-Charles-Chaplin.txt',
 '../texts/history/NYT-Obituaries/1990-Ralph-David-Abernathy.txt',
 '../texts/history/NYT-Obituaries/1946-Lord-Keynes.txt',
 '../texts/history/NYT-Obituaries/1996-Gene-Kelly.txt',
 '../texts/history/NYT-Obituaries/1973-Roberto-Clemente.txt',
 '../texts/history/NYT-Obituaries/1986-Georgia-O-Keeffe.txt',
 '../texts/history/NYT-Obituaries/1990-Rex-Harrison.txt',
 '../texts/history/NYT-Obituaries/1916-Martian-Theory.txt',
 '../texts/history/NYT-Obituaries/1961-Ernest-Hemingway.txt',
 '../texts/history/NYT-Obituaries/1978-Margaret-Mead.txt',
 '../texts/history/NYT-Obituaries/1982-Ingrid-Bergman.txt',
 '../texts/history/NYT-Obituaries/1946-C-E-M-Clung.txt',
 '../texts/history/NYT-Obituaries/1977-Maria-Callas.txt',
 '../texts/history/NYT-Obituaries/1952-Eva-Peron.txt',
 '../texts/history/NYT-Obituaries/1961-Emily-Balch.txt',
 '../texts/history/NYT-Obituaries/1979-Arthur-Fiedler.txt',
 '../texts/history/NYT-Obituaries/1896-Harriet-Beecher-Stowe.txt',
 '../texts/history/NYT-Obituaries/1989-Andrei-Sakharov.txt',
 '../texts/history/NYT-Obituaries/1939-W-B-Yeats.txt',
 '../texts/history/NYT-Obituaries/1961-Hammarskjold.txt',
 '../texts/history/NYT-Obituaries/1969-Madhubala.txt',
 '../texts/history/NYT-Obituaries/1970-Edouard-Daladier.txt',
 '../texts/history/NYT-Obituaries/1988-John-Houseman.txt',
 '../texts/history/NYT-Obituaries/1992-William-Shawn.txt',
 '../texts/history/NYT-Obituaries/1950-Edna-St-V-Millay.txt',
 '../texts/history/NYT-Obituaries/1989-Claude-Pepper.txt',
 '../texts/history/NYT-Obituaries/1929-Marie-Curie.txt',
 '../texts/history/NYT-Obituaries/1972-The-Duke-of-Windsor.txt',
 '../texts/history/NYT-Obituaries/1984-Count-Basie.txt',
 '../texts/history/NYT-Obituaries/1998-Helen-Moody.txt',
 '../texts/history/NYT-Obituaries/1936-Anne-Macy.txt',
 '../texts/history/NYT-Obituaries/1900-Nietzsche.txt',
 '../texts/history/NYT-Obituaries/1880-Lucretia-Mott.txt',
 '../texts/history/NYT-Obituaries/1967-J-Robert-Oppenheimer.txt',
 '../texts/history/NYT-Obituaries/1984-Richard-Burton.txt',
 '../texts/history/NYT-Obituaries/1964-Sean-O-Casey.txt',
 '../texts/history/NYT-Obituaries/1931-Thomas-Edison.txt',
 '../texts/history/NYT-Obituaries/1971-Bobby-Jones.txt',
 '../texts/history/NYT-Obituaries/1914-John-P-Holland.txt',
 '../texts/history/NYT-Obituaries/1995-George-Abbott.txt',
 '../texts/history/NYT-Obituaries/1950-Henry-L-Stimson.txt',
 '../texts/history/NYT-Obituaries/1955-Dale-Carnegie.txt',
 '../texts/history/NYT-Obituaries/1934-T-A-Watson.txt',
 '../texts/history/NYT-Obituaries/1968-Martin-Luther-King-Jr.txt',
 '../texts/history/NYT-Obituaries/1933-Louis-C-Tiffany.txt',
 '../texts/history/NYT-Obituaries/1909-Geronimo.txt',
 '../texts/history/NYT-Obituaries/1952-Charles-Spaulding.txt',
 '../texts/history/NYT-Obituaries/1922-Nellie-Bly.txt',
 '../texts/history/NYT-Obituaries/1955-Cy-Young.txt',
 '../texts/history/NYT-Obituaries/1993-Arthur-Ashe.txt',
 '../texts/history/NYT-Obituaries/1986-Bernard-Malamud.txt',
 '../texts/history/NYT-Obituaries/1939-Howard-Carter.txt',
 '../texts/history/NYT-Obituaries/1994-Linus-C-Pauling.txt',
 '../texts/history/NYT-Obituaries/1967-Langston-Hughes.txt',
 '../texts/history/NYT-Obituaries/1948-Mohandas-K-Gandhi.txt',
 '../texts/history/NYT-Obituaries/1931-Melvil-Dewey.txt',
 '../texts/history/NYT-Obituaries/1969-Everett-Dirksen.txt',
 '../texts/history/NYT-Obituaries/1968-Helen-Keller.txt',
 '../texts/history/NYT-Obituaries/1992-Alex-Haley.txt',
 '../texts/history/NYT-Obituaries/1953-Eugene-O-Neill.txt',
 '../texts/history/NYT-Obituaries/1981-Anwar-el-Sadat.txt',
 '../texts/history/NYT-Obituaries/1937-Maurice-Ravel.txt',
 '../texts/history/NYT-Obituaries/1966-Margaret-Sanger.txt',
 '../texts/history/NYT-Obituaries/1989-I-F-Stone.txt',
 '../texts/history/NYT-Obituaries/1943-J-H-Kellogg.txt',
 '../texts/history/NYT-Obituaries/1985-Roger-Maris.txt',
 '../texts/history/NYT-Obituaries/1972-Mahalia-Jackson.txt',
 '../texts/history/NYT-Obituaries/1990-Greta-Garbo.txt',
 '../texts/history/NYT-Obituaries/1998-Benjamin-Spock.txt',
 '../texts/history/NYT-Obituaries/1994-Jessica-Tandy.txt',
 '../texts/history/NYT-Obituaries/1979-Richard-Rodgers.txt',
 '../texts/history/NYT-Obituaries/1958-W-C-Handy.txt',
 '../texts/history/NYT-Obituaries/1974-Ed-Sullivan.txt',
 '../texts/history/NYT-Obituaries/1989-Hirohito.txt',
 '../texts/history/NYT-Obituaries/1933-Calvin-Coolidge.txt',
 '../texts/history/NYT-Obituaries/1969-Ho-Chi-Minh.txt',
 '../texts/history/NYT-Obituaries/1987-John-Huston.txt',
 '../texts/history/NYT-Obituaries/1984-Johnny-Weissmuller.txt',
 '../texts/history/NYT-Obituaries/1969-Maureen-Connolly.txt',
 '../texts/history/NYT-Obituaries/1968-Yuri-Gagarin.txt',
 '../texts/history/NYT-Obituaries/1991-Peggy-Ashcroft.txt',
 '../texts/history/NYT-Obituaries/1979-A-Philip-Randolph.txt',
 '../texts/history/NYT-Obituaries/1946-Gertrude-Stein.txt',
 '../texts/history/NYT-Obituaries/1993-Thurgood-Marshall.txt',
 '../texts/history/NYT-Obituaries/1887-Emma-Lazarus.txt',
 '../texts/history/NYT-Obituaries/1986-James-Cagney.txt',
 '../texts/history/NYT-Obituaries/1976-Richard-Daley.txt',
 '../texts/history/NYT-Obituaries/1977-Joan-Crawford.txt',
 '../texts/history/NYT-Obituaries/1971-Hugo-Black.txt',
 '../texts/history/NYT-Obituaries/1954-Henri-Matisse.txt',
 '../texts/history/NYT-Obituaries/1906-Susan-B-Anthony.txt',
 '../texts/history/NYT-Obituaries/1990-Sammy-Davis-Jr.txt',
 '../texts/history/NYT-Obituaries/1914-John-Muir.txt',
 '../texts/history/NYT-Obituaries/1954-Anne-O-Hare-McCormick.txt',
 '../texts/history/NYT-Obituaries/1986-Kate-Smith.txt',
 '../texts/history/NYT-Obituaries/1919-Anna-H-Shaw.txt',
 '../texts/history/NYT-Obituaries/1980-Jean-Piaget.txt',
 '../texts/history/NYT-Obituaries/1966-Buster-Keaton.txt',
 '../texts/history/NYT-Obituaries/1997-Allen-Ginsberg.txt',
 '../texts/history/NYT-Obituaries/1991-Miles-Davis.txt',
 '../texts/history/NYT-Obituaries/1982-Satchel-Paige.txt',
 '../texts/history/NYT-Obituaries/1931-Ida-B-Wells.txt',
 '../texts/history/NYT-Obituaries/1967-Henry-R-Luce.txt',
 '../texts/history/NYT-Obituaries/1984-Ansel-Adams.txt',
 '../texts/history/NYT-Obituaries/1945-Ernie-Pyle.txt',
 '../texts/history/NYT-Obituaries/1952-Chaim-Weizmann.txt',
 '../texts/history/NYT-Obituaries/1973-Nancy-Mitford.txt',
 '../texts/history/NYT-Obituaries/1852-Ada-Lovelace.txt',
 '../texts/history/NYT-Obituaries/1996-Timothy-Leary.txt',
 '../texts/history/NYT-Obituaries/1919-Carnegie-Started.txt',
 '../texts/history/NYT-Obituaries/1989-Andrei-A-Gromyko.txt',
 '../texts/history/NYT-Obituaries/1965-David-O-Selznick.txt',
 '../texts/history/NYT-Obituaries/1870-Robert-E-Lee.txt',
 '../texts/history/NYT-Obituaries/1968-Robert-Francis-Kennedy.txt',
 '../texts/history/NYT-Obituaries/1900-Stephen-Crane.txt',
 '../texts/history/NYT-Obituaries/1936-John-W-Heisman.txt',
 '../texts/history/NYT-Obituaries/1998-Maureen-O-Sullivan.txt',
 '../texts/history/NYT-Obituaries/1953-Joseph-Stalin.txt',
 '../texts/history/NYT-Obituaries/1944-Alfred-E-Smith.txt',
 '../texts/history/NYT-Obituaries/1910-Tolstoy.txt',
 '../texts/history/NYT-Obituaries/1964-Cole-Porter.txt',
 '../texts/history/NYT-Obituaries/1983-Jack-Dempsey.txt',
 '../texts/history/NYT-Obituaries/1975-Haile-Selassie.txt',
 '../texts/history/NYT-Obituaries/1882-Charles-Darwin.txt',
 '../texts/history/NYT-Obituaries/1903-Emily-Warren-Roebling.txt',
 '../texts/history/NYT-Obituaries/1962-Eleanor-Roosevelt.txt',
 '../texts/history/NYT-Obituaries/1926-Harry-Houdini.txt',
 '../texts/history/NYT-Obituaries/1955-Albert-Einstein.txt',
 '../texts/history/NYT-Obituaries/1971-Coco-Chanel.txt',
 '../texts/history/NYT-Obituaries/1959-Billie-Holiday.txt',
 '../texts/history/NYT-Obituaries/1969-Coleman-Hawkins.txt',
 '../texts/history/NYT-Obituaries/1954-Frida-Kahlo.txt',
 '../texts/history/NYT-Obituaries/1911-Joseph-Pulitzer.txt',
 '../texts/history/NYT-Obituaries/1993-Carlos-Montoya.txt',
 '../texts/history/NYT-Obituaries/1947-Max-Planck.txt',
 '../texts/history/NYT-Obituaries/1985-Orson-Welles.txt',
 '../texts/history/NYT-Obituaries/1974-Earl-Warren.txt',
 '../texts/history/NYT-Obituaries/1971-Ralph-Bunche.txt',
 '../texts/history/NYT-Obituaries/1999-Hassan-II.txt',
 '../texts/history/NYT-Obituaries/1931-Knute-Rocke.txt',
 '../texts/history/NYT-Obituaries/1998-Theodore-Schultz.txt',
 '../texts/history/NYT-Obituaries/1960-Boris-Pasternak.txt',
 '../texts/history/NYT-Obituaries/1927-Victoria-Martin.txt',
 '../texts/history/NYT-Obituaries/1943-George-Washington-Carver.txt',
 '../texts/history/NYT-Obituaries/1956-Thomas-J-Watson-Sr.txt',
 '../texts/history/NYT-Obituaries/1947-Henry-Ford.txt',
 '../texts/history/NYT-Obituaries/1953-Fred-Vinson.txt',
 '../texts/history/NYT-Obituaries/1982-Leonid-Brezhnev.txt',
 '../texts/history/NYT-Obituaries/1999-King-Hussein.txt',
 '../texts/history/NYT-Obituaries/1930-Elmer-Sperry.txt',
 '../texts/history/NYT-Obituaries/1985-E-B-White.txt',
 '../texts/history/NYT-Obituaries/1959-Ethel-Barrymore.txt',
 '../texts/history/NYT-Obituaries/1986-Benny-Goodman.txt',
 '../texts/history/NYT-Obituaries/1963-W-E-B-DuBois.txt',
 '../texts/history/NYT-Obituaries/1975-Elijah-Muhammad.txt',
 '../texts/history/NYT-Obituaries/1973-Pablo-Picasso.txt',
 '../texts/history/NYT-Obituaries/1993-Federico-Fellini.txt',
 '../texts/history/NYT-Obituaries/1945-Harry-S-Truman.txt',
 '../texts/history/NYT-Obituaries/1970-De-Gaulle-Rallied.txt',
 '../texts/history/NYT-Obituaries/1995-Alfred-Eisenstaedt.txt',
 '../texts/history/NYT-Obituaries/1999-Iris-Murdoch.txt',
 '../texts/history/NYT-Obituaries/1987-Alf-Landon.txt',
 '../texts/history/NYT-Obituaries/1998-Bella-Abzug.txt',
 '../texts/history/NYT-Obituaries/1940-Scott-Fitzgerald.txt',
 '../texts/history/NYT-Obituaries/1989-Vladimir-Horowitz.txt',
 '../texts/history/NYT-Obituaries/1969-Mies-van-der-Rohe.txt',
 '../texts/history/NYT-Obituaries/1944-Ida-M-Tarbell.txt',
 '../texts/history/NYT-Obituaries/1948-John-Pershing.txt',
 '../texts/history/NYT-Obituaries/1938-Clarence-Darrow.txt',
 '../texts/history/NYT-Obituaries/1987-Primo-Levi.txt',
 '../texts/history/NYT-Obituaries/1971-Igor-Stravinsky.txt',
 '../texts/history/NYT-Obituaries/1945-George-Patton.txt',
 '../texts/history/NYT-Obituaries/1930-William-Howard-Taft.txt',
 '../texts/history/NYT-Obituaries/1935-Will-Rogers.txt',
 '../texts/history/NYT-Obituaries/1992-Shirley-Booth.txt',
 '../texts/history/NYT-Obituaries/1994-Jacqueline-Kennedy.txt',
 '../texts/history/NYT-Obituaries/1933-Ring-Lardner.txt',
 '../texts/history/NYT-Obituaries/1974-Sylvia-Plath.txt',
 '../texts/history/NYT-Obituaries/1945-FDR.txt',
 '../texts/history/NYT-Obituaries/1995-Yitzhak-Rabin.txt',
 '../texts/history/NYT-Obituaries/1960-Emily-Post.txt',
 '../texts/history/NYT-Obituaries/1984-Truman-Capote.txt',
 '../texts/history/NYT-Obituaries/1968-Upton-Sinclair.txt',
 '../texts/history/NYT-Obituaries/1994-Jan-Tinbergen.txt',
 '../texts/history/NYT-Obituaries/1957-Gerard-Swope.txt',
 '../texts/history/NYT-Obituaries/1993-Albert-Sabin.txt',
 '../texts/history/NYT-Obituaries/1955-Thomas-Mann.txt',
 '../texts/history/NYT-Obituaries/1991-Dr-Seuss.txt',
 '../texts/history/NYT-Obituaries/1877-Bedford-Forrest.txt',
 '../texts/history/NYT-Obituaries/1964-Douglas-MacArthur.txt',
 '../texts/history/NYT-Obituaries/1965-Churchill.txt',
 '../texts/history/NYT-Obituaries/1962-William-Faulkner.txt',
 '../texts/history/NYT-Obituaries/1956-Babe-Zaharias.txt',
 '../texts/history/NYT-Obituaries/1932-John-Philip-Sousa.txt',
 '../texts/history/NYT-Obituaries/1964-Herbert-Hoover.txt',
 '../texts/history/NYT-Obituaries/1961-Sam-Rayburn.txt',
 '../texts/history/NYT-Obituaries/1954-Lionel-Barrymore.txt',
 '../texts/history/NYT-Obituaries/1998-Frank-Sinatra.txt',
 '../texts/history/NYT-Obituaries/1948-Babe-Ruth.txt',
 '../texts/history/NYT-Obituaries/1947-Willa-Cather.txt',
 '../texts/history/NYT-Obituaries/1963-John-F-Kennedy.txt',
 '../texts/history/NYT-Obituaries/1975-Walker-Evans.txt',
 '../texts/history/NYT-Obituaries/1916-J-J-Hill.txt',
 '../texts/history/NYT-Obituaries/1980-Jesse-Owens.txt',
 '../texts/history/NYT-Obituaries/1948-Sergei-Eisenstein.txt',
 '../texts/history/NYT-Obituaries/1981-Robert-Moses.txt',
 '../texts/history/NYT-Obituaries/1989-Robert-Penn-Warren.txt',
 '../texts/history/NYT-Obituaries/1901-William-McKinley.txt',
 '../texts/history/NYT-Obituaries/1970-Walter-Reuther.txt',
 '../texts/history/NYT-Obituaries/1930-Balfour.txt',
 '../texts/history/NYT-Obituaries/1984-Indira-Gandhi.txt',
 '../texts/history/NYT-Obituaries/1978-Golda-Meir.txt',
 '../texts/history/NYT-Obituaries/1983-Earl-Hines.txt',
 '../texts/history/NYT-Obituaries/1974-Katharine-Cornell.txt',
 '../texts/history/NYT-Obituaries/1982-Lee-Strasberg.txt',
 '../texts/history/NYT-Obituaries/1939-Pope-Pius-XI.txt',
 '../texts/history/NYT-Obituaries/1886-Mary-Ewing-Outerbridge.txt',
 '../texts/history/NYT-Obituaries/1993-Dizzy-Gillespie.txt',
 '../texts/history/NYT-Obituaries/1910-Florence-Nightingale.txt',
 '../texts/history/NYT-Obituaries/1960-Richard-Wright.txt',
 '../texts/history/NYT-Obituaries/1986-The-Challenger.txt',
 '../texts/history/NYT-Obituaries/1992-Menachem-Begin.txt',
 '../texts/history/NYT-Obituaries/1998-Galina-Ulanova.txt',
 '../texts/history/NYT-Obituaries/1976-Max-Ernst.txt',
 '../texts/history/NYT-Obituaries/1993-Cesar-Chavez.txt',
 '../texts/history/NYT-Obituaries/1965-Adlai-Ewing-Stevenson.txt',
 '../texts/history/NYT-Obituaries/1935-Adolph-S-Ochs.txt',
 '../texts/history/NYT-Obituaries/1941-Lou-Gehrig.txt',
 '../texts/history/NYT-Obituaries/1961-Carl-G-Jung.txt',
 '../texts/history/NYT-Obituaries/1963-Robert-Frost.txt',
 '../texts/history/NYT-Obituaries/1965-Edward-R-Murrow.txt',
 '../texts/history/NYT-Obituaries/1971-Dean-Acheson.txt',
 '../texts/history/NYT-Obituaries/1986-Jorge-Luis-Borges.txt',
 '../texts/history/NYT-Obituaries/1966-Walt-Disney.txt',
 '../texts/history/NYT-Obituaries/1996-Carl-Sagan.txt',
 '../texts/history/NYT-Obituaries/1959-Ross-G-Harrison.txt',
 '../texts/history/NYT-Obituaries/1945-Jerome-Kern.txt',
 '../texts/history/NYT-Obituaries/1991-Frank-Capra.txt',
 '../texts/history/NYT-Obituaries/1987-Andres-Segovie.txt',
 '../texts/history/NYT-Obituaries/1987-Rita-Hayworth.txt',
 '../texts/history/NYT-Obituaries/1993-William-Golding.txt',
 '../texts/history/NYT-Obituaries/1932-Florenz-Ziegfeld.txt',
 '../texts/history/NYT-Obituaries/1938-Constantin-Stanislavsky.txt']

Process Texts#

little_mallet_wrapper.process_string(text, numbers='remove')

Next we process our texts with the function little_mallet_wrapper.process_string(). This function will take every individual text file, transform all the text to lowercase as well as remove stopwords, punctuation, and numbers, and then add the processed text to our master list training_data.

Python Review

Take a moment to study this code and reflect about what’s happening here. This is a very common Python pattern! We make an empty list, iterate through every file, open and read each text file, process the texts, and finally append them to the previously empty list.

training_data = []
for file in files:
    text = open(file, encoding='utf-8').read()
    processed_text = little_mallet_wrapper.process_string(text, numbers='remove')
    training_data.append(processed_text)

We’re also making a master list of the original text of the obituaries for future reference.

original_texts = []
for file in files:
    text = open(file, encoding='utf-8').read()
    original_texts.append(text)

Process Titles#

Here we extract the relevant part of each file name by using Path().stem, which conveniently extracts just the last part of the file path without the “.txt” file extension. Because each file name includes the obituary subject’s name as well as the year that the subject died, we’re going to use this information as a title or label for each obituary.

obit_titles = [Path(file).stem for file in files]
obit_titles
Hide code cell output
['1945-Adolf-Hitler',
 '1915-F-W-Taylor',
 '1975-Chiang-Kai-shek',
 '1984-Ethel-Merman',
 '1953-Jim-Thorpe',
 '1964-Nella-Larsen',
 '1955-Margaret-Abbott',
 '1984-Lillian-Hellman',
 '1959-Cecil-De-Mille',
 '1928-Mabel-Craty',
 '1973-Eddie-Rickenbacker',
 '1989-Ferdinand-Marcos',
 '1991-Martha-Graham',
 '1997-Deng-Xiaoping',
 '1938-George-E-Hale',
 '1885-Ulysses-Grant',
 '1909-Sarah-Orne-Jewett',
 '1957-Christian-Dior',
 '1987-Clare-Boothe-Luce',
 '1976-Jacques-Monod',
 '1954-Getulio-Vargas',
 '1979-Stan-Kenton',
 '1990-Leonard-Bernstein',
 '1972-Jackie-Robinson',
 '1998-Fred-W-Friendly',
 '1991-Leo-Durocher',
 '1915-B-T-Washington',
 '1997-James-Stewart',
 '1981-Joe-Louis',
 '1983-Muddy-Waters',
 '1942-George-M-Cohan',
 '1989-Samuel-Beckett',
 '1962-Marilyn-Monroe',
 '2000-Charles-M-Schulz',
 '1967-Gregory-Pincus',
 '1894-R-L-Stevenson',
 '1978-Bruce-Catton',
 '1982-Arthur-Rubinstein',
 '1875-Andrew-Johnson',
 '1974-Charles-Lindbergh',
 '1964-Rachel-Carson',
 '1953-Marjorie-Rawlings',
 '1973-Otto-Klemperer',
 '1963-Sylvia-Plath',
 '1956-Charles-Merrill',
 '1966-Lenny-Bruce',
 '1908-Cleveland',
 '1982-Anna-Freud',
 '1941-Frank-Conrad',
 '1966-Alfred-P-Sloan-Jr',
 '1960-Beno-Gutenberg',
 '1976-J-Paul-Getty',
 '1891-P-T-Barnum',
 '1901-Queen-Victoria',
 '1970-Erich-Maria-Remarque',
 '1989-August-A-Busch-Jr',
 '1992-John-Cage',
 '1994-Erik-Erikson',
 '1990-Erte',
 '1966-Chester-Nimitz',
 '1954-Enrico-Fermi',
 '1961-Primitive-Artist',
 '1945-Bela-Bartok',
 '1978-Pope-Paul-VI',
 '1965-Martin-Buber',
 '1971-Diane-Arbus',
 '1973-Lyndon-Johnson',
 '1998-Bob-Kane',
 '1969-Judy-Garland',
 '1959-Frank-Lloyd-Wright',
 '1995-Ginger-Rogers',
 '1920-Marlene-Dietrich',
 '1998-Alan-B-Shepard-Jr',
 '1971-Khrushchev',
 '1935-Justice-Holmes',
 '1969-David-Eisenhower',
 '1992-Marsha-P-Johnson',
 '1914-Alfred-Thayer-Mahan',
 '1965-Branch-Rickey',
 '2007-Karen-Sparck-Jones',
 '1965-Albert-Schweitzer',
 '1992-Isaac-Asimov',
 '1989-William-B-Shockley',
 '1910-William-James',
 '1951-Fanny-Brice',
 '1916-Jack-London',
 '1947-Al-Capone',
 '1989-Lucille-Ball',
 '1980-Jean-Paul-Sartre',
 '1969-Sonja-Henie',
 '1976-Adolph-Zukor',
 '1959-John-Dulles',
 '1980-Alfred-Hitchcock',
 '1901-Benjamin-Harrison',
 '1994-Richard-Nixon',
 '1917-Hilaire-G-E-Degas',
 '1987-James-Baldwin',
 '1941-Virginia-Woolf',
 '1922-Alexander-Graham-Bell',
 '1907-Qiu-Jin',
 '1895-Fred-Douglass',
 '1971-Florence-Blanchfield',
 '1984-Ray-A-Kroc',
 '1947-Fiorello-La-Guardia',
 '1988-Louis-L-Amour',
 '1902-Elizabeth-Cady-Stanton',
 '1965-Shirley-Jackson',
 '1979-John-Wayne',
 '1994-Thomas-P-O-Neill-Jr',
 '1982-Thelonious-Monk',
 '1919-C-J-Walker',
 '1954-Liberty-H-Bailey',
 '1977-Dash-Ended',
 '1936-Maxim-Gorky',
 '2000-Pierre-Trudeau',
 '1976-Mao-Tse-Tung',
 '1955-Walter-White',
 '1930-Conan-Doyle',
 '1995-Jonas-Salk',
 '1949-Mitchell',
 '1951-Henrietta-Lacks',
 '1903-James-M-N-Whistler',
 '1950-A-J-Dempster',
 '1937-Edith-Wharton',
 '1935-Jane-Addams',
 '1941-James-Joyce',
 '1952-John-Dewey',
 '1940-Marcus-Garvey',
 '1971-Louis-Armstrong',
 '1923-Warren-Harding',
 '1937-John-Rockefeller',
 '2000-Elliot-Richardson',
 '1972-J-Edgar-Hoover',
 '1975-Franco',
 '1973-Jeanette-Rankin',
 '1888-Louisa-M-Alcott',
 '1977-Charles-Chaplin',
 '1990-Ralph-David-Abernathy',
 '1946-Lord-Keynes',
 '1996-Gene-Kelly',
 '1973-Roberto-Clemente',
 '1986-Georgia-O-Keeffe',
 '1990-Rex-Harrison',
 '1916-Martian-Theory',
 '1961-Ernest-Hemingway',
 '1978-Margaret-Mead',
 '1982-Ingrid-Bergman',
 '1946-C-E-M-Clung',
 '1977-Maria-Callas',
 '1952-Eva-Peron',
 '1961-Emily-Balch',
 '1979-Arthur-Fiedler',
 '1896-Harriet-Beecher-Stowe',
 '1989-Andrei-Sakharov',
 '1939-W-B-Yeats',
 '1961-Hammarskjold',
 '1969-Madhubala',
 '1970-Edouard-Daladier',
 '1988-John-Houseman',
 '1992-William-Shawn',
 '1950-Edna-St-V-Millay',
 '1989-Claude-Pepper',
 '1929-Marie-Curie',
 '1972-The-Duke-of-Windsor',
 '1984-Count-Basie',
 '1998-Helen-Moody',
 '1936-Anne-Macy',
 '1900-Nietzsche',
 '1880-Lucretia-Mott',
 '1967-J-Robert-Oppenheimer',
 '1984-Richard-Burton',
 '1964-Sean-O-Casey',
 '1931-Thomas-Edison',
 '1971-Bobby-Jones',
 '1914-John-P-Holland',
 '1995-George-Abbott',
 '1950-Henry-L-Stimson',
 '1955-Dale-Carnegie',
 '1934-T-A-Watson',
 '1968-Martin-Luther-King-Jr',
 '1933-Louis-C-Tiffany',
 '1909-Geronimo',
 '1952-Charles-Spaulding',
 '1922-Nellie-Bly',
 '1955-Cy-Young',
 '1993-Arthur-Ashe',
 '1986-Bernard-Malamud',
 '1939-Howard-Carter',
 '1994-Linus-C-Pauling',
 '1967-Langston-Hughes',
 '1948-Mohandas-K-Gandhi',
 '1931-Melvil-Dewey',
 '1969-Everett-Dirksen',
 '1968-Helen-Keller',
 '1992-Alex-Haley',
 '1953-Eugene-O-Neill',
 '1981-Anwar-el-Sadat',
 '1937-Maurice-Ravel',
 '1966-Margaret-Sanger',
 '1989-I-F-Stone',
 '1943-J-H-Kellogg',
 '1985-Roger-Maris',
 '1972-Mahalia-Jackson',
 '1990-Greta-Garbo',
 '1998-Benjamin-Spock',
 '1994-Jessica-Tandy',
 '1979-Richard-Rodgers',
 '1958-W-C-Handy',
 '1974-Ed-Sullivan',
 '1989-Hirohito',
 '1933-Calvin-Coolidge',
 '1969-Ho-Chi-Minh',
 '1987-John-Huston',
 '1984-Johnny-Weissmuller',
 '1969-Maureen-Connolly',
 '1968-Yuri-Gagarin',
 '1991-Peggy-Ashcroft',
 '1979-A-Philip-Randolph',
 '1946-Gertrude-Stein',
 '1993-Thurgood-Marshall',
 '1887-Emma-Lazarus',
 '1986-James-Cagney',
 '1976-Richard-Daley',
 '1977-Joan-Crawford',
 '1971-Hugo-Black',
 '1954-Henri-Matisse',
 '1906-Susan-B-Anthony',
 '1990-Sammy-Davis-Jr',
 '1914-John-Muir',
 '1954-Anne-O-Hare-McCormick',
 '1986-Kate-Smith',
 '1919-Anna-H-Shaw',
 '1980-Jean-Piaget',
 '1966-Buster-Keaton',
 '1997-Allen-Ginsberg',
 '1991-Miles-Davis',
 '1982-Satchel-Paige',
 '1931-Ida-B-Wells',
 '1967-Henry-R-Luce',
 '1984-Ansel-Adams',
 '1945-Ernie-Pyle',
 '1952-Chaim-Weizmann',
 '1973-Nancy-Mitford',
 '1852-Ada-Lovelace',
 '1996-Timothy-Leary',
 '1919-Carnegie-Started',
 '1989-Andrei-A-Gromyko',
 '1965-David-O-Selznick',
 '1870-Robert-E-Lee',
 '1968-Robert-Francis-Kennedy',
 '1900-Stephen-Crane',
 '1936-John-W-Heisman',
 '1998-Maureen-O-Sullivan',
 '1953-Joseph-Stalin',
 '1944-Alfred-E-Smith',
 '1910-Tolstoy',
 '1964-Cole-Porter',
 '1983-Jack-Dempsey',
 '1975-Haile-Selassie',
 '1882-Charles-Darwin',
 '1903-Emily-Warren-Roebling',
 '1962-Eleanor-Roosevelt',
 '1926-Harry-Houdini',
 '1955-Albert-Einstein',
 '1971-Coco-Chanel',
 '1959-Billie-Holiday',
 '1969-Coleman-Hawkins',
 '1954-Frida-Kahlo',
 '1911-Joseph-Pulitzer',
 '1993-Carlos-Montoya',
 '1947-Max-Planck',
 '1985-Orson-Welles',
 '1974-Earl-Warren',
 '1971-Ralph-Bunche',
 '1999-Hassan-II',
 '1931-Knute-Rocke',
 '1998-Theodore-Schultz',
 '1960-Boris-Pasternak',
 '1927-Victoria-Martin',
 '1943-George-Washington-Carver',
 '1956-Thomas-J-Watson-Sr',
 '1947-Henry-Ford',
 '1953-Fred-Vinson',
 '1982-Leonid-Brezhnev',
 '1999-King-Hussein',
 '1930-Elmer-Sperry',
 '1985-E-B-White',
 '1959-Ethel-Barrymore',
 '1986-Benny-Goodman',
 '1963-W-E-B-DuBois',
 '1975-Elijah-Muhammad',
 '1973-Pablo-Picasso',
 '1993-Federico-Fellini',
 '1945-Harry-S-Truman',
 '1970-De-Gaulle-Rallied',
 '1995-Alfred-Eisenstaedt',
 '1999-Iris-Murdoch',
 '1987-Alf-Landon',
 '1998-Bella-Abzug',
 '1940-Scott-Fitzgerald',
 '1989-Vladimir-Horowitz',
 '1969-Mies-van-der-Rohe',
 '1944-Ida-M-Tarbell',
 '1948-John-Pershing',
 '1938-Clarence-Darrow',
 '1987-Primo-Levi',
 '1971-Igor-Stravinsky',
 '1945-George-Patton',
 '1930-William-Howard-Taft',
 '1935-Will-Rogers',
 '1992-Shirley-Booth',
 '1994-Jacqueline-Kennedy',
 '1933-Ring-Lardner',
 '1974-Sylvia-Plath',
 '1945-FDR',
 '1995-Yitzhak-Rabin',
 '1960-Emily-Post',
 '1984-Truman-Capote',
 '1968-Upton-Sinclair',
 '1994-Jan-Tinbergen',
 '1957-Gerard-Swope',
 '1993-Albert-Sabin',
 '1955-Thomas-Mann',
 '1991-Dr-Seuss',
 '1877-Bedford-Forrest',
 '1964-Douglas-MacArthur',
 '1965-Churchill',
 '1962-William-Faulkner',
 '1956-Babe-Zaharias',
 '1932-John-Philip-Sousa',
 '1964-Herbert-Hoover',
 '1961-Sam-Rayburn',
 '1954-Lionel-Barrymore',
 '1998-Frank-Sinatra',
 '1948-Babe-Ruth',
 '1947-Willa-Cather',
 '1963-John-F-Kennedy',
 '1975-Walker-Evans',
 '1916-J-J-Hill',
 '1980-Jesse-Owens',
 '1948-Sergei-Eisenstein',
 '1981-Robert-Moses',
 '1989-Robert-Penn-Warren',
 '1901-William-McKinley',
 '1970-Walter-Reuther',
 '1930-Balfour',
 '1984-Indira-Gandhi',
 '1978-Golda-Meir',
 '1983-Earl-Hines',
 '1974-Katharine-Cornell',
 '1982-Lee-Strasberg',
 '1939-Pope-Pius-XI',
 '1886-Mary-Ewing-Outerbridge',
 '1993-Dizzy-Gillespie',
 '1910-Florence-Nightingale',
 '1960-Richard-Wright',
 '1986-The-Challenger',
 '1992-Menachem-Begin',
 '1998-Galina-Ulanova',
 '1976-Max-Ernst',
 '1993-Cesar-Chavez',
 '1965-Adlai-Ewing-Stevenson',
 '1935-Adolph-S-Ochs',
 '1941-Lou-Gehrig',
 '1961-Carl-G-Jung',
 '1963-Robert-Frost',
 '1965-Edward-R-Murrow',
 '1971-Dean-Acheson',
 '1986-Jorge-Luis-Borges',
 '1966-Walt-Disney',
 '1996-Carl-Sagan',
 '1959-Ross-G-Harrison',
 '1945-Jerome-Kern',
 '1991-Frank-Capra',
 '1987-Andres-Segovie',
 '1987-Rita-Hayworth',
 '1993-William-Golding',
 '1932-Florenz-Ziegfeld',
 '1938-Constantin-Stanislavsky']

Get Training Data Stats#

We can get training data summary statistics by using the function little_mallet_wrapper.print_dataset_stats().

little_mallet_wrapper.print_dataset_stats(training_data)
Number of Documents: 379
Mean Number of Words per Document: 1314.6
Vocabulary Size: 35983

According to this little report, we have 378 documents (or obituaries) that average 1345 words in length.

Training the Topic Model#

We’re going to train our topic model with the little_mallet_wrapper.train_topic_model() function. As you can see above, however, this function requires 6 different arguments and file paths to run properly.

Set Number of Topics#

We need to make a variable num_topics and assign it the number of topics we want returned.

num_topics = 15

Set Training Data#

We already made a variable called training_data, which includes all of our processed obituary texts, so we can just set it equal to itself.

training_data = training_data

Set Topic Model Output Files#

Finally, we need to tell Little MALLET Wrapper where to find and output all of our topic modeling results. The code below will set Little MALLET Wrapper up to output your results inside a directory called “topic-model-output” and a subdirectory called “NYT-Obits”, all of which will be inside your current directory.

If you’d like to change this output location, simply change output_directory_path below.

#Change to your desired output directory
output_directory_path = 'topic-model-output/NYT-Obits'

#No need to change anything below here
Path(f"{output_directory_path}").mkdir(parents=True, exist_ok=True)

path_to_training_data           = f"{output_directory_path}/training.txt"
path_to_formatted_training_data = f"{output_directory_path}/mallet.training"
path_to_model                   = f"{output_directory_path}/mallet.model.{str(num_topics)}"
path_to_topic_keys              = f"{output_directory_path}/mallet.topic_keys.{str(num_topics)}"
path_to_topic_distributions     = f"{output_directory_path}/mallet.topic_distributions.{str(num_topics)}"

Train Topic Model#

Then we’re going to train our topic model with little_mallet_wrapper.quick_train_topic_model(). The topic model should take about 1-1.5 minutes to train and complete. If you want it, you can look at your Terminal or PowerShell and see what the model looks like as it’s training.

little_mallet_wrapper.quick_train_topic_model(path_to_mallet,
                                             output_directory_path,
                                             num_topics,
                                             training_data)
Importing data...
Complete
Training topic model...
Complete
([['one',
   'would',
   'said',
   'time',
   'could',
   'man',
   'life',
   'years',
   'never',
   'made',
   'people',
   'many',
   'later',
   'first',
   'two',
   'long',
   'even',
   'came',
   'way',
   'also'],
  ['book',
   'wrote',
   'published',
   'said',
   'writing',
   'writer',
   'novel',
   'books',
   'author',
   'life',
   'story',
   'literary',
   'stories',
   'write',
   'work',
   'poet',
   'short',
   'writers',
   'poetry',
   'novels'],
  ['president',
   'state',
   'roosevelt',
   'court',
   'justice',
   'house',
   'states',
   'party',
   'black',
   'law',
   'political',
   'united',
   'governor',
   'campaign',
   'democratic',
   'republican',
   'election',
   'rights',
   'warren',
   'congress'],
  ['baseball',
   'game',
   'louis',
   'won',
   'ruth',
   'team',
   'tennis',
   'league',
   'babe',
   'rickey',
   'first',
   'golf',
   'football',
   'record',
   'champion',
   'abbott',
   'club',
   'season',
   'dempsey',
   'black'],
  ['years',
   'new',
   'first',
   'york',
   'one',
   'american',
   'became',
   'last',
   'home',
   'mrs',
   'later',
   'two',
   'year',
   'world',
   'died',
   'time',
   'death',
   'old',
   'born',
   'times'],
  ['general',
   'gen',
   'grant',
   'army',
   'war',
   'president',
   'men',
   'upon',
   'military',
   'pershing',
   'command',
   'macarthur',
   'troops',
   'states',
   'april',
   'made',
   'forces',
   'union',
   'days',
   'sent'],
  ['war',
   'israel',
   'minister',
   'peace',
   'gandhi',
   'british',
   'king',
   'government',
   'prime',
   'united',
   'india',
   'secretary',
   'arab',
   'nations',
   'france',
   'churchill',
   'political',
   'mrs',
   'state',
   'israeli'],
  ['queen',
   'prince',
   'england',
   'victoria',
   'king',
   'schweitzer',
   'emperor',
   'duke',
   'sir',
   'london',
   'douglass',
   'church',
   'lord',
   'throne',
   'reign',
   'royal',
   'english',
   'trudeau',
   'princess',
   'tolstoy'],
  ['music',
   'band',
   'jazz',
   'piano',
   'musical',
   'sinatra',
   'composer',
   'goodman',
   'orchestra',
   'played',
   'stravinsky',
   'works',
   'bernstein',
   'concert',
   'armstrong',
   'playing',
   'musicians',
   'davis',
   'style',
   'opera'],
  ['company',
   'business',
   'oil',
   'ford',
   'rockefeller',
   'hill',
   'carnegie',
   'president',
   'keller',
   'getty',
   'barnum',
   'cleveland',
   'bell',
   'sloan',
   'church',
   'stock',
   'money',
   'companies',
   'day',
   'general'],
  ['university',
   'professor',
   'research',
   'science',
   'scientific',
   'oppenheimer',
   'institute',
   'human',
   'dewey',
   'work',
   'atomic',
   'society',
   'children',
   'vaccine',
   'nobel',
   'theory',
   'freud',
   'prize',
   'also',
   'scientist'],
  ['times',
   'art',
   'new',
   'york',
   'moses',
   'ochs',
   'picasso',
   'paper',
   'pulitzer',
   'work',
   'paris',
   'luce',
   'newspaper',
   'artist',
   'news',
   'painting',
   'chattanooga',
   'editor',
   'journalism',
   'wright'],
  ['truman',
   'kennedy',
   'president',
   'said',
   'nixon',
   'hoover',
   'eisenhower',
   'television',
   'johnson',
   'united',
   'american',
   'lindbergh',
   'air',
   'program',
   'million',
   'war',
   'murrow',
   'news',
   'space',
   'communist'],
  ['miss',
   'film',
   'theater',
   'broadway',
   'movie',
   'films',
   'hollywood',
   'stage',
   'movies',
   'actor',
   'said',
   'role',
   'actress',
   'director',
   'television',
   'show',
   'dance',
   'star',
   'love',
   'made'],
  ['soviet',
   'party',
   'mao',
   'hitler',
   'china',
   'war',
   'communist',
   'german',
   'stalin',
   'chinese',
   'moscow',
   'united',
   'political',
   'deng',
   'union',
   'germany',
   'chiang',
   'military',
   'khrushchev',
   'power']],
 [[0.33177531031449214,
   2.3903092819158018e-05,
   0.020270404151579578,
   0.00044662551348686585,
   0.11296299093592334,
   0.03311899054417541,
   0.036287717681495066,
   0.012585802951589375,
   1.2301080915414309e-05,
   0.0010354414977042405,
   2.0705678363831697e-05,
   1.6112425059306296e-05,
   3.155780833556796e-05,
   0.001184363366971686,
   0.45022777295708905],
  [0.10667871013860543,
   0.008694838021402619,
   0.03714941548668245,
   0.02043914418927475,
   0.3677913091719889,
   0.0006091804407366433,
   0.00030625488287028046,
   0.00032809176877869384,
   0.00034175537753167125,
   0.35802792025069674,
   0.08489812295741217,
   0.0004476442311824693,
   0.012922880119279574,
   0.0007816359823799955,
   0.0005830969811776688],
  [0.2834186506835192,
   5.52385300887896e-05,
   0.030143788933680905,
   3.013351370261916e-05,
   0.10640989129712315,
   0.04881416978482845,
   2.547410622957248e-05,
   2.7290485926576678e-05,
   2.8427017098228538e-05,
   5.486361363312833e-05,
   0.0017178323337307282,
   0.009055142049000525,
   0.036144557121860654,
   0.0014010022949331271,
   0.4826735382346443],
  [0.36562137735625344,
   0.0001385097134068785,
   0.0002108745522085678,
   7.555929421335337e-05,
   0.09681040627051152,
   0.00012705741106442938,
   6.387590595700041e-05,
   6.843044842700692e-05,
   0.08382037432121836,
   0.001812551497296423,
   0.00011998186166815697,
   9.336563239488498e-05,
   0.00018286600070453515,
   0.4507331525784543,
   0.0001216171562211197],
  [0.19886607432038483,
   0.0012694250889841773,
   0.002452819535463622,
   0.4467005630523956,
   0.27950306299318095,
   0.04373621079087932,
   0.004440175021255677,
   8.900335030041083e-05,
   9.270995641471814e-05,
   0.00017892848944035808,
   0.00015605315921811048,
   0.00012143503772191776,
   0.00459493824915401,
   0.01764042086715332,
   0.00015818008805296895],
  [0.14752145412387155,
   0.3372089938006009,
   0.0191122868241055,
   0.001700699367469668,
   0.37843928330646515,
   0.025195997534524946,
   0.00011897890032778402,
   0.0001274624505249797,
   0.00013277071248215123,
   0.009615994939306033,
   0.06262181795990873,
   0.00017390814430451318,
   0.005020491595919866,
   0.012783329298610181,
   0.00022653104157805415],
  [0.22414874559903622,
   0.02969570331911598,
   0.00735549941091267,
   0.35480111966595695,
   0.34183589277706244,
   0.0002624580589965291,
   0.001861922031585987,
   0.00014135438869683053,
   0.0001472411900325037,
   0.0002841727548448518,
   0.0019778181458758354,
   0.027872474964469752,
   0.007297643123731396,
   0.0003367584529293619,
   0.001981196116752643],
  [0.33556826328457223,
   0.20825559517315279,
   0.02947126672188278,
   5.187970672867028e-05,
   0.21655348131518662,
   0.0023873547338417135,
   4.385778483742977e-05,
   4.698497560975242e-05,
   4.894169743300815e-05,
   0.007569833389741831,
   8.238065033439406e-05,
   6.410570238396221e-05,
   0.02312671694068033,
   0.12661831263557052,
   0.05011102528804402],
  [0.16427099427287942,
   0.00022348238346204274,
   0.01790679379709688,
   0.0149859190844231,
   0.3615950013280553,
   0.00020500434491394357,
   0.00010306237272424269,
   0.02173078313048262,
   0.00011500917069329574,
   0.05697544232921233,
   0.005598681127065894,
   0.00015064339928100382,
   0.008402689818551733,
   0.34754026682806627,
   0.00019622661309197167],
  [0.016590007762584586,
   0.0007690866501284254,
   0.2243823117370031,
   0.00041954923624677856,
   0.5840501729804923,
   0.0007054967933005596,
   0.023605865144163338,
   0.005030203507543553,
   0.0003957896656206827,
   0.14027100001474316,
   0.0006662092195329922,
   0.0005184204030858829,
   0.001015378607355121,
   0.0009052189502844118,
   0.0006752893279151161],
  [0.3346526216862432,
   0.00151421102298645,
   0.009266711134456066,
   0.016845804601620648,
   0.22558469773914736,
   0.08471894320839045,
   5.333446331537237e-05,
   5.713736950739399e-05,
   5.951689480005665e-05,
   0.09591619715756484,
   0.00010018125150284602,
   7.795749933055626e-05,
   0.2281178978003045,
   0.00013612235415648425,
   0.002898665816673733],
  [0.23382384444636167,
   0.0002501903502815372,
   0.05484031447110625,
   0.00013648289221949837,
   0.3397598106103327,
   0.03653577828834369,
   0.00011537916650644681,
   0.24972924153339052,
   0.000128753704232047,
   0.0002484922515229817,
   0.0002167234575816861,
   0.000168646513652908,
   0.039662108300942724,
   0.0002944753315056558,
   0.044089758682019586],
  [0.23527438969399217,
   0.02898854092543469,
   0.002728932301012117,
   0.0013415684554448789,
   0.23336699931930863,
   0.003948358871838563,
   4.8952804834651895e-05,
   5.244328571793598e-05,
   0.07899982869122495,
   0.00010542971543348831,
   0.05464757788734108,
   0.04371605452080843,
   0.015544085396666346,
   0.3005018030537011,
   0.0007350350772409642],
  [0.285548276085977,
   4.673199290389548e-05,
   7.114727072226791e-05,
   2.5493059758409885e-05,
   0.12534343170626444,
   0.006541800567392365,
   2.1551184465624624e-05,
   0.007934831740947182,
   2.404935756215813e-05,
   0.009936094678246776,
   0.015581406357870007,
   0.0008791876116554186,
   0.026339989640311895,
   5.5003796456613784e-05,
   0.5216510049494659],
  [0.05585438722803548,
   0.0004093292465494686,
   0.0006231846088543206,
   0.0002232957401284004,
   0.4197470643068988,
   0.00037548496102040316,
   0.00018876854059496776,
   0.034852025636964344,
   0.00021065023764685987,
   0.04000631942087837,
   0.43842701278295787,
   0.007700874289582046,
   0.0005404126573276466,
   0.0004817826324515528,
   0.00035940771010943237],
  [0.3918985509094363,
   8.350727813550013e-06,
   0.06181515524214932,
   4.555457406125308e-06,
   0.08157496978866138,
   0.45211473750501363,
   0.002780921566836167,
   0.003589071213701648,
   4.297476452701903e-06,
   0.006117849147291498,
   7.233686683117717e-06,
   5.628998603002907e-06,
   1.1024961070782078e-05,
   6.0321040558250125e-05,
   7.332278322439487e-06],
  [0.1238459949345372,
   0.1961512829300503,
   0.004618434377133063,
   0.0003328663947537176,
   0.6699893424737962,
   0.000559734481218637,
   0.0002813967857812077,
   0.0003014612152802835,
   0.0003140157762042587,
   0.0006060446004885588,
   0.0005285640918845502,
   0.0004113098431204496,
   0.0008055917807500118,
   0.0007181921510320244,
   0.0005357681639695552],
  [0.25568146169006606,
   0.0003073854562448422,
   0.0023265682769005223,
   0.00016768374978210358,
   0.27803694150501496,
   0.00028197011825878594,
   0.00014175557809413634,
   0.000151863173299513,
   0.0001581876202421298,
   0.02632553556745921,
   0.05788250557541669,
   0.33289450851554453,
   0.04501194198762869,
   0.0003617942659493407,
   0.00026989692009840403],
  [0.2179189427104621,
   0.031345979150018494,
   0.11554522843502543,
   8.527162752469858e-05,
   0.3389236961925608,
   0.002978813409357556,
   7.208646556687155e-05,
   7.722644540775232e-05,
   8.044259416809031e-05,
   0.0011003940876872856,
   0.00013540423748530577,
   0.12202860466201543,
   0.06920169211785093,
   0.08430156469133991,
   0.0162046531735293],
  [0.3142016916501814,
   0.02227918260533275,
   0.0041238404187136785,
   0.00016522703745340303,
   0.1347802220202716,
   0.0002778390115370454,
   0.00013967873596233482,
   0.00930643016802897,
   0.0001558700344450467,
   0.03875935233583442,
   0.4251375119404429,
   0.020349106745601118,
   0.0003998767836825897,
   0.0003564936662504081,
   0.029567676846262277],
  [0.21356887569479638,
   0.0002684659739257438,
   0.10105109019225819,
   0.0001464525412058383,
   0.18114938010149828,
   0.00024626858843967286,
   0.37996756558838524,
   0.00013263508046663437,
   0.00013815876017722836,
   0.0002666438343567128,
   0.0002325544292445702,
   0.00018096561472519078,
   0.02632666218675664,
   0.0003159858347086943,
   0.09600829557905495],
  [0.2889734726812434,
   0.0002109406889483057,
   0.00032114732050504506,
   0.02689932476924391,
   0.21886021091156824,
   0.00019349962660877054,
   9.727857547568733e-05,
   0.00010421482783544261,
   0.4235548436691788,
   0.0002095089865599886,
   0.005284486570485055,
   0.0001421893839576253,
   0.018134661041143293,
   0.016829006451524717,
   0.00018521449572173263],
  [0.23609445499426762,
   0.018921062974442106,
   0.010997621657318862,
   0.0025513665328311553,
   0.2583094755839177,
   0.0013203416486581457,
   0.0038023074777302,
   3.4230170956451736e-05,
   0.3900579932987893,
   6.881485654023583e-05,
   0.0013168023285015115,
   0.0004656316063234971,
   0.009307897675950465,
   0.0666911640517507,
   6.0835142022004565e-05],
  [0.31720081097487574,
   0.00011219926935731338,
   0.06258420398960715,
   0.4166027164746873,
   0.17678982672222127,
   0.0007813287431730125,
   0.002765367907989977,
   5.543182587310301e-05,
   5.774032262086548e-05,
   0.00011143774742094736,
   0.00688125453318469,
   0.0007540368453191292,
   0.015073070008161875,
   0.0001320591181934382,
   9.851551731422636e-05],
  [0.3265329646270189,
   0.000151032020331878,
   0.02397330407488464,
   8.239041565533132e-05,
   0.1941438012850195,
   0.0001385443447913863,
   6.965076231784132e-05,
   0.0019010297536274322,
   7.772454874257451e-05,
   0.003802832300430049,
   0.0001308291131733852,
   0.00010180657907175078,
   0.4065762207177364,
   0.042185257206698155,
   0.00013261225050070142],
  [0.24091893859091873,
   0.00022439202830246895,
   0.00034162635474130966,
   0.5251937041353015,
   0.17447531014114234,
   0.0002058387782224088,
   0.00010348186957289078,
   0.00011086043529002801,
   0.0001154772948340096,
   0.013790602740399545,
   0.00019437606675379185,
   0.00015125656613906852,
   0.0355723588794923,
   0.007047977429489299,
   0.0015537986894002668],
  [0.2555142554932161,
   0.0002117509161130582,
   0.12835634287881204,
   0.00011551355769204209,
   0.47320810191982576,
   0.00403526172308588,
   9.765222431883748e-05,
   0.015468690562001751,
   0.0039499907487398735,
   0.11800155877788937,
   0.00018342590205605583,
   0.0001427355360632066,
   0.00027956193268098626,
   0.00024923191941196403,
   0.00018592590809308627],
  [0.18100633550819875,
   0.01171928085179406,
   0.003388160213950792,
   0.008445070875126779,
   0.23005543649410243,
   0.0349356244404814,
   0.0006943489471779226,
   5.271395327280137e-05,
   0.004570913690071162,
   0.013653987136997215,
   0.0058987169047284025,
   7.192224655080761e-05,
   0.09497695995085469,
   0.4059208391466344,
   0.004609689640058372],
  [0.2225891135157069,
   0.00010873232827360543,
   0.0001655398778274627,
   0.51943984616982,
   0.22918209330462172,
   0.0014146295088206411,
   5.014360223884201e-05,
   5.371899052608853e-05,
   5.59561550605285e-05,
   0.009312206277643238,
   9.418766993948953e-05,
   7.32935065803786e-05,
   0.0001435527193697843,
   0.00012797851067285787,
   0.01718900786289845],
  [0.19578145071394085,
   0.0018615126353705473,
   0.00679153798494683,
   0.0001441132035619686,
   0.2149945218522215,
   0.024202359288798655,
   0.00012182963768684232,
   0.00013051645395405515,
   0.5352431642752514,
   0.00026238463916569384,
   0.00022883975603985035,
   0.00017807498769142934,
   0.00034877781030726474,
   0.019478958030193602,
   0.000231958730869465],
  [0.28766785970393455,
   0.006954616530261831,
   0.03235626489485881,
   0.006386660268869855,
   0.28715450850321933,
   0.0006083919511172439,
   4.028993154754362e-05,
   0.0026844131416179982,
   0.0227597138589393,
   0.014349524731182233,
   0.0011321791093276128,
   0.0037566412556369333,
   0.0006435933971504081,
   0.3334286323128988,
   7.671040943754828e-05],
  [0.2267312853663187,
   0.33670558473442846,
   0.0006862740591096405,
   0.012110582835880353,
   0.2886970496855139,
   0.0017278717579014414,
   4.181402151227567e-05,
   4.4795485868297907e-05,
   0.025813600728444946,
   9.005490909171376e-05,
   7.85417297760514e-05,
   0.00992930806417035,
   0.0017644048063618742,
   0.09549921960018164,
   7.961221544027857e-05],
  [0.36054595600789047,
   0.00025639621105210574,
   0.0003903512242116964,
   0.08695581731648391,
   0.27222344675469345,
   0.001785481585425372,
   0.0001182410956030627,
   0.00012667203812443808,
   0.00013194738281021722,
   0.0002546559917063317,
   0.00332266879500217,
   0.01412539295210924,
   0.035995054909529624,
   0.21889193703216597,
   0.0048759807031919025],
  [0.28576135906249667,
   0.3877269975904168,
   9.34976736803697e-05,
   0.0579605429694614,
   0.15877793349698183,
   5.633478404082153e-05,
   2.83213339336398e-05,
   0.00040166791822414974,
   0.015256019029792189,
   0.01862735513002691,
   0.0019098335669619376,
   0.0044973227701531684,
   0.03164389027252673,
   0.036833674531642324,
   0.0004252498696610813],
  [0.17122179663805748,
   0.00022198258779063245,
   0.00033795809439689494,
   0.00012109510047026774,
   0.2638717856834961,
   0.002888038213831072,
   0.00010237071865244269,
   0.00413628454303582,
   0.004140851828410403,
   0.008273704915602871,
   0.5370742205319281,
   0.00014963242779113446,
   0.00029307019021887926,
   0.002945684307725693,
   0.004221524218592141],
  [0.2993946034924247,
   0.24058090783262706,
   0.002641494934549978,
   0.002510246687611642,
   0.3505936405203183,
   0.01799426678937506,
   6.195606321609957e-05,
   0.07561208380379049,
   6.913789447648654e-05,
   0.0033827127021310056,
   0.00011637570841346271,
   0.0009028789150585341,
   0.00017736981307712985,
   0.005844362990082605,
   0.00011796185284746113],
  [0.030923548128379073,
   0.21197955968032398,
   0.11803747276591778,
   0.0005011088761833738,
   0.4420936571003709,
   0.1230358337813687,
   0.0059778605942052065,
   0.006008066297983088,
   0.0004727304864583614,
   0.034237776392518675,
   0.006349955022909426,
   0.017281908103857654,
   0.001212766438056579,
   0.0010811919357424356,
   0.0008065643957247651],
  [0.3704529278783319,
   0.013252185218652155,
   0.0007161113316695789,
   5.161259806902497e-05,
   0.17997029094330816,
   8.678962869137474e-05,
   4.3631977968778675e-05,
   0.0011908798348789645,
   0.33242042048264514,
   0.0023822437778088963,
   0.009235050638769964,
   0.04354097278671664,
   0.0001249110317018449,
   0.03843994097147777,
   0.008092030899309861],
  [0.32400110112879815,
   0.00010683588656958422,
   0.3586798795143448,
   5.8280708170570644e-05,
   0.09405151361575789,
   0.22102213144568011,
   4.9269028687576707e-05,
   5.2782057274045536e-05,
   5.4980202574838704e-05,
   0.0007520877525006605,
   9.254490712815373e-05,
   7.201516678282343e-05,
   0.0007870259474112122,
   0.0001257463890149107,
   9.380624930460437e-05],
  [0.3806211116917871,
   0.0166809245989044,
   0.03809033686236444,
   2.6795331984090903e-05,
   0.2095594900863545,
   0.02231979727554336,
   0.016060464419928446,
   2.4267253982605516e-05,
   0.0032922396510126797,
   0.022026528658128687,
   0.027069232491231224,
   0.023495835374584086,
   0.20261647890690104,
   0.0018397927250304786,
   0.03627670467226288],
  [0.30840673099537713,
   0.11614656768935891,
   0.014944552810618465,
   6.34446662446202e-05,
   0.1959123676303861,
   0.0015131134114151027,
   5.36345075308874e-05,
   5.745880776972478e-05,
   5.985171958126012e-05,
   0.006444436283319468,
   0.30037300798310745,
   0.0007816097966115254,
   0.024766027180788745,
   0.029671864841413473,
   0.0008053316764771081],
  [0.14832854655269784,
   0.24243216825493158,
   0.0005696128350534593,
   0.00020410022613320323,
   0.4832015841760382,
   0.011654329319678467,
   0.00017254114117946595,
   0.00018484383878588856,
   0.00019254178836557588,
   0.027518296661091714,
   0.00032409414822228176,
   0.00703887222847723,
   0.04573844732742478,
   0.032111510107725436,
   0.0003285113941948507],
  [0.2589953878057285,
   0.00016892675889169486,
   0.00025718307951940226,
   9.215228565314402e-05,
   0.26106700744311195,
   0.006283394544751713,
   7.790319898280093e-05,
   0.018468763048137972,
   0.38924255860888124,
   0.0011891860545316596,
   0.00014633014911997433,
   0.00011386893586307936,
   0.00022302378692936814,
   0.0144985094248239,
   0.049175804875073545],
  [0.23623868455986805,
   0.3373886194904654,
   0.004184831737693404,
   0.002689969094234306,
   0.3096300172217459,
   0.011777616842511943,
   9.815491080373553e-05,
   0.007826736363130232,
   0.00010953284494251379,
   0.0027852572559060465,
   0.024636048723951632,
   0.020734357537951303,
   0.008002583754385055,
   0.03371070665946533,
   0.00018688300294517724],
  [0.23397029758888155,
   0.00020094523403816722,
   0.008810955545172828,
   0.0037546299557981717,
   0.3141948094262077,
   0.0062593490737183075,
   9.266901617379264e-05,
   9.927659321702677e-05,
   0.00010341103564176473,
   0.4205908584431662,
   0.0001740656498394393,
   0.00013545171953102854,
   0.011200329062504788,
   0.00023651357592842216,
   0.00017643808018084897],
  [0.3239529675230393,
   0.07418188600748804,
   0.059597562048713054,
   0.00019032255102089657,
   0.2881507215006787,
   0.0003200385981850435,
   0.00016089384498722234,
   0.00017236605566162353,
   0.0887791452882403,
   0.00034651727003791923,
   0.023506873734597585,
   0.00023517405132052443,
   0.00046061208103404276,
   0.13752906972653245,
   0.002415849718463219],
  [0.3171104843517399,
   0.0006569100491884659,
   0.23745300903377162,
   0.003996646055954437,
   0.23088268950763086,
   0.058144997340534806,
   4.299251681928327e-05,
   0.010192374849121773,
   4.7976129160475524e-05,
   0.13594050180754885,
   8.07553666518578e-05,
   6.284096422494964e-05,
   0.00012308036172915024,
   0.00010972722395176545,
   0.005155014441971878],
  [0.3901785508557471,
   0.026819355751246433,
   0.0024990969527176033,
   0.00010012957434835843,
   0.20042973759711344,
   0.02125505323297456,
   8.464699599404016e-05,
   9.0682579089689e-05,
   9.445911784896587e-05,
   0.00018230433843566176,
   0.32644761621881996,
   0.00012372615609759066,
   0.00024233014619789547,
   0.014643767496800134,
   0.016808542986568493],
  [0.10771774968622143,
   0.0004619183422232553,
   0.0007032490442537846,
   0.022595683446688507,
   0.4485379404299049,
   0.0004237258690562369,
   0.00021302081898756515,
   0.0002282098382670342,
   0.033753263048330866,
   0.2797550269760231,
   0.00040012950193471926,
   0.0003113665971554122,
   0.07601982868116615,
   0.028473304646904934,
   0.0004055830728819952],
  [0.2725112578748967,
   0.00010115118992566182,
   0.03195744740201101,
   0.0006667844111492063,
   0.19974753685066476,
   0.01477130290823548,
   0.0018814618340021014,
   0.0006615783413628422,
   5.2054727033848164e-05,
   0.3872463012557442,
   0.017212554948496397,
   0.0019029976587930442,
   0.05945920912520951,
   0.009293127429163613,
   0.0025352340433115825],
  [0.09965376662172204,
   0.0015596209510725491,
   0.002374449860468715,
   0.0008507985137275471,
   0.46769588058333134,
   0.001430667896214709,
   0.0007192434288462716,
   0.0007705276289507468,
   0.000802616785269825,
   0.010979192980077134,
   0.3974176134227847,
   0.0010512980845281941,
   0.011489230782212676,
   0.0018356818960980803,
   0.001369410564695472],
  [0.35210020131266395,
   0.006579262940839441,
   0.00012583101070160274,
   0.005542220891207138,
   0.2206828222921667,
   0.0030742531261408177,
   0.011032383177919295,
   0.015033016472512878,
   4.253367610661492e-05,
   0.3119195022847755,
   7.159440891014574e-05,
   0.024043205545585946,
   0.02259739300228027,
   0.0270832096522275,
   7.257020596217981e-05],
  [0.4115234883167371,
   0.006860646065038036,
   0.0007299066508171178,
   2.9244660628663685e-05,
   0.28706109840890937,
   0.02079443198133097,
   2.472269244318567e-05,
   0.03535824852757917,
   0.008779493105451439,
   0.19972632812426375,
   4.6438083661459316e-05,
   0.017864090295096755,
   7.077692012348091e-05,
   0.011084015155711982,
   4.707101220753943e-05],
  [0.3237894773530515,
   0.0013939234590807474,
   0.010393426808459606,
   1.1263489019271771e-05,
   0.19395598881889087,
   0.044463147367910356,
   0.007375275298801241,
   0.40125649790914236,
   1.0625624283195286e-05,
   0.009134066587620079,
   1.7885481799170102e-05,
   0.00013876112654679883,
   2.7259508077428143e-05,
   2.4302090972149825e-05,
   0.008008099076345244],
  [0.21233769498490315,
   0.29250243813714155,
   0.0010608032764729,
   0.009398151776113913,
   0.2538855147621787,
   0.0001285648172401177,
   6.463372822262524e-05,
   6.924230567877861e-05,
   7.212594941501348e-05,
   0.00013920173924524947,
   0.000968832237161664,
   0.0161955846760513,
   0.00018503551869231838,
   0.08067051757056996,
   0.13232165852091277],
  [0.10824036684563655,
   0.0002861146801936698,
   0.003895547806333574,
   0.3046318213995601,
   0.33491598956790425,
   0.02794207089562929,
   0.00013194622929643945,
   0.00014135438869683053,
   0.0001472411900325037,
   0.1802016561929578,
   0.000247842343586288,
   0.00019286212783699004,
   0.03843720756494325,
   0.0003367584529293619,
   0.00025122031446309545],
  [0.25894782028265684,
   0.03639911201050794,
   0.0001631796857514278,
   5.84695581150058e-05,
   0.16953241410758507,
   9.832001155538758e-05,
   4.9428677628402746e-05,
   5.2953089660168985e-05,
   0.3940818262579469,
   0.005291016022989145,
   0.0804535467910668,
   0.04284488023404565,
   0.0020857165425732104,
   0.009847206513450236,
   9.411021446777635e-05],
  [0.3327942836816175,
   0.04019603831940918,
   0.00155613454201163,
   6.234855720621946e-05,
   0.18699914855847805,
   0.00010484277738032008,
   0.033223807652533285,
   0.003511789006570305,
   0.0007498822629911229,
   0.0008045816142735681,
   0.3559972622367571,
   0.01458939779537501,
   0.00015089383013300217,
   0.015337943902289894,
   0.013921645262973854],
  [0.22072855727982768,
   0.034997860808957816,
   0.00048511076495813603,
   0.000173821955431033,
   0.3228939424276086,
   0.0002922918731991094,
   0.00014694466106344832,
   0.000157422253350041,
   0.0521828130837357,
   0.000316474895620757,
   0.0002760147779110544,
   0.23526285359731772,
   0.010053795476896709,
   0.12175231941872519,
   0.0002797767253969464],
  [0.1833266158662858,
   0.0011270196537463966,
   0.00024350369427363487,
   0.0020214067493046673,
   0.29166662633056467,
   0.39858284883704315,
   0.02038239735472939,
   7.901886130051787e-05,
   8.230965646107655e-05,
   0.009829635995414445,
   0.00013854695247024406,
   0.0010748903172006755,
   0.08434694636371658,
   0.004056564119923493,
   0.0030416692475652997],
  [0.14284512299655458,
   0.00019925060251579666,
   0.009941407310101498,
   0.015770538031918635,
   0.3187736534135969,
   0.00259229050315076,
   0.0012966447103651695,
   9.843936388384848e-05,
   0.00010253893931363668,
   0.000197898243400456,
   0.48689450643827126,
   0.0001343094144906762,
   0.0014678157242146621,
   0.00023451898589420042,
   0.01945106532232793],
  [0.27560410255766277,
   0.008875007567365723,
   0.03396776144208791,
   9.806177708895244e-05,
   0.36910867352586757,
   0.00016489666362047022,
   8.289893277223444e-05,
   0.0011757158694448466,
   9.250842239974267e-05,
   0.01974284745504708,
   0.00015571392898930798,
   0.24793573807914787,
   0.0208885396527072,
   0.019775885900128333,
   0.002331648225669946],
  [0.08208449780990164,
   0.0002684659739257438,
   0.000408726872956022,
   0.0001464525412058383,
   0.39217369028713184,
   0.00024626858843967286,
   0.008240126876769135,
   0.02123506609902999,
   0.4741312247156003,
   0.0002666438343567128,
   0.0067256101272640655,
   0.008297285237249558,
   0.0019777033191835346,
   0.0003159858347086943,
   0.0034822518822771554],
  [0.42345691793902734,
   0.0003091089752328758,
   0.10513513438348647,
   0.00016862395733214435,
   0.1282061352870306,
   0.00028355113272451264,
   0.06742689140559757,
   0.13659040614654613,
   0.00015907458272399163,
   0.05263927620456103,
   0.0002677607901608355,
   0.00020836195701866978,
   0.050871353642104884,
   0.0022328323289003056,
   0.032044571267552585],
  [0.36472264907025115,
   0.02911832060335289,
   0.005391496397383065,
   6.707669893521552e-05,
   0.20043657493129025,
   0.00011279342664837225,
   0.08109502033751113,
   6.074816652176912e-05,
   6.327806595479651e-05,
   0.00012212548893186223,
   0.28113846837174605,
   0.009004533426838856,
   0.00016233671585271734,
   0.007579432443623554,
   0.020925145855158304],
  [0.32392878098509525,
   0.04332851304755597,
   0.00038734872003897997,
   0.00013879245074409688,
   0.1916731816440922,
   0.00023338769439849757,
   0.0001173316085541833,
   0.00012569770193834518,
   0.00013093246971940587,
   0.017174660758276644,
   0.00022039084402696501,
   0.3001517629199431,
   0.032641467446615315,
   0.08798599672381198,
   0.0017617549851889703],
  [0.17527567601332375,
   0.00021703049828239175,
   0.07644163259424629,
   0.018490065957756555,
   0.29735308193154514,
   0.017258495911554584,
   0.00010008698564961832,
   0.017166633481108237,
   0.0001116888822999779,
   0.0015278197702884258,
   0.0028125238717358675,
   0.00014629435887711698,
   0.3926529621327463,
   0.0002554460148308175,
   0.00019056159575481663],
  [0.20453007223743816,
   0.08400951341071808,
   0.008623028654827867,
   0.08552801844357619,
   0.1881571731340097,
   0.0002490990630989685,
   0.000125230226203949,
   0.009985684436648384,
   0.00013974668039116642,
   0.010121233412880308,
   0.01337059384373374,
   0.00018304553319927985,
   0.0020004339449771896,
   0.39273869366364306,
   0.00023843331465395355],
  [0.34694004743251616,
   0.00012351100766313852,
   0.0001880397251078269,
   6.737725706783082e-05,
   0.21851114285537274,
   0.00011329883288068337,
   5.6959019812347693e-05,
   6.102036768520473e-05,
   0.032922855627729154,
   0.0001226727103885046,
   0.00010698946861872168,
   8.325541259567533e-05,
   0.00016306411629051642,
   0.4004313184831125,
   0.00010844768315902004],
  [0.18017456740183968,
   0.00012036490088152938,
   0.004549926234429911,
   0.0015212197746677274,
   0.39998446810154703,
   0.008115986087659455,
   0.005149963838289404,
   5.946603988703553e-05,
   6.194254426911732e-05,
   0.052519663671715504,
   0.0212098663659727,
   0.2795484185196323,
   0.02854230651387695,
   0.007419463957847918,
   0.01102237604748369],
  [0.24654318996771402,
   0.00016604359463847797,
   0.00025279359696336754,
   0.037237578795760944,
   0.13613448123007063,
   0.00015231472753555547,
   7.657358300015806e-05,
   8.20335076874034e-05,
   0.02217285485271829,
   0.005184781392402966,
   0.00014383265341308575,
   0.00011192547321935003,
   0.028330460050355222,
   0.5232653435518366,
   0.00014579302268386045],
  [0.21068064200467138,
   0.01880242077434401,
   0.002639350938412178,
   0.0008848889484590795,
   0.20258693288776589,
   0.020414641968322794,
   6.190577594940404e-05,
   6.631984227810818e-05,
   0.017925604769835585,
   0.00013332654510972853,
   0.003362921794859588,
   0.05122507451576191,
   0.01965706911288718,
   0.3970598049019411,
   0.0544990952194021],
  [0.23997134111921348,
   0.002795481185565245,
   0.0008401055737368429,
   6.05492880719196e-05,
   0.22992344443677432,
   0.03365790102512753,
   5.118682844924916e-05,
   5.483660187452129e-05,
   5.712031010696295e-05,
   0.00011024113481495667,
   9.614722293510458e-05,
   7.481836127177274e-05,
   0.4920787281747255,
   0.00013064107440465485,
   9.745766292796892e-05],
  [0.38140162822997165,
   0.005128523211455759,
   0.0215867553116473,
   2.695544545647566e-05,
   0.08473024849772988,
   4.532717185152005e-05,
   0.037667959249821595,
   2.4412261116784884e-05,
   2.5428926624477847e-05,
   0.0024392469930505567,
   4.2803000764277235e-05,
   3.330777818574314e-05,
   0.04517968856148419,
   5.8159038159247683e-05,
   0.4216095563226805],
  [0.42305660119749716,
   0.05859576650091755,
   0.1948508216162454,
   6.677881036841921e-05,
   0.1551362921171681,
   0.06820784228133508,
   5.645310819035775e-05,
   0.04076977444233679,
   0.0008031660664303232,
   0.01196428743606584,
   0.04377601132145661,
   8.251593567060736e-05,
   0.00016161577620614213,
   0.00014408188455713436,
   0.002327991505554514],
  [0.299977275090323,
   8.302357971695284e-05,
   0.1893793644591494,
   4.529070873211052e-05,
   0.10672249054948892,
   0.025176021723865776,
   0.07834985931570834,
   4.101763443374723e-05,
   4.27258422042793e-05,
   0.005604429879331887,
   7.191787068054067e-05,
   5.596393807551911e-05,
   0.17882063361544884,
   9.771918114517345e-05,
   0.11553226661169551],
  [0.3320696475346002,
   0.03196823987326992,
   0.04228148123942883,
   0.015992664093956437,
   0.2764857444609558,
   0.00017219593457572937,
   8.656851442974493e-05,
   0.012577946603905934,
   9.660337511687856e-05,
   0.01267164821142168,
   0.00016260671950577935,
   0.00012653478606878475,
   0.23633171688096316,
   0.030866448031184372,
   0.008109953740616712],
  [0.3116984224641628,
   0.042815156031993096,
   0.017570324654038735,
   0.00010393615632591711,
   0.3163389820938235,
   0.28817901770019827,
   8.786498360162133e-05,
   9.41300188045569e-05,
   9.805012857641594e-05,
   0.0013412518939532807,
   0.017445296528892196,
   0.0035844807139983354,
   0.00025154270475653666,
   0.00022425253152076412,
   0.00016729139535395337],
  [0.19504041037698772,
   0.00013578055379837053,
   0.05110805212145431,
   0.4105686881300326,
   0.2886563385611491,
   0.000945543139935798,
   6.261731160858383e-05,
   0.0008880713478237058,
   6.987579354897705e-05,
   0.036258385332349645,
   0.013253445534435778,
   9.152598009550863e-05,
   0.002642230562090502,
   0.00015981441149430023,
   0.00011922084319514963],
  [0.340736567183445,
   0.010024321640641874,
   0.005287101006800196,
   0.00014669065886042829,
   0.1668107827067407,
   0.00024666899732432324,
   0.00012400855285494734,
   0.0017587539267729195,
   0.0001383833929467494,
   0.021403818899987055,
   0.42459366630610457,
   0.018066194986854033,
   0.008484531651348983,
   0.001942402791592017,
   0.00023610729772611952],
  [0.413380231348431,
   0.025678313414893492,
   0.0001074642073884964,
   3.850592486589433e-05,
   0.18377631489363766,
   0.02012413629069459,
   3.255192972787869e-05,
   0.23050441777467806,
   0.019668916141628426,
   7.010713072750868e-05,
   0.09395614393081964,
   4.7580248908926336e-05,
   0.0009467816194129982,
   8.308033926757729e-05,
   0.01158545480491792],
  [0.26649020331602974,
   0.2919849592957816,
   0.0002507793911529098,
   8.985775476609858e-05,
   0.26153842641984243,
   0.00015110111606396088,
   0.001071936971843721,
   8.137988208208341e-05,
   0.003072689536364941,
   0.029046834415212806,
   0.14057495166587688,
   0.004094927718471162,
   0.0012134441532531686,
   0.00019387698848398612,
   0.0001446313747744928],
  [0.13629686988055167,
   0.002666527417592535,
   0.044050135769972555,
   0.00020643524047774697,
   0.25305478935285397,
   0.0026352386289305897,
   0.00017451510293007696,
   0.00018695854989249898,
   0.00019474456807961848,
   0.09190007710218819,
   0.44422028696112964,
   0.0002550838646185868,
   0.018804452199410585,
   0.005021615623385052,
   0.0003322697379866426],
  [0.22347290441140163,
   0.0003091089752328758,
   0.011684660772446415,
   0.00016862395733214435,
   0.49827001078674926,
   0.00028355113272451264,
   0.00014255040564873056,
   0.005759743091090052,
   0.00015907458272399163,
   0.00030701098237859246,
   0.2581910679566314,
   0.00020836195701866978,
   0.0004080978921432531,
   0.00036382285667950416,
   0.00027141023979896544],
  [0.13080338461978444,
   0.000357173317863266,
   0.0027034073792810585,
   0.00019484383546670357,
   0.3727426009304135,
   0.0003276414047272543,
   0.00016471602388754055,
   0.00017646076730912786,
   0.05417450283239979,
   0.0003547491013938048,
   0.00030939577132428647,
   0.00024076082374759302,
   0.004790809796629483,
   0.43234594071022,
   0.00031361268555216924],
  [0.2449940234864869,
   0.12737692410452697,
   0.0005159245270367998,
   0.0001848629563025807,
   0.5052749102269483,
   0.02284986630567472,
   0.006303280716473447,
   0.03500043444733516,
   0.0022233947059416477,
   0.0003365770719523202,
   0.0002935469670750702,
   0.0022774286039989617,
   0.04757441639222675,
   0.00039886010220804,
   0.0043955493858123555],
  [0.2711828485966246,
   0.0001768758898317021,
   0.07299323156725425,
   0.30061750208585186,
   0.24982361618773247,
   0.06646937889984024,
   8.156906419813225e-05,
   8.738518158328793e-05,
   9.102439794158467e-05,
   0.016217722372712136,
   0.00015321595882506213,
   0.00011922722893111387,
   0.018414505120962172,
   0.0034165932297160243,
   0.00015530421799532374],
  [0.19566624268044375,
   0.006414603569064717,
   0.00022541055834582083,
   0.026937393904185942,
   0.23508121005141863,
   0.00013581573343037005,
   6.827900036212907e-05,
   7.314749658617089e-05,
   0.030513703418353633,
   0.00014705256629476445,
   0.0010234733240847963,
   9.980151283321421e-05,
   0.03600430619605612,
   0.46747955951763853,
   0.00013000047090138973],
  [0.3787665169720927,
   0.22955829154882024,
   0.0002204761862536938,
   7.899969365532619e-05,
   0.15900960157580518,
   0.0010084665966547503,
   6.678433216052543e-05,
   0.029842760586457615,
   7.452584734914533e-05,
   0.00014383349756734787,
   0.0605434975449326,
   9.761679795876389e-05,
   0.00019119233690618407,
   0.010677937059726481,
   0.12971949942365946],
  [0.15571008988865973,
   0.0003548741298296146,
   0.0005402792437985711,
   0.2877208497948351,
   0.36176028736895793,
   0.0003255323188594067,
   0.0001636557176100771,
   0.00017532485803395235,
   0.0001826263830730127,
   0.0003524655184717864,
   0.00030740413583665616,
   0.01525929176050849,
   0.0004685188589251741,
   0.17636720611756118,
   0.00031159390503928986],
  [0.27205023163643943,
   0.000976818730638317,
   0.00021105130576510442,
   7.562262747875563e-05,
   0.217591332456906,
   0.00012716390968673711,
   6.392944628909195e-05,
   6.848780634434778e-05,
   0.0017477258671744745,
   0.14263048121935415,
   0.00012008242961506009,
   9.344389080687091e-05,
   0.00018301927769151928,
   0.3639388903009498,
   0.0001217190948603382],
  [0.2913402270816108,
   6.937229640258886e-05,
   0.09699985101456259,
   3.7843712366521e-05,
   0.14328424393019698,
   0.015583492248269718,
   0.2311520070603922,
   3.427324506329277e-05,
   3.5700578071319634e-05,
   0.021041679576840822,
   6.0092661127147006e-05,
   4.6761979106018865e-05,
   0.09824418967846171,
   8.165155033946362e-05,
   0.10198861338718884],
  [0.2651224645089588,
   0.04955047519666006,
   0.0027233473733909333,
   7.555929421335337e-05,
   0.14705986269415883,
   0.00012705741106442938,
   0.00927627625029234,
   6.843044842700692e-05,
   7.12802818061799e-05,
   0.00013756961650817945,
   0.047019474523738974,
   0.08132998685062469,
   0.018607666689375215,
   0.3761964588833775,
   0.002634089977403485],
  [0.12493702905391192,
   0.0001658770585578849,
   0.3813796215477131,
   9.048862467863893e-05,
   0.20119073322900943,
   0.24989069694009255,
   7.649678229960963e-05,
   0.014123475285915031,
   8.536414658843026e-05,
   0.0162122072761798,
   0.0011466543980833872,
   0.009138507251162109,
   0.00021899745195491847,
   0.0011982041566146755,
   0.00014564679723849807],
  [0.3737468373759242,
   4.296822131799923e-05,
   0.1943994490276705,
   0.0013224641388988987,
   0.14200823385321087,
   0.000559025220769903,
   0.01015220482769766,
   2.122836428275756e-05,
   2.2112434203514792e-05,
   0.00991526109568979,
   0.00029702540170683633,
   2.8963709891259868e-05,
   0.23076344003946908,
   0.01278101173799033,
   0.02393977455127639],
  [0.15560906208794834,
   0.0016531582048424944,
   0.012512581054000015,
   0.0009018246021055584,
   0.5157370875238616,
   0.0015164712742577653,
   0.0007623795864364179,
   0.0008167395231397519,
   0.0008507532057713402,
   0.0016419378444561727,
   0.001432022304936346,
   0.2709989268406963,
   0.02217401504266277,
   0.011941500830825857,
   0.0014515400740593189],
  [0.47858991338499773,
   0.22071451813619036,
   0.0810861530973347,
   9.003710390708247e-05,
   0.16825206559377823,
   0.00015140270222575983,
   0.0010740764752798961,
   8.154231004372995e-05,
   0.0110625135647224,
   0.00016392913651402843,
   0.01511239237418348,
   0.00011125528940956004,
   0.01019751866852924,
   0.00019426395198459504,
   0.013118418210899124],
  [0.19990951788282627,
   0.3093866554317602,
   0.0005557824825155095,
   0.00019914461785546395,
   0.4405671601812688,
   0.0003348734240513683,
   0.002375648926223771,
   0.00018035578076199088,
   0.004602461082595238,
   0.0003625794681285213,
   0.031218384879056066,
   0.0002460751305009829,
   0.00048196294325133897,
   0.0026369713290402847,
   0.0069424264401641254],
  [0.3106901330225068,
   0.00016439313205332055,
   0.003232261430400781,
   8.96791187126566e-05,
   0.39719560481460153,
   0.00015080072900093436,
   7.581244654061336e-05,
   8.121809992980775e-05,
   8.460048390497434e-05,
   0.2625775688764945,
   0.016046299421781703,
   0.0001108129412588322,
   0.0031990188989365867,
   0.006157452734403507,
   0.00014434384947341157],
  [0.3801273419573387,
   0.07275073246028625,
   0.00035115511286713385,
   0.0001258237763151634,
   0.2281534280467161,
   0.0030008140114301802,
   0.00010636822096786683,
   0.002903186500351274,
   0.00011869822669780268,
   0.0016237023212391504,
   0.00019979766991713225,
   0.0001554754655702125,
   0.010066833047320211,
   0.00027147723527218645,
   0.3000451659477106],
  [0.2980032653578683,
   0.00011212320426154137,
   0.09779499038156429,
   6.116502569068919e-05,
   0.36378319145757676,
   0.10111687287724369,
   5.1707357374779575e-05,
   0.1376785225441869,
   5.7701177774422e-05,
   0.00011136219859626475,
   9.712496295462473e-05,
   0.000753525648720583,
   0.0001480294879338588,
   0.00013196958918375312,
   9.844872906950373e-05],
  [0.1770759886776701,
   0.0004835258550362868,
   0.006583367489627493,
   0.009034604221453399,
   0.3818112175179858,
   0.3512768679630577,
   0.0002229854591738854,
   0.00023888498699717819,
   0.00024883351759104143,
   0.029716354150198132,
   0.0033424576797092815,
   0.00032593163413836417,
   0.03279809105830879,
   0.0034927234324749487,
   0.0033481663565775584],
  [0.28911999616217826,
   0.014754953638498106,
   0.01276171609435824,
   0.2990389916237446,
   0.19227868976328508,
   0.010574228908544628,
   0.005287546281030606,
   8.510962718701793e-05,
   0.003213514866459193,
   0.10537474731177926,
   0.011607049034129183,
   0.00011612249149126888,
   0.05543331155855535,
   0.00020276262127500236,
   0.00015126001748425996],
  [0.21399546670576314,
   5.5164830633007935e-05,
   0.36365451658997583,
   3.0093309454658494e-05,
   0.27337694257003137,
   0.05308520402783978,
   0.01870429307293712,
   0.0030292125853785975,
   0.005365204219480616,
   0.006725809326662454,
   4.778566726590434e-05,
   0.0017049398407309204,
   0.033761476297738985,
   0.0013991330723720006,
   0.025064757883735675],
  [0.2025352598977652,
   0.3491612945137436,
   0.00046972601674695886,
   0.05426847036657731,
   0.2641501276684484,
   0.009610636123878922,
   0.0001422844746179197,
   0.005748998159074961,
   0.0001587778254642204,
   0.018961666170904095,
   0.017056966408363464,
   0.00020797325303877174,
   0.047045406387500564,
   0.026480463231162883,
   0.004001949502712649],
  [0.19706692823378472,
   0.00021646238741847076,
   0.1207416615800976,
   0.00011808374167255244,
   0.614619737977912,
   0.027683937195468054,
   9.982499249964792e-05,
   0.03675410603484263,
   0.00011139651939284747,
   0.0002149932080079314,
   0.00018750714000331036,
   0.00014591141078794888,
   0.0002857822034032574,
   0.0015636046033758117,
   0.0001900627713331284],
  [0.2939109471506552,
   0.3522607141174919,
   0.00034490203198999465,
   0.00012358321019285412,
   0.25148631510479363,
   0.00020781245909732497,
   0.0001044741033426419,
   0.00011192341828480849,
   0.00011658454649120065,
   0.004334354297597659,
   0.028961677894964025,
   0.00015270688660041332,
   0.005778222886184499,
   0.061906867400896126,
   0.00019891449141772995],
  [0.366047896048257,
   0.0001367912913978212,
   0.032465181793129405,
   0.04225675254293579,
   0.15929607340608953,
   0.003433883478091852,
   6.308342895343791e-05,
   0.001721782668423269,
   7.03959423468401e-05,
   0.01833207609051256,
   0.00011849330561885976,
   0.02159682292947113,
   0.04236272794780474,
   0.2970901199883439,
   0.015007919138623836],
  [0.2813861910412409,
   0.005893977139804899,
   0.3583514260676853,
   0.019350092269366962,
   0.16436574658011127,
   9.756129278345007e-05,
   4.904724494755333e-05,
   5.2544459692355894e-05,
   0.0006978018404396613,
   0.00010563311121974276,
   0.0013782665784419716,
   7.169099166809199e-05,
   0.13004037836557664,
   0.03806625903503875,
   9.33839819824644e-05],
  [0.2850594550424088,
   0.0017162196222709491,
   0.007734112617479597,
   0.0016055263105099742,
   0.25122978055636513,
   0.00022342036470416164,
   0.00011232070671961837,
   0.0001203295078685214,
   0.44781437396711865,
   0.00024190524295259968,
   0.00021097857312857323,
   0.0016368373417771395,
   0.00032155533649809,
   0.0017593307014958119,
   0.00021385410870230215],
  [0.22124151468956244,
   0.0007381917458355073,
   0.00112386236328313,
   0.0004026955650800165,
   0.5739786514370766,
   0.005140589883500465,
   0.0003404285907134162,
   0.00036470216384210845,
   0.00037989043783219473,
   0.17927052277468133,
   0.00063944699440128,
   0.013887895585783235,
   0.000974589933035947,
   0.0008688554887310191,
   0.0006481623466413122],
  [0.17103859830440118,
   0.051046084611992754,
   0.028482468651925816,
   0.00022838294037063375,
   0.424247143098919,
   0.00038403938836218575,
   0.0001930691303191092,
   0.033114664960609774,
   0.00021544934370847758,
   0.000415813221270746,
   0.26868803147018483,
   0.007876318252502445,
   0.0005527245240909011,
   0.013149616241342874,
   0.00036759585999925054],
  [0.33437163512842333,
   0.005044122618779395,
   0.03315925982614041,
   0.008304824355752312,
   0.1346120024311252,
   0.006137286465575156,
   0.34345711714544164,
   0.015454621866044333,
   4.684078243605968e-05,
   9.040183783494982e-05,
   0.000629189083901115,
   0.00446411207504237,
   0.01608016627479958,
   0.001758164885071215,
   0.09639025522363297],
  [0.24382867174355752,
   0.0748679929354934,
   0.00024117137895173288,
   8.641506994182362e-05,
   0.3559200610002404,
   0.023132876105003343,
   7.30531027101102e-05,
   0.015403304717715465,
   8.152128208557763e-05,
   0.00015733455634003572,
   0.00013721992874268592,
   0.05278661400449899,
   0.00020913877512200566,
   0.01263804625839332,
   0.2204365791412036],
  [0.3164759851625713,
   0.014571374258332449,
   0.0823672672923111,
   5.224018215670024e-05,
   0.13815278343251397,
   8.784494836098541e-05,
   0.10947978483853,
   0.21949758053157706,
   4.9281758710203595e-05,
   9.511287658831273e-05,
   0.019769784583183743,
   0.0012226000410245849,
   0.0383420440315102,
   0.0012707622704314638,
   0.05856555379219793],
  [0.4113864392957142,
   0.02179472817991146,
   3.8874721521338255e-05,
   1.3929355107712394e-05,
   0.10461499016620966,
   0.016697699223147556,
   0.0003205584150242737,
   0.0020197039531966963,
   1.3140519214651696e-05,
   0.0028044069891705902,
   0.008359256750324284,
   1.721195336754021e-05,
   0.02550829997006777,
   0.002500317099950344,
   0.40391044340807186],
  [0.11189579655338072,
   0.0003810373861072512,
   0.3530799377470392,
   0.00020786207158331424,
   0.4874998073334137,
   0.00034953233680678775,
   0.00017572130966433245,
   0.00018825076276187641,
   0.000196090596048163,
   0.00037845119878394376,
   0.0003300676452633968,
   0.0002568469434016658,
   0.035061867111764365,
   0.007360244264390352,
   0.002638486739590811],
  [0.3481726173820074,
   0.08706465050994505,
   0.00023035991034052737,
   8.254116989501029e-05,
   0.35460256178412236,
   0.0001387978469396,
   0.003729287348774738,
   0.18213533344732472,
   7.786676559094065e-05,
   0.014788317978184204,
   0.000131068498341277,
   0.0019317474314532732,
   0.0011146405813554177,
   0.003837599876025187,
   0.001962609469700344],
  [0.23970584721984373,
   0.00013412877953627617,
   0.0002042047855510856,
   7.316942376227751e-05,
   0.3175849011945884,
   0.00012303870290344954,
   0.016281893132202716,
   6.626605676146549e-05,
   6.902575255195025e-05,
   0.000944220295128938,
   0.39588510345825184,
   0.010633436979239245,
   0.018019123436723346,
   0.0001578702646762659,
   0.00011777051827905478],
  [0.18728058952215496,
   0.28013065219915617,
   0.05213083380459647,
   0.00010393615632591711,
   0.37163579673471586,
   0.02782318209933004,
   8.786498360162133e-05,
   9.41300188045569e-05,
   9.805012857641594e-05,
   0.005949319780694312,
   0.00016504195361332873,
   0.0001284297989425622,
   0.011771712421609114,
   0.062433169002524685,
   0.00016729139535395337],
  [0.23551194167981898,
   0.02565663566247074,
   0.0003763484880042054,
   0.00013485091412895992,
   0.3476545548237248,
   0.001721432528849376,
   0.0001139995337277079,
   0.00012212804024585116,
   0.00012721414699549285,
   0.037612339955022854,
   0.3051273752180147,
   0.010629339268534727,
   0.033209162274384904,
   0.0017856269382636703,
   0.0002170505278129525],
  [0.36273141042273366,
   0.01447427777108716,
   0.0005086292549344514,
   0.012302413916285712,
   0.29612747645977994,
   0.01444665482679769,
   0.00015406863519045415,
   0.01834530162470793,
   0.00017192798394533815,
   0.00033181780738041365,
   0.004329451142388056,
   0.26282877191713416,
   0.0004410726506211951,
   0.012513385101364162,
   0.0002933404856495606],
  [0.07182912574395463,
   0.001026972675193326,
   0.0015635178045287394,
   0.0005602302438245719,
   0.3948998548221234,
   0.0009420602074359296,
   0.0004736044022296009,
   0.0005073738076355897,
   0.0005285037409614005,
   0.007229533033946211,
   0.49144252073156736,
   0.0006922543619018854,
   0.026193972557827617,
   0.001208752130665696,
   0.0009017237362040881],
  [0.22705051794774708,
   0.24421400430660162,
   0.00026037445539108813,
   9.329580015457904e-05,
   0.42665720625888576,
   0.0001568823922223759,
   0.009385593761780423,
   0.010425297849917262,
   0.002156173207215058,
   0.00740842519932015,
   0.00221630681366704,
   0.05285338383157834,
   0.0002257912813296547,
   0.007439857917155995,
   0.009456888977033569],
  [0.248960312560663,
   0.00011915088309178815,
   0.2617007211947963,
   6.499873842686183e-05,
   0.3973910447298738,
   0.00010929921345813195,
   0.031033820845021418,
   5.8866256812571156e-05,
   6.131778281346209e-05,
   0.008043170044281329,
   0.03900691300894975,
   0.003682510855383823,
   0.00015730770741979514,
   0.0008606801002265749,
   0.008749886078781337],
  [0.2509525721732834,
   0.3449240083546248,
   0.00974188500637652,
   0.0012870908895369847,
   0.3879329097795956,
   0.0037208416205520315,
   9.004334427833611e-05,
   9.646370308989131e-05,
   0.00010048100075874172,
   0.00019392646031233485,
   0.0001691336962737442,
   0.0001316138480627819,
   0.00025777898585618966,
   0.00022981223091743662,
   0.00017143890648129936],
  [0.2909041710060494,
   0.002983973948687734,
   0.10759514251151167,
   5.211946836927549e-05,
   0.2741675563330975,
   8.764196100556276e-05,
   0.0006217469515379419,
   4.7202116290498884e-05,
   4.916788108766743e-05,
   0.012226309139330996,
   0.22018130960655963,
   6.440196636355859e-05,
   0.008213748438028974,
   0.0006901393834020234,
   0.08211536928867758],
  [0.2372836757281254,
   0.00038637849800461426,
   0.15477844343048056,
   0.004883206045669,
   0.3074360215243451,
   0.00035443183326225205,
   0.03755762693402016,
   0.058596268415401775,
   0.00019883925498216868,
   0.17793610787560818,
   0.0003346942994745789,
   0.00026044724173254356,
   0.0005101121715613933,
   0.019144490726967237,
   0.0003392560203649601],
  [0.2687315737271811,
   0.0005698592421429861,
   0.016259705550736914,
   0.015202724132186455,
   0.2530977707134491,
   7.418523716746242e-05,
   3.729533911488002e-05,
   3.9954607948520726e-05,
   0.3941654055459938,
   0.005459183633940833,
   0.005937901968944884,
   5.45135582763636e-05,
   0.00010677029791872706,
   0.03383531234492142,
   0.006427844100076634],
  [0.3734931546108222,
   0.0016136574538650529,
   0.42337822134308195,
   2.8184887023746077e-05,
   0.13326774942434702,
   0.02910042719087198,
   0.0009610213880923487,
   2.5525707697235453e-05,
   0.0012761815451998143,
   0.019732402407169353,
   4.475525150442843e-05,
   0.016904329774031376,
   6.821209255592454e-05,
   6.081167987280793e-05,
   4.536524386480779e-05],
  [0.37911027766901606,
   0.0006278224619472116,
   0.020368490034768733,
   0.00031609379828813664,
   0.23618024488975256,
   4.3986692234166576e-05,
   2.211354530972131e-05,
   2.369030699734949e-05,
   0.00031461242384296493,
   0.357538119191029,
   0.004680505451394891,
   3.232275317903026e-05,
   0.00035324288729874276,
   5.6439076334302275e-05,
   0.00033203881860711666],
  [0.2429731662894105,
   0.00022378477784755176,
   0.3210257968188085,
   0.00012207822436381832,
   0.25789544780194024,
   0.04350453506651785,
   0.0068687101593867764,
   0.00011056042441053525,
   0.00011516478979383039,
   0.0015753675662681388,
   0.02590278171021218,
   0.00015084723511562704,
   0.09907187117159164,
   0.0002633958366836356,
   0.00019649212764916962],
  [0.36388642503402385,
   0.0031759045884232804,
   0.09772369267289498,
   0.02881718731910324,
   0.16825693096728403,
   0.02767426232248352,
   2.9665225518774273e-05,
   3.178044451227914e-05,
   3.310396311632066e-05,
   6.389003235419754e-05,
   0.010946244781615265,
   0.0008212553229296631,
   0.289850623771535,
   0.00863255215778236,
   5.6481396423249076e-05],
  [0.28661604700121185,
   7.517423022323709e-05,
   0.011477864707888237,
   4.100876132791026e-05,
   0.10890504901481704,
   0.08370369645785988,
   0.050488232418888564,
   0.01367323823429535,
   3.868638655784613e-05,
   0.024165104786789845,
   6.511849508459598e-05,
   5.067290496785226e-05,
   0.04237115351298083,
   8.848045634357878e-05,
   0.3782404726307634],
  [0.23984571574678648,
   0.00030853232539422766,
   0.339994874242841,
   0.00016830938549638794,
   0.33503999378158894,
   0.017072727293683188,
   0.0001422844746179197,
   0.00015242978172176137,
   0.0001587778254642204,
   0.004037483831295565,
   0.017056966408363464,
   0.0020734960454898382,
   0.043314360802598435,
   0.0003631441368479539,
   0.00027090391781051587],
  [0.2124703842427123,
   0.08272732706574966,
   0.018370981286447315,
   0.0001616740401459113,
   0.515365097959409,
   0.025359547356733493,
   0.000136675122386512,
   0.00014642046595818287,
   0.00015251824758717196,
   0.0934771796511568,
   0.0002567249009148453,
   0.00019977421913757598,
   0.0039752326448329505,
   0.04514826150867709,
   0.0020522012881512243],
  [0.4073230037449879,
   0.024532568532233137,
   0.0015764648916640886,
   0.0037412165470064006,
   0.16336254313544962,
   0.0019101335897583115,
   2.827933039661364e-05,
   0.01189514281040765,
   0.006334757428585751,
   0.020453611146180044,
   5.3118725392305e-05,
   0.007827641005387315,
   0.00786726487370084,
   0.3256139173830347,
   0.01748033685581531],
  [0.22543019249075277,
   0.0001987716593403668,
   0.4750378331497566,
   0.00010843316269997687,
   0.2735385419636962,
   0.006191643249111636,
   9.166663843744308e-05,
   0.0013000640406997106,
   0.0013041537618874066,
   0.00019742255092118887,
   0.00017218282492916884,
   0.00013398657191627953,
   0.005069871395609712,
   0.011050706946960767,
   0.0001745295932806982],
  [0.26622347301599353,
   0.05777075890250416,
   0.08137287090646568,
   0.00010601233243077642,
   0.2462811194339726,
   0.011928556793593257,
   0.25977104685647234,
   0.004796126633304196,
   0.0036250959689968156,
   0.0001930149833911782,
   0.0671449963201913,
   0.00013099524766745354,
   0.00025656739463759753,
   0.00022873208670017302,
   0.00017063312367891973],
  [0.21831601683166058,
   0.00011405630593956235,
   0.000173645384500335,
   0.016613455529133955,
   0.17144029887796758,
   0.00010462586768686231,
   5.259883724253343e-05,
   5.634929110310718e-05,
   0.026264819607793824,
   0.001492551843635438,
   0.0028573388094150966,
   0.004904326078356923,
   0.0001505816452094753,
   0.5573591890194672,
   0.00010014607088752175],
  [0.22963523157544577,
   0.005551664338891337,
   0.0006455528855073501,
   0.12585856001668266,
   0.25790957774701334,
   0.005516605263505331,
   0.00019554410417504313,
   0.0002094869816009093,
   0.00021821121191638462,
   0.041442286240278535,
   0.000367301963168202,
   0.0002858213699494825,
   0.32872895127733565,
   0.0030628969138382363,
   0.0003723081106917563],
  [0.24859961063723995,
   0.024949809335978887,
   0.014268968560436624,
   7.46218671479775e-05,
   0.30073027626020166,
   0.00012548107214770964,
   6.308342895343791e-05,
   6.758146545119788e-05,
   7.03959423468401e-05,
   0.0001358628578197777,
   0.0009455939071048952,
   0.3152175364570137,
   0.028302017722542133,
   0.06632905217374,
   0.00012010831187519706],
  [0.180486273350442,
   0.00022348238346204274,
   0.0003402414630707145,
   0.00012191326332403893,
   0.196739664039502,
   0.00020500434491394357,
   0.010913248424432653,
   0.023082056386946173,
   0.01768156150471946,
   0.00022196555774318957,
   0.03802923928219112,
   0.00015064339928100382,
   0.00029505027977042654,
   0.5218545169118644,
   0.00965513940833683],
  [0.24490763501754592,
   0.00026375636579770655,
   0.000401556715133514,
   0.009712608687978767,
   0.24176303965562543,
   0.027353336772252983,
   0.019259085974017095,
   0.00013030830793790671,
   0.00013573508759639623,
   0.00026196619140921316,
   0.4451742019229842,
   0.00017779099591766644,
   0.0003482215837968357,
   0.009879167916033481,
   0.00023158880597280542],
  [0.3223202506950076,
   0.25123296720034927,
   0.0001876193814428579,
   0.04030439442724443,
   0.288810293430146,
   0.032898885982423624,
   5.683169372139944e-05,
   6.088396286449013e-05,
   0.0008085522543927094,
   0.001612663961556305,
   0.00010675030455205177,
   0.029888378774096443,
   0.018045885285357447,
   0.012812304650680714,
   0.0008533379961647035],
  [0.37361966881043124,
   0.04251594869949995,
   0.009274335046342593,
   6.829531260494416e-05,
   0.21164777729787418,
   0.001628798125296948,
   5.773512061850891e-05,
   6.185180679193028e-05,
   6.442766808773663e-05,
   0.00012434419964060478,
   0.33090773010327873,
   0.016737900624063985,
   0.011519952421676805,
   0.0001473538880409963,
   0.001623880875750846],
  [0.3147263416774878,
   0.01708810508986695,
   0.012465907903557345,
   0.0029069583313179616,
   0.20469144996552893,
   0.00014271484401303844,
   0.02452984147703184,
   7.686321239498825e-05,
   0.008546327565533815,
   0.00015452248079368282,
   0.00013476736641266837,
   0.00010487118816436386,
   0.007730968196992257,
   0.4065637565206837,
   0.0001366041802205863],
  [0.03452221087434992,
   0.00045430519810172237,
   0.06661797848162378,
   0.00024783085086016156,
   0.35599049635144486,
   0.01689832222042976,
   0.00020950989931281563,
   0.00022444857955555633,
   0.00023379589597140115,
   0.003198151729355013,
   0.508575585450624,
   0.0003062347836678462,
   0.0005997916870429239,
   0.0005347195591884495,
   0.011386618438471753],
  [0.3116693282661457,
   0.00010401388245221472,
   0.00015835626503069592,
   5.67412591735949e-05,
   0.19470908064884443,
   9.541377491928287e-05,
   4.796761765164563e-05,
   5.138785175253686e-05,
   0.3321200678295065,
   0.0007322218179132438,
   9.010039042741828e-05,
   0.015792960463436277,
   0.0007662371419322172,
   0.14288588047447037,
   0.0007202423163439375],
  [0.3355941903101076,
   0.16616925752879536,
   0.14155129472603226,
   0.00013131792234141764,
   0.2453934069917245,
   0.0002208188339074194,
   0.00011101283230973697,
   0.01176303611281984,
   0.005945935100073558,
   0.0046056288727562966,
   0.00020852191589334988,
   0.00016226436458722344,
   0.0017733245783553128,
   0.045404248870408885,
   0.04096574103988718],
  [0.10959187612089188,
   0.0003810373861072512,
   0.1572467009854884,
   0.00020786207158331424,
   0.47598020517096956,
   0.00034953233680678775,
   0.03703844822948566,
   0.00018825076276187641,
   0.000196090596048163,
   0.00037845119878394376,
   0.18464370224437004,
   0.0002568469434016658,
   0.028150105814297863,
   0.00044848296692385115,
   0.004942407172079644],
  [0.31108465348491976,
   0.0058100540399947205,
   0.0002832183592718146,
   0.00010148108963701116,
   0.23912883973173976,
   0.00017064643940251662,
   8.578953265185576e-05,
   9.190658201641455e-05,
   0.44101940441587556,
   0.00018476502102806268,
   0.0012859487937608423,
   0.00012539617010354624,
   0.0002456010369374133,
   0.00021895548245236236,
   0.0001633398202082822],
  [0.269382531042981,
   0.12448305330864289,
   0.01175075248495967,
   6.523372298398056e-05,
   0.35761422359335227,
   0.018185780352289013,
   0.005116451010166695,
   0.1721434177762129,
   6.153945991653599e-05,
   0.03554789856858582,
   0.00010358571514792695,
   8.060673227934569e-05,
   0.00015787640894930247,
   0.0023098785256031,
   0.0029971712979296166],
  [0.3052226610191028,
   0.002131776868051506,
   0.04137433915307178,
   0.00044993883042271165,
   0.17316894735598115,
   6.261217703475416e-05,
   3.147718419988081e-05,
   3.372160124769668e-05,
   3.512596066728101e-05,
   6.779244997401644e-05,
   0.09291757723752918,
   4.600932330901945e-05,
   0.022788846557830863,
   0.0009057457910770228,
   0.36076342849050036],
  [0.2577317426157328,
   0.3251018412990494,
   0.02430193596181425,
   0.0001201276847190991,
   0.29505079479931495,
   0.008190894381922349,
   0.0027645170875691886,
   0.03739029267999716,
   0.00011332471152156483,
   0.0002187145829096611,
   0.0001907527512073522,
   0.012131775919564292,
   0.0002907288839470756,
   0.03088327562690245,
   0.00551928101382835],
  [0.3210534444816919,
   0.011637212766173325,
   0.030678292344548618,
   6.116502569068919e-05,
   0.17328024046362317,
   0.044169371512503115,
   0.319364482866813,
   5.5394246063822555e-05,
   0.004125379846684463,
   0.00011136219859626475,
   0.005520696521501347,
   7.557920390224272e-05,
   0.011673119049845642,
   0.00013196958918375312,
   0.07806228988317863],
  [0.2561435187280384,
   0.04160286345530384,
   0.00035916957656106436,
   0.00012869547047583663,
   0.20483167662803287,
   0.0002164090263761188,
   0.02150549334248706,
   0.01723391131999647,
   0.00012140729341375113,
   0.0002343138154481557,
   0.007336590169000597,
   0.00015902390450346786,
   0.0003114643438602386,
   0.4496083199495757,
   0.00020714297692638143],
  [0.30558762549911805,
   0.00019853305015106812,
   0.02671146561633679,
   0.00010830299751882986,
   0.1279595353240807,
   0.03379383759160783,
   0.21376606048113736,
   9.808485856519266e-05,
   0.00010216967037566484,
   0.00019718556122667758,
   0.00017197613347021614,
   0.006135918537595435,
   0.00026211118336626205,
   0.0002336744230633865,
   0.2846735190723865],
  [0.18558646624644115,
   0.00013667824473938717,
   0.0002080862269305655,
   7.456019836306449e-05,
   0.2517231404116831,
   0.00012537737244754554,
   0.0008894483671600046,
   6.75256149744368e-05,
   0.03973835719453887,
   0.00013575057843470226,
   0.016646736809311807,
   0.03066956273203454,
   0.04315413573766554,
   0.41171657257008837,
   0.01912760169518694],
  [0.36623455823672646,
   0.29052185269878517,
   0.009671134829543529,
   0.013373271459066813,
   0.19631412148922542,
   9.620029707310352e-05,
   0.008291639792660089,
   0.0006859096687030588,
   0.0076631477319716946,
   0.00010415951234524101,
   9.084311288231544e-05,
   0.057773628243437895,
   0.04262303548272871,
   0.006464416184421572,
   9.20812604289963e-05],
  [0.11975981613081833,
   0.2852944897344958,
   0.04916111394678068,
   0.0001375230903516669,
   0.4200881088330133,
   0.010901289275512534,
   0.00011625852355654618,
   0.000124548102782162,
   0.021469807165718006,
   0.0002503861238734947,
   0.0017426660748771786,
   0.00016993184535745866,
   0.0003328286453566871,
   0.06584122704418018,
   0.02461000546332599],
  [0.22554774536470726,
   0.0001978206474202544,
   0.3220550476446059,
   0.0001079143702795414,
   0.15620703930311083,
   0.0001814643803534042,
   9.122806451739864e-05,
   9.773289741293034e-05,
   0.00010180305155765657,
   0.0001964779937350784,
   0.003759692203941199,
   0.00013334552063437024,
   0.2849356027732778,
   0.0002328359213782262,
   0.006154249863068118],
  [0.2027285873575319,
   0.0001343466903726931,
   0.016450925810963236,
   7.328829765636129e-05,
   0.30429143111116796,
   0.018806586252693484,
   6.195606321609957e-05,
   6.63737151767949e-05,
   0.0016937768211133402,
   0.026939977138365382,
   0.4014021905877163,
   0.026084782277929767,
   0.0009896892763955568,
   0.0001581267468536174,
   0.00011796185284746113],
  [0.24152836070890554,
   0.00022623371558830647,
   0.004448157316664329,
   0.00012341415960411665,
   0.34689593655413886,
   0.0015754372169844305,
   0.06713187348713337,
   0.3297778456858264,
   0.00011642506943771359,
   0.00022469821595312228,
   0.00019597139941119368,
   0.00015249799747183525,
   0.007138227829367495,
   0.00026627824902381557,
   0.00019864239448943275],
  [0.23663526096280418,
   0.00013241061541181137,
   0.0002015889611337538,
   0.0032746845312724223,
   0.18221615093649884,
   0.012130659077656184,
   6.10632121727673e-05,
   6.541720119302646e-05,
   0.4980494887965242,
   0.01454254768700594,
   0.00011469861391646292,
   8.925439624153996e-05,
   0.02899688527541356,
   0.023373627832389,
   0.00011626190036628259],
  [0.2626709747728451,
   0.004554232733174956,
   0.011872353217514349,
   0.40873775603780926,
   0.2425689084881982,
   0.00021827719078192597,
   0.0001097350653861063,
   0.0015563198885019318,
   0.00012245534943968955,
   0.00023633654406137134,
   0.0002061218113159149,
   0.031813125178073755,
   0.010385475780519234,
   0.024738996790795297,
   0.00020893115158289617],
  [0.2485216017306668,
   0.00020492906720680782,
   0.013942003683953699,
   0.00011179212851636941,
   0.4046821044196072,
   0.0014270767665197474,
   9.45062227246498e-05,
   0.00010124479807055672,
   0.0001054612077484338,
   0.3248455653778135,
   0.00017751658269022603,
   0.002616320526991289,
   0.00027055545799980574,
   0.002719385981919036,
   0.00017993604757181596],
  [0.28483635091348986,
   0.08929042992787292,
   0.006914350973509008,
   0.0004983409728650326,
   0.3512748196042422,
   0.011885103258206044,
   0.00042128478632111604,
   0.00045132364717983793,
   0.011517232844015988,
   0.0009073215577394819,
   0.21621003739930889,
   0.0006157802367561453,
   0.0012060676538046687,
   0.0010752199107216492,
   0.022896336313967296],
  [0.07434545342252578,
   0.0009783708832558646,
   0.12571844144434957,
   0.0005337171783797591,
   0.7429821899902268,
   0.0008974769236735416,
   0.00045119093089406053,
   0.035977338643852434,
   0.0005034921418440816,
   0.0068873932002308565,
   0.0008474983962325358,
   0.0006594932152057262,
   0.00129168392761889,
   0.007067210313588142,
   0.0008590493881219336],
  [0.3354038940426373,
   0.0016522474650670642,
   0.02151958464926094,
   3.578718692331892e-05,
   0.16921401371880487,
   0.007596742201930924,
   0.010740107591762926,
   3.241074807010359e-05,
   3.3760516101985925e-05,
   0.00046181842716645256,
   0.3185758186704282,
   4.4220811926789175e-05,
   0.10123523215979562,
   7.721439340507803e-05,
   0.03337714741671844],
  [0.2346552694026895,
   0.04437423136030668,
   0.00021837284879066762,
   0.013087303834338369,
   0.2320779185341717,
   0.00013157533008849713,
   6.614721125344123e-05,
   0.03302714345402727,
   7.381487257514928e-05,
   0.00014246132949327124,
   0.00012424818766073334,
   9.668553607667078e-05,
   0.02100386084000229,
   0.4173259435494678,
   0.0035950237090579696],
  [0.3845564754918699,
   0.24578815292621856,
   0.009396325736951776,
   8.269247683250901e-05,
   0.21501977048549634,
   0.00013905227848180565,
   6.99061171560189e-05,
   0.012906651604251227,
   7.800950383719379e-05,
   0.00015055688971680917,
   0.00013130876114724157,
   0.0028518428896814147,
   0.0084491186801965,
   0.08083520044935075,
   0.03954493570881195],
  [0.30270722330691746,
   0.0016140131504291918,
   0.0003487234347948413,
   0.00012495247213468178,
   0.19471944292035587,
   0.00021011495383617778,
   0.00010563164256977814,
   0.0001131634935087608,
   0.027817066545700823,
   0.33123282284566896,
   0.025127685363673328,
   0.018158872511570667,
   0.011382081780305784,
   0.08475212766496727,
   0.0015860779135663783],
  [0.2853221858355615,
   0.00014583799329591368,
   0.014330846863495707,
   0.43480742991048016,
   0.2227391882376948,
   0.00454278456823877,
   6.725545606583301e-05,
   7.205097053098516e-05,
   7.505158305860922e-05,
   0.00984465870968133,
   0.00012632986891100562,
   9.830542664741217e-05,
   0.017828560271022063,
   0.009871462621593571,
   0.00012805168372229797],
  [0.18628185160463634,
   0.030134264403860387,
   0.011916986450786923,
   0.0008588980577146904,
   0.5768675654385675,
   0.12520340361603985,
   0.0007260905773725203,
   0.0007778629995741072,
   0.0008102576424789318,
   0.0015637821614081248,
   0.05848345046499635,
   0.0010613063707932105,
   0.002078675488731883,
   0.0018531574629026203,
   0.0013824472601365759],
  [0.322607956551754,
   0.01535902007163196,
   0.00018271801125860053,
   0.12850850876308648,
   0.21522972468832832,
   0.001561426128324455,
   5.534702211133046e-05,
   5.929342974371907e-05,
   0.005867097812338981,
   0.002296201598980973,
   0.0001039615587632742,
   8.089920046029065e-05,
   0.015397453787397847,
   0.29185934598812296,
   0.0008310453876968013],
  [0.29867617194841,
   0.0006871209523724236,
   0.1634698125486117,
   5.3195019899088435e-05,
   0.17192713004282523,
   0.124496690804148,
   0.17751690958528107,
   4.817619200491239e-05,
   5.018252285927605e-05,
   0.002455282429215209,
   8.446925802331457e-05,
   6.573098286377524e-05,
   0.04434932377811969,
   0.00011477351384114447,
   0.016005030421525096],
  [0.23740140781611604,
   0.08833705692145746,
   0.00984113971192566,
   0.014096338350413903,
   0.47586901342491666,
   0.00035115038188619546,
   0.00017653475371659654,
   0.0001891222077994495,
   0.00019699833301737294,
   0.1323115865862295,
   0.014219109634634464,
   0.0002580359319133688,
   0.01439290342794583,
   0.012023487446161989,
   0.00033611507186545456],
  [0.17699996921037633,
   0.0005905759435229673,
   0.0008991242171566974,
   0.000322168751738711,
   0.47348398500224315,
   0.0005417457633497239,
   0.00027235327040295835,
   0.0002917728703023394,
   0.00030392395339529413,
   0.2898281030708325,
   0.03979129182396937,
   0.0003980911886103827,
   0.0007797017136777158,
   0.01497864354605429,
   0.0005185496743674659],
  [0.41678177477381734,
   0.002215580727249842,
   0.322998925246733,
   0.0032394055789055315,
   0.1242502401921516,
   0.0016764044082597427,
   0.05216704229973566,
   4.3461182600123894e-05,
   0.0133428409939146,
   8.737248345915185e-05,
   0.02613943912907662,
   0.000591200677687537,
   0.01873273865858089,
   0.005422568553070355,
   0.012311005094758005],
  [0.03977922617073522,
   0.0003198700996636025,
   0.033366279014428346,
   0.000174494325170819,
   0.49627570804974636,
   0.0022274984888972296,
   0.00014751306534400752,
   0.00015803118654987195,
   0.0001646125046726156,
   0.031262914849608116,
   0.029288222239702053,
   0.36188782517883994,
   0.002356381140454137,
   0.002310564741898484,
   0.000280858944289185],
  [0.303477904390921,
   0.00029425967404465977,
   0.011123340781781402,
   0.00016052342279383958,
   0.22880067656311018,
   0.44507593828604214,
   0.00013570241973571837,
   0.007262274545590293,
   0.00015143279105980992,
   0.00029226246677177374,
   0.0002548978164587698,
   0.00019835244676874778,
   0.0003884932575313147,
   0.0003463451526629159,
   0.002037595984727374],
  [0.06285257145194262,
   0.006332150613749806,
   0.061136840111020926,
   0.0004902177363962514,
   0.5357220328890733,
   0.011691369430406906,
   0.00041441760877335853,
   0.0004439668194060407,
   0.0004624561248288772,
   0.3160366738684953,
   0.0007784249078543864,
   0.0006057426746283229,
   0.0011864080767627126,
   0.0010576932250459376,
   0.0007890344616153166],
  [0.1578040616736906,
   0.05581499734269791,
   0.001258697014353027,
   0.000451008701793965,
   0.5528606054114039,
   0.010756259836219561,
   0.00038127128795346655,
   0.00040845706712264374,
   0.000425467544338599,
   0.1557880069186711,
   0.005715095276589052,
   0.0555455351463808,
   0.0010915157220384845,
   0.0009730958570186244,
   0.0007259251997283411],
  [0.08350816875528326,
   0.0004518229460876364,
   0.0034198004875868895,
   0.5630222462450198,
   0.3431177355308075,
   0.00041446518354103695,
   0.0002083651702370463,
   0.00022322222788494269,
   0.0002325184720368194,
   0.003180677532263025,
   0.00039138452374628765,
   0.0003045615650656402,
   0.0005965145197786811,
   0.0005317979357768911,
   0.0003967189048843833],
  [0.2054330991741457,
   0.000132942794123426,
   0.05566673032305682,
   0.3159780607087588,
   0.36461428605812707,
   0.013787075842148208,
   6.13086346525291e-05,
   6.56801230270506e-05,
   0.0008722463033575895,
   0.0009358713673267794,
   0.01860326998694437,
   0.0025011057819113447,
   0.01866362671532041,
   0.0025679670122016737,
   0.00011672917489827058],
  [0.31101870877906374,
   0.36695665246020825,
   0.01255251680067485,
   9.243552821816341e-05,
   0.19117580874992002,
   0.002204526333212481,
   7.81426450447918e-05,
   8.371444853224031e-05,
   8.720079467244886e-05,
   0.00016829590986910546,
   0.03190768326929115,
   0.032899667551589545,
   0.00022370928082702333,
   0.04015670430013057,
   0.010394233148745618],
  [0.15889375526312619,
   0.0002693403950190363,
   0.0004100581381211454,
   0.00014692955208853625,
   0.35599436564567905,
   0.00024707071038160137,
   0.00012421050711525713,
   0.39261387275795745,
   0.00013860875736814067,
   0.000267512320555349,
   0.03931853734383061,
   0.04415243368190665,
   0.006869798083493289,
   0.00031701503284136854,
   0.00023649181051631232],
  [0.33655943600874977,
   0.003192367115438529,
   0.03167517835238192,
   5.575935975224742e-05,
   0.1363349411199232,
   0.0013298239244847359,
   0.046399435221318626,
   5.0498592285352053e-05,
   5.2601641106514624e-05,
   0.0001015201877905135,
   0.35545615673558223,
   6.88996362314146e-05,
   0.034744662479894835,
   0.0063006126874258295,
   0.0476781069376343],
  [0.182698612465358,
   0.32868506003447495,
   0.06824808114212345,
   0.00027671532025856546,
   0.2809317506954649,
   0.00046531313665585126,
   0.00023392809524911697,
   0.0002506078656379245,
   0.06773685517524788,
   0.0005038112238372567,
   0.00043940086553714093,
   0.034079831466280235,
   0.0006696968847601517,
   0.03433494594300075,
   0.00044538968611376566],
  [0.32957931821443326,
   7.350372352625298e-05,
   0.07833264140604575,
   4.0097472842083887e-05,
   0.1438176065418431,
   0.009400582198144042,
   0.36536028671792486,
   0.02536916618354875,
   0.00048226270217601033,
   7.300483705229951e-05,
   6.367144492108505e-05,
   4.954686181645501e-05,
   9.704252234392557e-05,
   8.651426135315146e-05,
   0.04717475491202898],
  [0.16868637510155068,
   0.0003149962856487955,
   0.07095001694860291,
   0.04969161115444875,
   0.35348694807953507,
   0.0002889516667461378,
   0.000145265430300917,
   0.0001556232884293744,
   0.0020667110808085414,
   0.2631485902261922,
   0.08788477121088879,
   0.0002123304329223968,
   0.00041587055215521097,
   0.002275359004216134,
   0.00027657953755407563],
  [0.341539666191564,
   9.117013362216564e-05,
   0.3149053614129994,
   0.011626088099859197,
   0.1640511297615014,
   0.05135033950982202,
   4.204452336299045e-05,
   4.504242318795464e-05,
   4.6918246071342434e-05,
   0.01056439481568773,
   0.005591523892019787,
   0.001163965148016282,
   0.08776989864933193,
   0.007273621673293203,
   0.003938835519660607],
  [0.3645273297620869,
   0.07673930888361896,
   0.00549392493842531,
   4.405231677585955e-05,
   0.2673751613791617,
   7.407656965569793e-05,
   3.724070841129571e-05,
   3.989608191294992e-05,
   4.155758185262986e-05,
   0.16951026099653774,
   0.007394017213121921,
   0.0005427047598089575,
   0.014266474456977414,
   0.0762653316068765,
   0.01764866274477614],
  [0.1457031276705564,
   0.305319458941947,
   0.0034694065592333167,
   0.0047611978513083155,
   0.37223396915801926,
   0.01564105247794038,
   0.00011751238494439648,
   0.00012589136822396515,
   0.020160630956169198,
   0.00025308656667264806,
   0.017168766122524645,
   0.00787541717761933,
   0.06042490850451165,
   0.0418996438462671,
   0.004845930414062353],
  [0.22622729068264447,
   0.09860782172769211,
   0.0034040413550290483,
   7.223213737712772e-05,
   0.44081418174354386,
   0.00012146260054882983,
   0.0008616763106465909,
   6.541720119302646e-05,
   6.814154580594858e-05,
   0.00013151191447711364,
   0.00011469861391646292,
   0.009696611577927424,
   0.0009754268288297322,
   0.21872322386000195,
   0.00011626190036628259],
  [0.3731861831952406,
   5.770553160467888e-05,
   0.008810682632710728,
   3.147930302510728e-05,
   0.08185354666799605,
   0.014707286459445686,
   0.41348869043849235,
   2.8509303118887942e-05,
   0.0003786097393043764,
   5.7313871049148166e-05,
   4.998650953916571e-05,
   3.889773011894996e-05,
   0.029384889433052223,
   0.0004168328545822232,
   0.07750938633071983],
  [0.2944093077524944,
   0.018665149215308437,
   0.012731667486109393,
   0.0001837335457788623,
   0.2639195077255906,
   0.00030895879713265526,
   0.0001553236675051253,
   0.008312328689842064,
   0.3972874151157829,
   0.00237100326748567,
   0.0002917535572949217,
   0.00022703227805913494,
   0.0004446655975500945,
   0.00039642328735916437,
   0.0002957300167065238],
  [0.18818500630465676,
   0.00012991434831719292,
   0.12038228186714074,
   7.087038320698285e-05,
   0.42386303059819436,
   0.006403329245904734,
   0.0016309511486583316,
   0.025986329551151384,
   6.685690938882448e-05,
   0.009555267363115091,
   0.2027765838813034,
   8.75717304545496e-05,
   0.009597752832828745,
   0.00015290985741455183,
   0.011111343978264293],
  [0.22163767506320017,
   0.0478351068073679,
   0.0492720714335232,
   0.00011933323439217584,
   0.3473292474729721,
   0.00020066587404855642,
   0.08872020667438982,
   0.00010807441793518712,
   0.0014352517502542693,
   0.00021726813971630586,
   0.049128521670946446,
   0.03189169132103808,
   0.07568136659119609,
   0.022742973722201795,
   0.06368054582681794],
  [0.1633922599278239,
   0.0007006633731007637,
   0.001066727173259971,
   0.00038222322933499094,
   0.5320890229888434,
   0.0006427309105198997,
   0.00032312179865846494,
   0.0003461613459326055,
   0.00036057747473045287,
   0.1955758464744309,
   0.072627785528662,
   0.025891420566426845,
   0.000925043491373821,
   0.005061204806353779,
   0.0006152109105481734],
  [0.1803315971257935,
   0.004774030692920418,
   0.0003797541369903964,
   0.5762678365738184,
   0.23466927487897696,
   0.0002288117602700759,
   0.0001150311371719648,
   0.00012323320009026677,
   0.0001283653319864088,
   0.000247742700321148,
   0.00021606973366433937,
   0.00167633614752954,
   0.0003293148440867891,
   0.0002935870770941494,
   0.00021901465928566918],
  [0.3341983106740998,
   0.00016134597186755838,
   0.07536445863859925,
   8.801684343009301e-05,
   0.23276664450243573,
   0.0011235745663711891,
   0.01568351202254609,
   7.971265650052207e-05,
   0.30250943825715365,
   0.002111388982751056,
   0.00013976341154111702,
   0.00010875893341523449,
   0.0011885843834631468,
   0.03433482183680578,
   0.00014166831901978917],
  [0.2782783506464734,
   0.017439113443432325,
   0.00017448771413816952,
   6.25213824574788e-05,
   0.177815773188956,
   0.00010513339323665099,
   5.285398689509984e-05,
   0.013223245571996115,
   0.0014449410317453066,
   0.0008068118506395125,
   0.0007922588991016581,
   0.021559639994415666,
   0.00015131209585196608,
   0.4692824607596025,
   0.018811096041058187],
  [0.3912763786225101,
   0.27701959360088574,
   0.025737405759426058,
   0.00536007336551522,
   0.21826313721114501,
   0.002006585870749676,
   3.6862729333713175e-05,
   3.9491151800609726e-05,
   0.0019743969383493667,
   0.011195642918764338,
   0.032451365693105735,
   5.3881224610113204e-05,
   0.03442091722482277,
   9.408253473682285e-05,
   7.01851542447473e-05],
  [0.32863507685935534,
   0.00010923503950104765,
   0.00016630523212911872,
   0.013269255970543528,
   0.1945755904495832,
   0.00010020323466956608,
   5.037543533052778e-05,
   5.396735400816511e-05,
   5.621486181168572e-05,
   0.0027504269335769335,
   0.0007551064599145852,
   0.006678465613329123,
   0.011372432931331136,
   0.44133143082185655,
   9.5912803059481e-05],
  [0.23956243015239145,
   0.02246954994895428,
   0.004734131249666128,
   0.014394495362035967,
   0.22236732952662866,
   8.70385888153687e-05,
   4.3757138345761464e-05,
   4.6877152723262116e-05,
   0.09471087847551118,
   0.0012416585790486865,
   0.004098157319150147,
   0.010390727581991457,
   0.0018463975101566644,
   0.3833495501943984,
   0.0006570212201825319],
  [0.16491714735149363,
   0.0003079578230562027,
   0.0786749134554465,
   0.0001679959851570372,
   0.3660709675196945,
   0.0058686424527204925,
   0.00014201953394038066,
   0.00015214594998428656,
   0.2887760922733287,
   0.028236604104620838,
   0.00026676362268554906,
   0.00020758599663066356,
   0.035785510946483995,
   0.028293204405923224,
   0.0021324485788340375],
  [0.18127740595181266,
   0.00020316687051617782,
   0.0003093120459924904,
   0.07504546872453881,
   0.30661259512050104,
   0.00018636856540175156,
   9.369355834668116e-05,
   0.00010037418830038006,
   0.034500781574943656,
   0.0886492293899445,
   0.00017599010751121702,
   0.00013694926428524867,
   0.10959909407324465,
   0.20293118179738387,
   0.00017838876727684392],
  [0.21331674633727096,
   0.001297696016278581,
   0.012529239858517864,
   0.0001004640670184246,
   0.33138262035932037,
   0.00016893625586709738,
   0.01567438776539974,
   0.257317042476979,
   9.477466780258368e-05,
   0.0012964460580991409,
   0.0001595285651767619,
   0.000124139475464815,
   0.06260097166506663,
   0.00021676115561852462,
   0.1037202452761195],
  [0.4193901966160874,
   5.966232680097235e-05,
   0.3503740291148765,
   3.254676652867895e-05,
   0.1629108218453019,
   0.037211443200677145,
   2.751420880295807e-05,
   2.947605389375111e-05,
   0.00039144839962928466,
   0.018817986728851602,
   0.002216150323055086,
   4.0216752564924795e-05,
   0.008375898849748868,
   7.022286608314333e-05,
   5.238594709783736e-05],
  [0.34129994084997217,
   0.007068248461767582,
   0.011915733988149099,
   3.944877203228108e-05,
   0.1546082873771733,
   0.013183711478730273,
   0.06911819613885993,
   0.0004729727390764377,
   3.721474130540252e-05,
   0.001383561361824493,
   0.0013743789662176125,
   0.002234974628067571,
   0.040759338286591035,
   0.0005223604932696267,
   0.3559816317169632],
  [0.1896749400676841,
   0.0872222139895614,
   0.00019935447982473415,
   0.001654909147164716,
   0.24116029425323016,
   0.034164885863105135,
   6.038636654837709e-05,
   0.000856430922266585,
   6.738624149952838e-05,
   0.00013005419123096067,
   0.006447337877536462,
   0.00879739217573731,
   0.021549824385726817,
   0.406316139169751,
   0.0016984508691327428],
  [0.13547286809958836,
   0.002146030831834662,
   0.00046367109379128043,
   0.40529076954760335,
   0.31046498650455145,
   0.0021208495024711274,
   0.00014045038091034295,
   0.00015046491166651523,
   0.00015673112703581735,
   0.0003024881565401276,
   0.00026381619048923875,
   0.002046767999018637,
   0.0317071708979324,
   0.10900552287941866,
   0.00026741187714797416],
  [0.20725170979336968,
   0.00040531663532907024,
   0.0006170755961831085,
   0.36292818528142584,
   0.41073088131661173,
   0.0003718041217439963,
   0.005088365069162983,
   0.00020024587755097125,
   0.00020858525569336729,
   0.00040256565922427767,
   0.0003510991631973176,
   0.0002732129252661231,
   0.0005351150493245104,
   0.005378506774932745,
   0.005257331480984208],
  [0.176310001636363,
   0.0003051171078795316,
   0.0004645265080165435,
   0.00016644632897386461,
   0.2667608058649594,
   0.040867092638872886,
   0.00014070949400879374,
   0.00015074250030114428,
   0.00015702027604122914,
   0.0021479190867682574,
   0.0021091757758560613,
   0.00020567114775544757,
   0.3472389287410679,
   0.00035912440823463067,
   0.16261671848490128],
  [0.16125729694119667,
   0.03828718856926507,
   0.00041615774536043777,
   0.00014911512646511514,
   0.24063714713286607,
   0.00025074588264026163,
   0.00012605813611700752,
   0.054676645476389896,
   0.01997397929442768,
   0.00027149156138821164,
   0.00023678239272125615,
   0.00018425566605674158,
   0.00036088329179241574,
   0.4630989344271276,
   0.020073318356185563],
  [0.25020228129112415,
   0.00010901902375938134,
   0.39962735812648953,
   5.947164490110468e-05,
   0.20539682343209395,
   0.0053734226607057905,
   5.0275816315654974e-05,
   5.38606318606281e-05,
   5.610369514646193e-05,
   0.029112075782914262,
   9.443601539678033e-05,
   7.348676021346926e-05,
   0.07924519494256428,
   0.0001283159527369504,
   0.030417874223777612],
  [0.2835863712781646,
   0.17045321274715192,
   0.00033750509343067584,
   0.00012093278390372619,
   0.3211555368186662,
   0.024330658750368776,
   0.0001022335003545799,
   0.00010952305362582127,
   0.008156518596800378,
   0.009603020524095165,
   0.029680957240934336,
   0.13419000485655186,
   0.0002926773572566267,
   0.017686198925262617,
   0.00019464847343260606],
  [0.32858353985874644,
   0.014164536543692619,
   0.4221630590035624,
   4.381697660116961e-05,
   0.16444328927430144,
   0.009786932211123565,
   3.704175781199615e-05,
   3.968294554296942e-05,
   4.1335569271029414e-05,
   7.977687894423828e-05,
   0.00055524027587866,
   5.4142905549759463e-05,
   0.05158627665043608,
   0.00835080313126977,
   7.05260172679039e-05],
  [0.3079047893411476,
   0.22690087551277133,
   0.0005761295066215643,
   0.01164696320451748,
   0.2736477396881255,
   0.05297356167070542,
   0.00017451510293007696,
   0.07798254870536268,
   0.00019474456807961848,
   0.0003758533898703165,
   0.0003278019563880004,
   0.018559928607082162,
   0.000499607456947012,
   0.02790267155146452,
   0.0003322697379866426],
  [0.1990483500235322,
   0.01853113036528505,
   0.020131083039231168,
   0.056048944762671554,
   0.2174742826894045,
   0.003183723791142975,
   5.848777772085068e-05,
   6.265813058888261e-05,
   0.027671724127215445,
   0.0016596572290157863,
   0.00854516719399946,
   0.0008523359708733741,
   0.04924558568107502,
   0.3966086648260765,
   0.0008782043921672569],
  [0.3015274833116419,
   0.00010291357819289921,
   0.372268744449325,
   0.004411967853826665,
   0.22749597761470483,
   9.440444635211502e-05,
   4.746019525026022e-05,
   5.084424862161473e-05,
   5.296169254009797e-05,
   0.020014566296192016,
   8.914726916114093e-05,
   6.937124533479332e-05,
   0.07356266568383178,
   0.00012112981184400069,
   9.036230318081564e-05],
  [0.15583545167499074,
   0.00013667824473938717,
   0.0010345032983597436,
   7.456019836306449e-05,
   0.25998731112597484,
   0.00012537737244754554,
   0.005021533724305895,
   6.75256149744368e-05,
   0.0463496937659723,
   0.02327542857845169,
   0.00011839538072824626,
   0.019099723732026046,
   0.02414654309479444,
   0.46460726514155576,
   0.00012000905231584286],
  [0.37011494522415256,
   0.006263110675025179,
   0.4353703181864106,
   0.0078725112232804,
   0.14104239653829978,
   0.007565813207129202,
   2.4924672401667986e-05,
   0.00198745878558548,
   0.00035460671221874935,
   5.3680297328349435e-05,
   4.681747446735534e-05,
   0.0059187024286107,
   0.014123446341439987,
   0.008233434204845938,
   0.0010278340288041522],
  [0.2904803934988757,
   0.0002520971646142149,
   0.0003838061273357032,
   0.0001375230903516669,
   0.32100920232476565,
   0.0017555440593666006,
   0.00011625852355654618,
   0.004697420710855129,
   0.001654025864068487,
   0.003298967862588806,
   0.026131319984599666,
   0.34923254092826056,
   0.0003328286453566871,
   0.0002967196618009815,
   0.00022135155360350153],
  [0.22759637918416206,
   0.0019421724335760876,
   0.14374274292435077,
   0.00015035766395250926,
   0.5959504637471812,
   0.02191795768720239,
   0.00012710854571279764,
   0.0034692675183893083,
   0.0018083906084601302,
   0.0019403017070817631,
   0.0002387554386910751,
   0.0001857910205024479,
   0.0003638904382118045,
   0.00032441152306197734,
   0.00024200955946360989],
  [0.16182636283496757,
   0.005590801903842012,
   0.04194630779379508,
   0.01488534821961156,
   0.2840048581186888,
   0.012283472016920986,
   0.002786780376678132,
   0.00010967005599728607,
   0.17057425062600315,
   0.00022047594152580237,
   0.00019228892679026014,
   0.00014963242779113446,
   0.06203449232480974,
   0.2432003487010249,
   0.00019490973155360727],
  [0.2220641398967377,
   0.030806505112854324,
   0.007644055776929327,
   0.00013131792234141764,
   0.47682004821897855,
   0.0002208188339074194,
   0.00011101283230973697,
   0.00011892837811523636,
   0.0001238812327212562,
   0.011883196206946674,
   0.18360321873749086,
   0.03946112796921526,
   0.013417432313059917,
   0.013382952599971227,
   0.00021136396842106331],
  [0.25537657856212614,
   0.03890602074739823,
   0.04525575252257995,
   0.00011262947802944962,
   0.31658205500859304,
   0.00018939311221664192,
   0.003840332488286561,
   0.00010200314558116765,
   0.00010625113716590679,
   0.00020506271612697954,
   0.04761701251722633,
   0.20237556493797093,
   0.03522702030382127,
   0.00024300923244424677,
   0.05386131409043314],
  [0.23508376375206466,
   0.00016789780808157095,
   0.012437828733350099,
   9.159097630464486e-05,
   0.3183575128228088,
   0.008275490419172919,
   7.74286823329196e-05,
   8.294957815112248e-05,
   0.18992587725976126,
   0.020470445219594777,
   0.0031909918824705365,
   0.00011317534809419672,
   0.051996067104207566,
   0.15755119061896986,
   0.0021777897946351054],
  [0.18308232225091858,
   0.00015172480058267215,
   0.19747096141965179,
   8.276833851364515e-05,
   0.48676600712413337,
   0.03500019735884512,
   6.997024869219112e-05,
   0.03126639605943662,
   7.808106938139283e-05,
   0.044185664501847535,
   0.01847933317815877,
   0.00010227356340544929,
   0.00020031308135584177,
   0.0029307664653674017,
   0.0001332205397095617],
  [0.4135120206610421,
   0.028506242295956146,
   0.00025484042007950893,
   9.13128780906539e-05,
   0.12306730987034475,
   0.0062261596225618695,
   7.719358517447423e-05,
   8.269771786459815e-05,
   8.614172155256681e-05,
   0.0021904557953958555,
   0.42219150557896723,
   0.002137035590052737,
   0.00022099228166569686,
   0.0012091184993609334,
   0.00014697348189084223],
  [0.3362541848906612,
   0.021269048556774965,
   0.0003312882441798934,
   0.04090588368069937,
   0.20603546557043415,
   0.008093902406450013,
   0.0001003503576333137,
   0.00010750563721602431,
   0.005374844523307597,
   0.03047757968928745,
   0.00018849396415630465,
   0.00014667932236913175,
   0.004234432540203558,
   0.34628927757120653,
   0.0001910630454204685],
  [0.27232860792158536,
   0.3217526280587045,
   0.019905058566623262,
   0.0019682400334868158,
   0.2385895296728122,
   9.66292039115452e-05,
   0.0057809065797038124,
   5.2042456236249505e-05,
   0.04527590788514424,
   0.00010462390516410803,
   0.003275874760527218,
   7.100606454542691e-05,
   0.05618850114576101,
   0.0275117733666391,
   0.007098670379155126],
  [0.2040712919649936,
   0.00013578055379837053,
   0.0002067195345120165,
   7.407049340117717e-05,
   0.16468696403488636,
   0.0001245539046625353,
   0.003346574252701635,
   6.708211255044305e-05,
   0.5657314588968271,
   0.0001348589803260862,
   0.00011761777006357451,
   0.0017335044506420342,
   0.029734875326108176,
   0.029715426881331764,
   0.00011922084319514963],
  [0.26962418394734816,
   0.00022685434780840856,
   0.008575344979545924,
   0.4706036963117304,
   0.22714135966098625,
   0.007066405723033111,
   0.00010461740646289545,
   0.00011207693934463567,
   0.00011674446104180217,
   0.0029686379220239915,
   0.00019650901231463205,
   0.00015291634877940207,
   0.00029950208043748056,
   0.012611963524347005,
   0.00019918733479586665],
  [0.31378689941899535,
   0.07501686739294547,
   0.28426542380679176,
   0.01812942615426132,
   0.23072839028460915,
   0.00021011495383617778,
   0.00010563164256977814,
   0.01119283960558669,
   0.00011787626550599664,
   0.008537256081399257,
   0.00019841411149798869,
   0.029238548623648598,
   0.028001595948422678,
   0.00026959731037305007,
   0.0002011183995566371],
  [0.3626151653949175,
   0.049470354702814745,
   0.03180377513388382,
   0.014004091311073186,
   0.17583910104587214,
   8.143236718613483e-05,
   4.09387078224018e-05,
   4.385775970355765e-05,
   4.56842464563409e-05,
   0.04678597053092988,
   0.004370948223707343,
   0.2067110263551423,
   0.0774101122969809,
   0.00869258670431941,
   0.022084955219190378],
  [0.1651239725491147,
   0.005197314034071179,
   0.0004134245530938142,
   0.0034319774262356498,
   0.42130992962325686,
   0.0002490990630989685,
   0.000125230226203949,
   0.00013415951456752015,
   0.005065509141431598,
   0.00026970849079944456,
   0.042925168609976326,
   0.31871568468048056,
   0.021703483789138917,
   0.01509690498387659,
   0.00023843331465395355],
  [0.3005387742472679,
   0.05878265945250868,
   0.015378744654354461,
   5.0913572979697446e-05,
   0.2655668215813832,
   0.27773128339980235,
   4.304103993352665e-05,
   4.610999435998061e-05,
   4.803027698359541e-05,
   9.269754016098739e-05,
   0.0006451669763646109,
   0.007963398411716189,
   0.0661487137856203,
   0.00631737619149341,
   0.0006462688750712144],
  [0.2623439375121921,
   0.00012519391921837503,
   0.05847788970202657,
   6.829531260494416e-05,
   0.23208617692408137,
   0.00011484259742974888,
   0.3755187060316839,
   6.185180679193028e-05,
   6.442766808773663e-05,
   0.005423188547175803,
   0.055367824031448444,
   8.438981752479212e-05,
   0.010005996893809604,
   0.0001473538880409963,
   0.00010992534788364694],
  [0.23936977342776014,
   0.17804252370225065,
   0.0024447044543264907,
   0.00017619822898840508,
   0.2609074357641516,
   0.0022492495869640794,
   0.07436150454645522,
   0.13296098146259763,
   0.00016621991439702642,
   0.00032080133944755005,
   0.008091635580599735,
   0.00021772118503264005,
   0.0004264288834587509,
   0.09216937296690449,
   0.008095448956665594],
  [0.306201913410003,
   0.03979117551713916,
   0.00045201777793308647,
   0.00016196427646106762,
   0.15366103005954915,
   0.01642910117687918,
   0.005522503377602696,
   0.03964095789579216,
   0.0216951236347384,
   0.0002948858063424858,
   0.3898143486416601,
   0.025332853037816638,
   0.0003919803619367961,
   0.00034945393688054325,
   0.00026069108926543116],
  [0.2887641898624456,
   0.24454750737078437,
   0.014226851483953976,
   0.044858491189597796,
   0.17405627005149876,
   0.005738308368599748,
   7.114507540149421e-05,
   7.621793131787137e-05,
   0.02339935725671124,
   0.007615614092208131,
   0.07942151757056834,
   0.00010399077488018474,
   0.059902787265959184,
   0.045888711058641854,
   0.011329040647431409],
  [0.28667966440396087,
   0.0005289895134215071,
   0.03188852902847756,
   4.095291752595888e-05,
   0.28351504323488425,
   0.04636846524366324,
   3.462055509897342e-05,
   0.012746783357857687,
   0.0004925513571850779,
   0.33461187180299684,
   0.0005189474717099137,
   0.0005045215529182096,
   0.0010069481439532164,
   0.0009961952716775748,
   6.591614466913547e-05],
  [0.27261592082476377,
   0.00010746064047480254,
   0.019006484976675626,
   5.862152155451479e-05,
   0.15762769597131074,
   0.0007483300706295696,
   0.08061911806821007,
   5.3090715698347e-05,
   0.0007050562388779283,
   0.0007564858042745429,
   9.308609037652528e-05,
   7.243629640627832e-05,
   0.03652812710761806,
   0.0001264817275806931,
   0.43088160394554853],
  [0.22409758397895635,
   0.06136891033101492,
   0.017968966061149994,
   8.005111374272903e-05,
   0.2667119422081379,
   0.0036837217747299313,
   6.76731759662207e-05,
   7.249847510523973e-05,
   0.004511906604418836,
   0.01522946999405917,
   0.00012711449670693993,
   0.005422582652367664,
   0.012615625811993684,
   0.3879131063160361,
   0.0001288470056143478],
  [0.2899226544262607,
   0.0002332532382080381,
   0.022920751730252594,
   0.00012724342299522297,
   0.17995496364514632,
   0.5008889849749428,
   0.00010756835417148837,
   0.00011523829841983375,
   0.00012003747710337321,
   0.004462726582678394,
   0.00020205195052361343,
   0.00015722966684274953,
   0.00030795014857324776,
   0.0002745402633186549,
   0.00020480582056290833],
  [0.359557603446984,
   9.057100110287404e-05,
   0.21316685469743146,
   4.940794945858403e-05,
   0.14544881980102464,
   0.014321522174612286,
   4.1768224094753344e-05,
   4.4746422958411955e-05,
   4.6609918707405866e-05,
   0.010494969969751392,
   0.0028166172043823786,
   0.0011563160490867057,
   0.24491121339036698,
   0.002844764033590595,
   0.0050082157164475765],
  [0.23154552365378628,
   0.3203468514699991,
   0.010097395640357514,
   0.0002801523211592458,
   0.35273503074279244,
   0.040838401979159035,
   0.00023683364841225362,
   0.006464075873818609,
   0.0002642869630902049,
   0.0005100689172258392,
   0.00044485853650815796,
   0.031397949548676266,
   0.0006780149959292501,
   0.00370963396659403,
   0.00045092174249176573],
  [0.05198553206713539,
   0.0008986309213461888,
   0.012235162879388372,
   0.429738273436282,
   0.37814996180936833,
   0.0008243300455996716,
   0.005847937301176976,
   0.0004439668194060407,
   0.0004624561248288772,
   0.03349364986350723,
   0.0659806612166978,
   0.0006057426746283229,
   0.0011864080767627126,
   0.01735825230225679,
   0.0007890344616153166],
  [0.18829001551795393,
   0.0457516906332967,
   0.005911891633847941,
   0.06924956257570548,
   0.24833662678172888,
   0.0002758185212909129,
   0.000138662969594456,
   0.00014855005259661823,
   0.00015473652233485635,
   0.00029863860661069917,
   0.00026045879094971266,
   0.00020267980002748205,
   0.04402993961248677,
   0.39668671926369364,
   0.00026400871788191297],
  [0.23852508294664643,
   0.00010152374438019291,
   0.010590141389087369,
   5.5382848484641555e-05,
   0.16979036460170358,
   0.030786000829135806,
   0.025828831145421866,
   0.007416446716454715,
   5.224645211834902e-05,
   0.00439783666192835,
   8.794334747105697e-05,
   0.0006822918221832117,
   0.0056587524962139835,
   0.00011949397028466836,
   0.5059076610284858],
  [0.2512124481713149,
   0.0009353548677953165,
   0.5124103148436282,
   3.8971646670910536e-05,
   0.19118254386690264,
   0.019935576411784676,
   0.0013288180274900088,
   3.529476135786847e-05,
   3.6764636118880575e-05,
   0.022532743128521618,
   6.188372679403776e-05,
   4.8155722929668855e-05,
   9.431783663114419e-05,
   8.408518009921059e-05,
   6.27271719609682e-05],
  [0.3780920027159273,
   0.059009977147263894,
   0.0027347992212488972,
   7.587702582190285e-05,
   0.2570099022691045,
   0.05058835025987238,
   6.414450817938176e-05,
   0.20948086624489337,
   0.0009125926626364425,
   0.0001381481054418804,
   0.00012048639298096859,
   9.375824078109225e-05,
   0.00018363496379713367,
   0.00016371218377050136,
   0.041331748058280396],
  [0.20588227302813142,
   0.00019617809192275785,
   0.007415748615439869,
   0.003665556658410768,
   0.26047998267168593,
   0.009669393178555762,
   9.047057453415798e-05,
   0.004841639167849043,
   0.10092621040364524,
   0.00019484658663498412,
   0.014404089503066576,
   0.032159083277687926,
   0.007376078731960719,
   0.3525261971747672,
   0.00017225233570764418],
  [0.27506790583100105,
   0.01101727557323714,
   0.00016160867926960968,
   0.41724799517773103,
   0.18651334322250787,
   0.024486947845778623,
   4.8952804834651895e-05,
   5.244328571793598e-05,
   5.462732264284228e-05,
   0.0315551440817792,
   9.195092531279855e-05,
   7.155295118581026e-05,
   0.00014014366621130267,
   0.05339690446098477,
   9.320417180533744e-05],
  [0.3510155767416733,
   0.0005254121059798894,
   0.013188110556750666,
   4.067596445185023e-05,
   0.14814672208063934,
   0.007732813918691239,
   0.029790350095893533,
   0.29489138737312826,
   3.837243636340952e-05,
   0.003680841562748915,
   6.459004138260293e-05,
   5.0261681026232964e-05,
   0.008213705386866246,
   0.0005386103485781348,
   0.14208256970582644],
  [0.4647180436440043,
   0.01684461837466283,
   0.0002470879946892352,
   8.85350759101831e-05,
   0.1625012911380487,
   0.00014887695353237674,
   7.484530184686813e-05,
   0.01872513057899645,
   8.352122960267264e-05,
   0.001142507501176663,
   0.3328057215844838,
   0.00010939929280099791,
   0.00021426954052869378,
   0.002153649344846634,
   0.00014250244486950942],
  [0.2528633073120727,
   0.0002620844894717668,
   0.07170955057823376,
   0.00014297133797816605,
   0.3210491838591865,
   0.020841237180154123,
   0.00012086433355839777,
   0.0017141609700200896,
   0.00013487470161532072,
   0.014522413505790201,
   0.0018117052179181864,
   0.30760432198516613,
   0.0066847289035839134,
   0.0003084747946227421,
   0.0002301208306278784],
  [0.21668896303722285,
   8.858207449101982e-05,
   0.2684736536469219,
   4.8322957746902405e-05,
   0.3784571932691401,
   8.125790440763756e-05,
   0.051459062561240936,
   0.011291497576810519,
   4.558637136261915e-05,
   8.798084782278819e-05,
   0.009182041126748796,
   5.97107682939885e-05,
   0.05260637385994311,
   0.00010426155813702748,
   0.011325512439709775],
  [0.41871099522216265,
   0.00011397770294555334,
   0.013956716983944534,
   0.15856887627623648,
   0.3091540618446524,
   0.03525169149926458,
   5.2562588250821856e-05,
   0.019352778233800456,
   5.865554541806336e-05,
   0.02561210795769622,
   9.87313932842817e-05,
   7.682927105023857e-05,
   0.00015047787042860052,
   0.018741460556600146,
   0.00010007705426502857],
  [0.4051714677128638,
   0.0153329509984841,
   0.03822979584473757,
   5.724529221441488e-05,
   0.1837486719403589,
   9.62613362143459e-05,
   0.011469403584304164,
   5.1844330434139523e-05,
   0.0025920056167710345,
   0.00010422560161293782,
   0.27673313982468706,
   0.00895374342084152,
   0.010290551857293353,
   0.00012351237673705796,
   0.04704518026244563],
  [0.22648328098488082,
   0.007420822633382382,
   0.007971033979603607,
   0.0005744997387831428,
   0.328545951586888,
   0.0009660552050799459,
   0.00048566747041356076,
   0.0005202970085337441,
   0.0005419651375039193,
   0.007413674797654743,
   0.020015334227259284,
   0.24268218925196203,
   0.0013903844752762014,
   0.15406415216985953,
   0.0009246913329192292],
  [0.1730024065084829,
   0.0003423848418900131,
   0.02329357563582317,
   0.00018677648206927292,
   0.39871369258608086,
   0.00031407567403203275,
   0.00015789608846727166,
   0.00016915455016730928,
   0.3251991797849701,
   0.012761321406186684,
   0.0002965854865084233,
   0.00023079231412153275,
   0.00045203000712563745,
   0.05836887062729463,
   0.006511258006780141],
  [0.3313731561856233,
   0.01919317843139351,
   0.0003411634732256185,
   0.0014771786638345065,
   0.1823685176197639,
   0.00020555988005097306,
   0.00010334165836269089,
   0.00011071022660265641,
   0.4485988162266252,
   0.00022256705556309404,
   0.00019411269981167985,
   0.004215856717542652,
   0.00029584982769060187,
   0.011103232972193289,
   0.00019675836171631736],
  [0.3077912906590436,
   0.013446033986513797,
   0.0015635178045287394,
   0.0005602302438245719,
   0.34522360957684156,
   0.0009420602074359296,
   0.0004736044022296009,
   0.0005073738076355897,
   0.0005285037409614005,
   0.007229533033946211,
   0.0008895989344087664,
   0.2614925418996318,
   0.026193972557827617,
   0.001208752130665696,
   0.031949377014505266],
  [0.43126948395782216,
   4.3476514751492064e-05,
   0.05448198296273607,
   2.371714364774686e-05,
   0.26014317555114075,
   0.05103825689214692,
   2.004987014482217e-05,
   2.1479485642631014e-05,
   2.237401368619821e-05,
   0.013449970764343122,
   3.7660847390563266e-05,
   0.18877586990973405,
   5.739941395895097e-05,
   0.0003140503041424397,
   0.00030105236871205037],
  [0.12146965533796221,
   0.017158314644054047,
   0.0008364035322058646,
   0.0002996950552313404,
   0.2710437661410361,
   0.0005039549167701964,
   0.00025335457885142617,
   0.0002714195154196248,
   0.5450558178613756,
   0.0005456500652475245,
   0.0004758907694116947,
   0.00037032133040158864,
   0.0007253116476489618,
   0.040508067674712434,
   0.0004823769296712894],
  [0.24773617872299086,
   0.0003138009508288032,
   0.0004777472522397154,
   0.007760700427089739,
   0.2326106589868413,
   0.0021852343952147462,
   0.00014471418308026424,
   0.0020524119658896253,
   0.009648385332451909,
   0.009798567263723332,
   0.4252847727164062,
   0.00021152469021564263,
   0.0004142924238589466,
   0.004164103796634876,
   0.05719690689253402],
  [0.2917760065121312,
   0.01831487750143784,
   0.004402917385105207,
   5.4777587168689905e-05,
   0.22075672388953177,
   0.0006992605205025783,
   4.630757927223024e-05,
   4.9609447689103175e-05,
   0.029801965487165936,
   0.0019211790176524317,
   8.698224294725685e-05,
   0.016460703448296584,
   0.0001325708292814111,
   0.40022923138530264,
   0.015266887166515159],
  [0.43647883900224427,
   0.0006183209816127777,
   0.418970267000346,
   2.576240061851785e-05,
   0.07641133566498508,
   0.001471059128948468,
   0.0003073265048556236,
   2.3331777317869906e-05,
   2.430344533005342e-05,
   4.690519690949209e-05,
   0.007465146833368565,
   3.183357985010412e-05,
   0.05317420779892288,
   0.0017688706848420829,
   0.0031824899998482937],
  [0.3173175959071419,
   0.003294161759760434,
   0.06265887339749811,
   0.03449537356958242,
   0.24909764807600548,
   0.006474129529403425,
   0.2360115924751006,
   5.2108835109739184e-05,
   5.4278943607624564e-05,
   0.02370105253645915,
   0.03197824990617885,
   0.001984309754230466,
   0.0192713811491605,
   0.01287889667937294,
   0.0007303474813883431],
  [0.25951735925318214,
   0.00010453985499660652,
   0.0020554395249043887,
   5.702818572374307e-05,
   0.1223707534397542,
   0.0007279904226102118,
   0.41406988744660667,
   0.07779922985100093,
   5.379861195904577e-05,
   0.0020001128105522846,
   9.055600587495796e-05,
   7.046747431753067e-05,
   0.022893407546043062,
   0.0026514206030972135,
   0.09553800896937702],
  [0.3692992710484257,
   0.00019052807963856164,
   0.00950620585224193,
   0.35953323132212633,
   0.2126574546421503,
   0.015150995410792205,
   8.786498360162133e-05,
   9.41300188045569e-05,
   9.805012857641594e-05,
   0.0117094046391206,
   0.011685211670465906,
   0.0001284297989425622,
   0.009467678478238598,
   0.00022425253152076412,
   0.00016729139535395337],
  [0.24408927804545516,
   0.00044573438991582157,
   0.0006786097347652891,
   0.0002431553360429276,
   0.23068975589696394,
   0.0004088800432264464,
   0.013681092886883168,
   0.00022021418881777342,
   0.0002293851611011102,
   0.03008888729691702,
   0.3561402488987701,
   0.000300457434868768,
   0.10839276055840041,
   0.0005246316737884954,
   0.013866908454083495],
  [0.27949889440344855,
   0.2802396548291534,
   0.001551086614841018,
   0.002589975542338906,
   0.22749199033129583,
   0.0001879850596084794,
   9.45062227246498e-05,
   0.00010124479807055672,
   0.018691836811417454,
   0.00020353816706128168,
   0.0014166082896014942,
   0.00013813711316875283,
   0.00027055545799980574,
   0.012632119637209182,
   0.17489186672206064],
  [0.08206369569816174,
   0.0004043257447234943,
   0.17663628114676563,
   0.00022056624876446064,
   0.5613001470573215,
   0.0003708951602574996,
   0.0026311932387688146,
   0.1444389526351906,
   0.0002080753206146839,
   0.02240417076090913,
   0.0027949729605540896,
   0.0002725449928464524,
   0.005423271117895692,
   0.0004758934850194679,
   0.0003550144322067148],
  [0.2959916433350191,
   0.02158108780015448,
   0.016805040211152464,
   0.00014789295701671986,
   0.29275941785268067,
   0.008444837410464338,
   0.00012502494514345525,
   0.00013393959635559505,
   0.00013951760353312048,
   0.17894526395401325,
   0.1592400872399268,
   0.00018274547959151426,
   0.024946365472970487,
   0.0003190936742079714,
   0.00023804246776999526],
  [0.1991166444431961,
   0.00017371753368360492,
   0.05383349886987156,
   0.01479998747295533,
   0.32098953525856333,
   0.00015935416761349335,
   0.0011304855207686089,
   0.0011361977835802613,
   0.011643501832554365,
   0.3530978602809269,
   0.0001504800824656432,
   0.002217844230052776,
   0.036992403112210664,
   0.0033555853770183596,
   0.0012029040345390117],
  [0.2794794985993109,
   5.9597827982245516e-05,
   0.06387353568992175,
   0.0003928663880881504,
   0.22759856996008648,
   0.004018573016021579,
   2.74844641707731e-05,
   2.9444188380640674e-05,
   3.067041198137175e-05,
   0.379873159597118,
   5.162568152663067e-05,
   4.0173275664633586e-05,
   0.010168617997069558,
   7.014695064114113e-05,
   0.03428603595203613],
  [0.2768581978656436,
   0.000101399255008829,
   0.41829178666581085,
   0.0031208384789264756,
   0.1603855954335505,
   0.011128900079982906,
   4.67618415903257e-05,
   5.009610026435886e-05,
   5.2182387026779395e-05,
   0.005618653409765844,
   8.783551051026373e-05,
   6.835048124357305e-05,
   0.07799816925794414,
   0.00011934744565308256,
   0.04607188578707849],
  [0.3227506979574773,
   5.7484901986349584e-05,
   0.03310753469455607,
   3.1358945991412815e-05,
   0.09544375513899093,
   5.273191779859199e-05,
   0.03339410580119403,
   0.0021138750355990496,
   0.0003771621740544671,
   5.709473889417253e-05,
   4.9795392600900723e-05,
   3.874900969109199e-05,
   0.03830959729929616,
   6.76600258561196e-05,
   0.4741483969660133],
  [0.2965431456629683,
   5.807023805531048e-05,
   0.017293207040470125,
   3.167825630662792e-05,
   0.09922455120810883,
   0.005671162023455848,
   0.5161707146666986,
   0.029522628609864165,
   2.9884279097273217e-05,
   0.0021643860396005628,
   5.030243076831896e-05,
   3.914356882270706e-05,
   0.019037056061558665,
   6.834896942550793e-05,
   0.014095720944799186],
  [0.07154233070583184,
   0.00029166498726749623,
   0.02160647122555284,
   0.00015910797909126487,
   0.4613333958513127,
   0.012612297336256413,
   0.0001345058396223865,
   0.00014409650686766107,
   0.003677168329145641,
   0.3018542408028388,
   0.09195649162170161,
   0.00019660343894931147,
   0.03212870506124849,
   0.00034329119295584186,
   0.0020196291213576715],
  [0.35573639229146703,
   0.29996443618652524,
   0.0024375479660257568,
   6.762978741664275e-05,
   0.22982454006046488,
   0.00011372347756098758,
   5.7172502547727046e-05,
   0.0015604513836703375,
   0.0120574183227355,
   0.015864756757007686,
   0.003105795088354232,
   0.029318012524605093,
   0.049637351554257726,
   0.00014591795165905594,
   0.00010885414570213638],
  [0.2773820645065777,
   0.00019641107069718236,
   0.0002990266571442983,
   0.0036699098300085244,
   0.26435209001534177,
   0.00018017135068259616,
   9.057801631509217e-05,
   0.021473622938939115,
   0.00010107765098049375,
   0.00019507798412952645,
   0.0001701380021288358,
   0.00013239536328495653,
   0.012135191017794809,
   0.41944978869543714,
   0.0001724569005378533],
  [0.21904601091251366,
   7.165661045493181e-05,
   0.0001090938337160484,
   0.003938497656026554,
   0.1848300956362684,
   6.573187674795825e-05,
   3.304555903000903e-05,
   3.5401805877585653e-05,
   0.5091262295430314,
   0.0018042404000063069,
   6.207141226230911e-05,
   4.830177310919475e-05,
   0.016992037748306713,
   0.05944199246903486,
   0.004395592763614073],
  [0.10221982732555128,
   0.000315597374539522,
   0.19512108481896642,
   0.00017216348434527477,
   0.39423455167850346,
   0.0041059854600603045,
   0.00014554263178023172,
   0.00015592025520033348,
   0.00016241366212624384,
   0.000313455343444774,
   0.19873046626364588,
   0.00021273561060292066,
   0.006141387739234976,
   0.004187942139936296,
   0.09378092621206205],
  [0.30785794628822366,
   0.004063622177182544,
   0.37291301929386683,
   0.01667269071601878,
   0.17715920857669717,
   0.004050281720357428,
   0.043975014511079734,
   0.005933126964472999,
   8.30323452422969e-05,
   0.012842648547367264,
   0.03428468020804724,
   0.0049866041900589655,
   0.012895412999408102,
   0.002141043142957153,
   0.00014166831901978917],
  [0.4277894245409136,
   0.03360849862388277,
   0.0007687376730674865,
   2.1328632762654475e-05,
   0.13418203943396734,
   3.586535433635538e-05,
   0.004036902580699473,
   1.9316325271146578e-05,
   0.006166630726999868,
   0.009967810333315499,
   0.010435654177323813,
   0.3172808305756859,
   0.001470044197586887,
   0.017067123138156923,
   0.037149793686030406],
  [0.2714578312342681,
   0.0864899491473009,
   0.0008790418817905708,
   6.335556124341586e-05,
   0.19914834857897526,
   0.0029154405178254596,
   5.355918042868929e-05,
   0.00356850861430239,
   0.005677576468192715,
   0.007137611481527883,
   0.0015050555527133266,
   0.04010517371544732,
   0.00015333094661076414,
   0.3526541985562247,
   0.028191018563148526],
  [0.3505223802992877,
   0.0009627857121723897,
   0.15251542787906003,
   1.6816460309255352e-05,
   0.08529210022237817,
   0.04122086655737891,
   0.030768863870338524,
   1.5229865920504286e-05,
   1.5864124225955527e-05,
   0.012891651941344255,
   2.6703137391356824e-05,
   0.0005799548471585488,
   0.22240612080733047,
   3.6283175449971966e-05,
   0.10272895110025414],
  [0.3821475128487371,
   4.966498421950925e-05,
   0.01839369567159346,
   2.7093054071376716e-05,
   0.09597347173584513,
   0.0583030686251764,
   0.23875857643244966,
   0.00633076220204995,
   2.5558742300381446e-05,
   4.932789668614945e-05,
   4.3021511775653086e-05,
   3.3477815710404806e-05,
   0.03189699269652384,
   5.8455942348718205e-05,
   0.1679093198405123],
  [0.22985516005051354,
   0.06894795388792081,
   0.00044326457158298707,
   0.0001588278804996279,
   0.30560333730854033,
   0.012590094259192844,
   0.00013426905139554612,
   0.0019042736645932129,
   0.00014983326933579224,
   0.000289175419630631,
   0.0196169445628573,
   0.2431357118250931,
   0.021509559720389534,
   0.07428078169822111,
   0.021380812830233527],
  [0.3912305890307623,
   0.3574600429001953,
   0.0009110293097933155,
   6.566100481308878e-05,
   0.1634561680001683,
   0.0030215303931682195,
   5.550814379816943e-05,
   0.0036983629645236317,
   6.194254426911732e-05,
   0.00011954795694851766,
   0.040132130374083,
   0.013908943021160766,
   0.0001589105017114994,
   0.02415838981117626,
   0.0015612440434285392],
  [0.2505728856676048,
   0.0001701432560995379,
   0.4035334724528669,
   0.005236622502986295,
   0.2320841973265158,
   0.002213598058891753,
   7.846420556734909e-05,
   8.40589372784325e-05,
   8.755962989086525e-05,
   0.02383049880772554,
   0.00014738392070119452,
   0.00011468894356018025,
   0.07738172883040918,
   0.002257782128526535,
   0.0022069153313755033],
  [0.30309836632618375,
   0.016438560197119555,
   0.20084571674726268,
   0.0007416253819644788,
   0.20992298474496274,
   0.00010320242790648286,
   0.010935920315963342,
   5.5582656385272325e-05,
   5.7897434574090036e-05,
   0.0007919932885861899,
   0.0007777076283818127,
   7.583626854548623e-05,
   0.2457196197806166,
   0.0001324184522785059,
   0.010302568349269032],
  [0.14972120083599094,
   0.27540885150042954,
   0.0005055654863884617,
   0.00018115116750721337,
   0.42284674982935133,
   0.05250896851297524,
   0.00015314059058067073,
   0.00016405997110814334,
   0.022257349035592542,
   0.00032981907657327124,
   0.000287652955829681,
   0.016286718916026798,
   0.012485574000146393,
   0.04657162459546654,
   0.0002915735260331416],
  [0.3117693279603233,
   0.005909177177519715,
   0.0001623380342421396,
   0.00457126081791121,
   0.23119656851244416,
   9.781289459571357e-05,
   4.917373338741777e-05,
   5.267996713496787e-05,
   0.3888255852423543,
   0.00010590552952683626,
   0.000737093456271431,
   7.187587629714971e-05,
   0.011101144461826097,
   0.025914605088388026,
   0.01943545124777752],
  [0.3038210940175479,
   0.00010981528883726966,
   0.00016718863457025797,
   5.990602041031712e-05,
   0.23013673511881913,
   0.00010073550765330732,
   0.0013786265627265498,
   5.425402503866897e-05,
   5.6513471455633626e-05,
   0.02866071598013969,
   0.02067887058171742,
   0.38585324082534345,
   0.021392719069145093,
   0.0001292531608367579,
   0.007400331735758498],
  [0.12740313644352216,
   0.011291032299058675,
   0.0975231180220433,
   0.00016522703745340303,
   0.5743062342712346,
   0.0002778390115370454,
   0.00013967873596233482,
   0.00014963824613390927,
   0.0001558700344450467,
   0.16512308085798627,
   0.009419158686407138,
   0.0002041645174319804,
   0.0003998767836825897,
   0.0058505688193874455,
   0.007591376233714131],
  [0.24896159797698425,
   5.378348660618484e-05,
   0.02414658879710268,
   2.933976389337368e-05,
   0.21059731991403138,
   0.4159785111327401,
   0.047503817546900265,
   2.6571624587928547e-05,
   2.767821828167448e-05,
   5.3418445861272106e-05,
   4.658909971937014e-05,
   3.62539862069984e-05,
   0.013404154981107936,
   6.330344088036971e-05,
   0.03907107158509619],
  [0.4319279088446026,
   0.0001115183763672208,
   0.30225142736137245,
   0.009500886515262296,
   0.21078000736521235,
   0.00010229777998099635,
   5.1428431595875524e-05,
   5.509543204557433e-05,
   5.7389919439602086e-05,
   0.022362311282148262,
   0.022348150846641896,
   7.517150586104164e-05,
   0.00014723097023117577,
   0.0001312577036354756,
   9.791766560325862e-05],
  [0.17516454521259084,
   0.3755306114442349,
   0.00048698724712055024,
   0.000174494325170819,
   0.3260770212542707,
   0.0002934225025850066,
   0.01755419694215402,
   0.004026183159174319,
   0.0001646125046726156,
   0.0003176990686125385,
   0.029288222239702053,
   0.0002156157384542247,
   0.002356381140454137,
   0.0003764887555862603,
   0.067973518465217],
  [0.31962564075779837,
   0.023305614619710813,
   0.0022187149748879084,
   0.00046058357873587187,
   0.2309192605080256,
   6.409346920339812e-05,
   3.222187810216065e-05,
   0.0038367320640439696,
   0.36716071367025016,
   0.006406417414804418,
   6.0524244051335603e-05,
   0.03511194800052386,
   0.0013596500536732171,
   0.009376535606060688,
   6.134916012817627e-05],
  [0.22394199986996488,
   0.00010656054393386519,
   0.00853829128529183,
   0.023253367620220875,
   0.18981162866116522,
   0.41116889653806665,
   0.01229107275022387,
   0.011650264582753499,
   5.483850492646039e-05,
   0.00010583729330824563,
   0.0013809306801166308,
   7.182956579732673e-05,
   0.03493354111768899,
   0.00012542230931383608,
   0.08256551867722778],
  [0.3765966797253389,
   6.138971641300034e-05,
   0.40023558881423227,
   0.0004046784416391172,
   0.11863054636228482,
   0.08097559349692066,
   2.8310821355933864e-05,
   0.011537199505535943,
   3.159255894975249e-05,
   0.001174541118674783,
   0.0007955565888532405,
   0.0004125704950152375,
   0.0008234278432755113,
   0.0011858240807744648,
   0.00710650043073642],
  [0.40302375899551485,
   0.021809073833720778,
   0.02910699314830922,
   0.07589077201308002,
   0.23879562524564796,
   0.0064543645734630225,
   6.883359177451131e-05,
   0.010001156281796817,
   7.68126533144066e-05,
   0.00014824699049551885,
   0.0019342786555773643,
   0.015442980238762795,
   0.04532167106776966,
   0.151794376320125,
   0.00013105639064809338],
  [0.16858444482315446,
   0.0003548741298296146,
   0.0005402792437985711,
   0.00019358959111940525,
   0.2716398028274948,
   0.006762709786106773,
   0.0001636557176100771,
   0.00017532485803395235,
   0.0001826263830730127,
   0.023955449565045462,
   0.00030740413583665616,
   0.00023921100359796911,
   0.0004685188589251741,
   0.5261205151713347,
   0.00031159390503928986],
  [0.3048104977467722,
   0.05099303139767971,
   0.018180635287670614,
   3.0234495880332953e-05,
   0.3098466870358339,
   0.0017264202910480728,
   0.02348366830831621,
   2.7381940667863414e-05,
   0.01175757669769622,
   0.0037413217156864464,
   4.8009859542593196e-05,
   0.13307834824579892,
   0.11602325329494394,
   0.02620426947183174,
   4.8664210631224e-05],
  [0.2679569519575091,
   0.06634622007731812,
   0.000339782324302865,
   0.17824911984787417,
   0.38134879374863134,
   0.0002047277018455824,
   0.00010292329522793408,
   0.00011026203292950509,
   0.00011485397159308338,
   0.012366714055941024,
   0.0028922264259178113,
   0.04333283310760953,
   0.00029465212423498765,
   0.04614397751393297,
   0.0001959618151318959],
  [0.4594309326391057,
   0.2904977688475817,
   0.00036542468164843994,
   0.00013093676190091574,
   0.20839891546490535,
   0.0002201778901390247,
   0.00011069060896573271,
   0.00011858317928645255,
   0.00012352165784836728,
   0.004592260678235491,
   0.0002079166648819185,
   0.00016179337970122267,
   0.023537508260428712,
   0.011892818817238839,
   0.00021075046813204607],
  [0.22268392314322816,
   0.0001708462963446958,
   0.43929029545851084,
   9.319942445371889e-05,
   0.28159475451640836,
   0.020816964564824198,
   7.878842349747917e-05,
   8.440627291327757e-05,
   8.792143055858255e-05,
   0.010499808840724094,
   0.0001479929182607656,
   0.00011516284387715946,
   0.023984838905311855,
   0.00020108697116417298,
   0.00015000998992263266],
  [0.3124131596948275,
   0.0001077406604006801,
   0.011238640122688909,
   5.877427696382555e-05,
   0.12090592481326187,
   0.0580776730693039,
   0.4488971156197925,
   5.3229058985795796e-05,
   5.544581998220364e-05,
   0.0014099046956750118,
   0.0007447763010442892,
   7.262505022591786e-05,
   0.007959615253942032,
   0.0001268113124763863,
   0.037878564250429146],
  [0.33587123675577496,
   0.08686547634885214,
   0.0004113981037577809,
   0.00014740968047156745,
   0.4306819384406654,
   0.0002478780745842663,
   0.00012461639544125431,
   0.0001335019158419887,
   0.00013906169551164651,
   0.0231426050006917,
   0.0035018197891899553,
   0.11455324090364233,
   0.0003567558301544466,
   0.003585796459854035,
   0.00023726460556652043],
  [0.3147834680456294,
   0.31445597565944033,
   0.0034622517613463553,
   7.346733449354298e-05,
   0.24721921214876372,
   0.00012353965737419963,
   6.210741640558762e-05,
   6.653586029978535e-05,
   0.023684119544543646,
   0.0017623685944265332,
   0.00011666000398895581,
   0.0025336923445119113,
   0.03193565474426353,
   0.05960269686127884,
   0.00011825002323369288],
  [0.24518946891823415,
   0.20625670617114733,
   0.10530993690180292,
   0.020978191444045193,
   0.23735510956517342,
   7.938701598209253e-05,
   3.991044303986036e-05,
   0.012601344823319753,
   4.453678713857774e-05,
   0.05659960408015633,
   0.013156829300341018,
   5.833598283654906e-05,
   0.039359846422724776,
   0.029405234540831975,
   0.03356555760322607],
  [0.29855382720649704,
   0.0004386412785451194,
   0.029842220065534244,
   0.0002392859287951298,
   0.17397433686806935,
   0.00040237340665211696,
   0.06385554280819371,
   0.00021670985125255145,
   0.00022573488297295433,
   0.04021894947595742,
   0.28416740164696574,
   0.00029567616132134857,
   0.0032313305847449345,
   0.0005162830451545628,
   0.1038216867893437],
  [0.06649532328864573,
   0.00027794056258206076,
   0.08613127670177695,
   0.0001516210829219719,
   0.4547501125991547,
   0.020421577493042836,
   0.00012817660798254053,
   0.00013731598214829945,
   0.00014303460124864866,
   0.31958083431574913,
   0.0355323426120686,
   0.00018735217736993388,
   0.015491911393855218,
   0.0003271374743794853,
   0.00024404310707388794],
  [0.2512699854770482,
   0.00016071880270800422,
   0.008018902125956892,
   8.767471248575203e-05,
   0.2493538398703233,
   0.02055474529945773,
   0.009791887066668226,
   7.940280482461969e-05,
   8.270958957893167e-05,
   0.0001596279676736079,
   0.41605973736712715,
   0.00010833617573449095,
   0.00021218731860991936,
   0.002132720677803577,
   0.04192752474399961],
  [0.23776635517799632,
   0.17914881334105462,
   0.010200963336295946,
   7.511891434185853e-05,
   0.3485269441027454,
   0.00012631688632899407,
   0.020046139255302558,
   6.803161738446796e-05,
   7.086484116888005e-05,
   0.00846286600518561,
   0.04341499311826574,
   9.282147239942505e-05,
   0.011838337662430953,
   0.00016207648331182953,
   0.13999935778578743],
  [0.223644595258255,
   0.4089987163512885,
   0.0002924282549487773,
   0.0012661636218805328,
   0.2840692410510376,
   0.001337578139593479,
   8.857929758069174e-05,
   0.005901807756121576,
   9.884724449928846e-05,
   0.00019077334115531522,
   0.00016638369146800824,
   0.00012947389178766895,
   0.008383265152691608,
   0.06294073053099854,
   0.0024914164166934317],
  [0.3311928232522576,
   0.0001446897056051201,
   0.018592299293682432,
   7.893058014888529e-05,
   0.11687731135695859,
   0.5014263056583692,
   6.672590535964357e-05,
   7.148366128117543e-05,
   7.446064782250853e-05,
   0.00014370766369508107,
   0.0027499088960034387,
   9.753139713146576e-05,
   0.02556190429888029,
   0.00017030052907946914,
   0.0027516171537250523],
  [0.2523726843463308,
   4.7239217707593604e-05,
   0.032062388464509914,
   0.012879083183665534,
   0.16269317551079923,
   0.38907028635346186,
   0.0003074142862754143,
   0.005735922185800446,
   2.4310387103389504e-05,
   4.691859440276138e-05,
   0.0003265494168835201,
   3.184267244964277e-05,
   0.04833369972206806,
   5.560080266428253e-05,
   0.09601288485587751],
  [0.2530005932001978,
   0.018114007439701763,
   0.0242762367994564,
   3.073925523671311e-05,
   0.2093992538240603,
   0.0852293243476694,
   0.3005326806175832,
   0.03852812986048759,
   2.8998454771137536e-05,
   5.596647770055969e-05,
   4.8811375331000455e-05,
   0.0007194043581383349,
   0.003822210003465623,
   6.632298179547862e-05,
   0.06614732100440472],
  [0.29466389784791713,
   0.34813330681370813,
   0.021845301695870283,
   0.005294992215527734,
   0.21328352789691285,
   0.03894700995286853,
   5.6959019812347693e-05,
   6.102036768520473e-05,
   0.0015571658769697354,
   0.0001226727103885046,
   0.00010698946861872168,
   0.012032089603361168,
   0.024060732497821504,
   0.03972588634937918,
   0.00010844768315902004],
  [0.20610878880007982,
   0.00021229453431996463,
   0.006741341367582927,
   0.3903382892689897,
   0.35247842217409164,
   0.01303100729472582,
   9.7902922299555e-05,
   0.003955763420988972,
   0.012945517408202118,
   0.00021085364307547343,
   0.00018389680278133375,
   0.00014310197431811872,
   0.013116545400735011,
   0.00024987176084274317,
   0.00018640322696674368],
  [0.11769057539752367,
   0.01335718169749696,
   0.0463203840200318,
   0.02114233486151213,
   0.4685620582100047,
   0.03830495898243604,
   0.00010021849860783699,
   0.015875203605106053,
   0.24714131689208818,
   0.009413746919425982,
   0.0001882462856127691,
   0.002774459792514191,
   0.013426774769410203,
   0.0028837548722814455,
   0.0028187851959480736],
  [0.18642015806088866,
   0.0038932595541819725,
   0.13929377124823455,
   0.00011096713775557375,
   0.41030531091961325,
   0.03831497337926912,
   9.380879651387579e-05,
   0.00010049764329235065,
   0.00010468293719245211,
   0.02357104051343458,
   0.00017620656612151912,
   0.0001371177047041352,
   0.19706017479370652,
   0.00023942256897848774,
   0.0001786081761129672],
  [0.27454679668884346,
   7.178101198336526e-05,
   0.3560054548029289,
   3.9157705766460666e-05,
   0.21423029659864995,
   0.01482251652113739,
   3.3102928727308026e-05,
   3.5463266205286285e-05,
   3.6940158467275836e-05,
   0.00875168824657122,
   0.006138455273169523,
   4.838562879763272e-05,
   0.12465842818124316,
   8.448662099008541e-05,
   0.0004970463665190312],
  [0.11688874613324284,
   0.00022592467119129163,
   0.030396848695047936,
   0.009685528422828786,
   0.41745616387357604,
   0.00020724469866473965,
   0.00010418867164925146,
   0.00011161763446098082,
   0.05339184191754384,
   0.008420633713642258,
   0.00019570369456089895,
   0.01517873416068651,
   0.005762436314293262,
   0.3417760163576595,
   0.00019837104095193314],
  [0.1944916396254807,
   5.47448461434399e-05,
   0.025240223031903875,
   0.03842720211972231,
   0.18092950266338045,
   5.021841608807023e-05,
   2.5246436209254087e-05,
   2.704658235526356e-05,
   0.3542105141018446,
   5.437328043289639e-05,
   4.742186230457214e-05,
   3.6902012536321624e-05,
   0.03184938355363642,
   0.1745075132686856,
   4.8068199276176216e-05],
  [0.3330699921323475,
   5.583529154760305e-05,
   0.004473869648493032,
   0.3950281319273983,
   0.21896907518529568,
   0.007816130218922896,
   2.5749312046437867e-05,
   2.7585314738405925e-05,
   2.8734124259950365e-05,
   0.010183601782957985,
   4.8366443492569055e-05,
   3.763705213930396e-05,
   0.012902700206866851,
   0.01728356570484615,
   4.902565464740455e-05],
  [0.13523782431967737,
   0.24075551079718804,
   0.0005356815409386371,
   0.00019194217003677154,
   0.49909451172188934,
   0.021597421959036835,
   0.00016226302971851536,
   0.00017383286734496566,
   0.00018107225739931343,
   0.021624125960784762,
   0.01094211810642409,
   0.06831608695345351,
   0.0004645318271775388,
   0.000414134205630633,
   0.0003089422832996413],
  [0.25789321230291246,
   0.002422016709769717,
   0.32129536053758984,
   0.00010091354917163058,
   0.1304140804819427,
   0.02925107493869577,
   8.530974837421177e-05,
   9.139258768982907e-05,
   0.0023322281454077848,
   0.041568776536989656,
   0.0068713306558512285,
   0.00012469488278989924,
   0.15012520065572188,
   0.000217730957796063,
   0.05720667730929726],
  [0.2802017063285554,
   0.08405199275812078,
   0.00218446738260804,
   0.008882794304061139,
   0.20346782485936504,
   0.0002647480980128512,
   0.00013309750662547518,
   0.00014258775553068484,
   0.00014852592128165382,
   0.0002866522622315122,
   0.028171132064189804,
   0.3352480714240695,
   0.02132188123502722,
   0.024770683096801274,
   0.010723835003519554],
  [0.32032216319887685,
   7.067670890498274e-05,
   0.024893473764482053,
   3.8555290533998904e-05,
   0.27204450034607686,
   0.03638895543923164,
   0.0008872788961734508,
   0.0004622603044482867,
   3.6371858723594255e-05,
   0.31886778927898857,
   0.0026252782898452945,
   0.020560086863274596,
   0.0026573658877479685,
   8.31868505763845e-05,
   6.205702211542537e-05],
  [0.3512066869362016,
   0.00015932534449025757,
   0.026253054396327153,
   0.28427559089458593,
   0.23948508987060144,
   0.00014615195779385076,
   7.347535758254617e-05,
   7.871436956358791e-05,
   8.199248395505138e-05,
   0.0030482983027952768,
   0.00013801307484267896,
   0.0010707483286386172,
   0.02718418808577355,
   0.00018752675146433768,
   0.06661114384538415],
  [0.2872031707328849,
   0.0005969710855014788,
   0.0009088605213324727,
   0.003935208414372013,
   0.2873049753124376,
   0.0005476121402498927,
   0.00027530248946892443,
   0.0002949323774775393,
   0.00030721504043321006,
   0.0005929193070933872,
   0.0005171168175774374,
   0.16283219738517093,
   0.004397695842004277,
   0.16674198445802207,
   0.08354383807597374],
  [0.3955271023968469,
   5.848091245336526e-05,
   0.1397616039663735,
   0.006043126796657133,
   0.11371672632619421,
   0.004650464319383966,
   2.6969381224387292e-05,
   2.88923784850282e-05,
   3.0095621580799532e-05,
   0.01526294598713901,
   0.009597897099940269,
   0.2952966243065074,
   0.019878889554607742,
   6.883233530821276e-05,
   5.134861729806558e-05],
  [0.3035359056163211,
   0.2683253950737348,
   0.09544289806068118,
   9.234092076461249e-05,
   0.22577902707886663,
   0.017554719770655126,
   7.806266630929985e-05,
   0.0031541187196268204,
   0.010322078053458751,
   0.011426586818927364,
   0.05439195218104535,
   0.0011375986756628233,
   0.00022348031512733264,
   0.008387207871396608,
   0.0001486281774221129],
  [0.28500022951737974,
   0.0001018990533237274,
   0.1560351941099801,
   5.5587585597930656e-05,
   0.20184050107242776,
   0.33649865734228535,
   4.6992331347142513e-05,
   0.0006664697344035155,
   5.2439594726195825e-05,
   0.019201135444341714,
   8.8268452943001e-05,
   6.868738170053457e-05,
   0.00013453115957398862,
   0.00011993571084516554,
   8.947150912407081e-05],
  [0.1668701165140291,
   0.0072898139943363815,
   0.0008476666043890342,
   0.0036702493681685863,
   0.42618699852466596,
   0.0005107412111676822,
   0.006989803464516308,
   0.00027507447080465263,
   0.00028653013749509713,
   0.057783813979121766,
   0.0038488177469429606,
   0.003741826702014033,
   0.3104547896749877,
   0.0006553291629820817,
   0.010588428444378602],
  [0.3764987395730032,
   0.00010215080468048231,
   0.06253805969990393,
   0.013644000934279223,
   0.19925092278545142,
   9.370474071174945e-05,
   0.22301836484579327,
   0.10258018641838335,
   0.002523164790712005,
   0.005042648761860748,
   8.8486528597899e-05,
   6.885708044621494e-05,
   0.0007525124414080778,
   0.0013555298429652192,
   0.012442670751803173],
  [0.37911993357883833,
   0.0016203199014159248,
   0.061300702121551434,
   2.3710910565729495e-05,
   0.09949842578918165,
   3.9871295011771e-05,
   0.36532474287396655,
   0.0005470921115341417,
   2.2368133591004832e-05,
   4.317008129240414e-05,
   3.76509497758203e-05,
   2.929863470371933e-05,
   0.018716832945696555,
   5.1158633405239636e-05,
   0.07362472203946974],
  [0.44520571236312334,
   6.690277517732979e-05,
   0.003742570054407697,
   3.649654850172157e-05,
   0.1304976474016711,
   0.01260160721959712,
   0.349943893378561,
   3.30531830135788e-05,
   3.442970569325241e-05,
   6.644869083976561e-05,
   5.795347719016762e-05,
   0.0024722398168346036,
   0.01465118253842635,
   0.0037194586234101535,
   0.03687040422355283],
  [0.07421265047740554,
   0.0035203503499831633,
   0.0007606063590007953,
   0.0002725358705371256,
   0.3068961942578179,
   0.00045828514537021734,
   0.00023039489473238262,
   0.0002468227373940226,
   0.5832633448522652,
   0.0004962017655782873,
   0.003453521983527844,
   0.00033676179969521644,
   0.000659581924533719,
   0.012671054024507042,
   0.01252169355765154],
  [0.32443465514601844,
   0.028356846021537593,
   0.00022910230735795727,
   0.021009392643477183,
   0.23802146122022794,
   0.0001380401083815865,
   6.939726622325983e-05,
   7.434549813607148e-05,
   7.744166785364124e-05,
   0.00014946097684276526,
   0.007409414553204803,
   0.00010143605089174866,
   0.00019867272869081952,
   0.37959820420702545,
   0.00013212960413077103],
  [0.2650352840137461,
   0.0024466461979650725,
   0.02175238750785644,
   0.00010193973906456092,
   0.2379498180169627,
   0.0001714176854743249,
   8.617726321506981e-05,
   9.232195892437504e-05,
   0.02156405589825265,
   0.0024453778797052673,
   0.018240094232520418,
   0.00012596290506708123,
   0.0013765999459260222,
   0.4171489496972582,
   0.011462967058061678],
  [0.2655958027840816,
   0.0001286011054211122,
   0.005638842983010412,
   7.01539879165885e-05,
   0.2446230976262163,
   0.0001179680696243418,
   5.930639746336607e-05,
   0.42384415415294974,
   6.61810844130149e-05,
   0.0009053073779873554,
   0.009442348095669868,
   0.0024194238615920347,
   0.0001697842646274167,
   0.004816838868704713,
   0.042102189340322144],
  [0.275458808284063,
   0.00032877228788098,
   0.04025859142213737,
   0.33017117399905715,
   0.2735269729792618,
   0.0003015886373627577,
   0.00015161844772765544,
   0.0001624292949331249,
   0.00016919377532301612,
   0.0003265408356556247,
   0.0002847938256068925,
   0.00022161646152389256,
   0.04814371938746189,
   0.020265992182164922,
   0.010228188179839852],
  [0.2115087079333339,
   0.007245119895463087,
   0.00019903930553183508,
   7.131856020173884e-05,
   0.16805421200523016,
   0.00011992636662921821,
   6.029089725972924e-05,
   6.45898179248872e-05,
   0.5747514080459104,
   0.00012984857890764687,
   0.00011324792950467914,
   0.0008786126341808077,
   0.0009630898314842405,
   0.035725796754607735,
   0.00011479144382991534],
  [0.2712612776813579,
   0.0025148420077271377,
   0.01422901823244231,
   0.00010478112375607185,
   0.3793026058972434,
   0.10818476796704388,
   8.857929758069174e-05,
   0.20217544993915548,
   0.0012602297426237495,
   0.012965980820524385,
   0.00016638369146800824,
   0.00012947389178766895,
   0.0014149701639448436,
   0.006032988122899947,
   0.0001686514204445097],
  [0.08556697429389382,
   0.15298142125179315,
   0.0939584849419724,
   0.00020549485263453431,
   0.4637264990917827,
   0.00034555171848331113,
   0.00017372012296021982,
   0.00018610688548143867,
   0.00019385743551480084,
   0.004929506114465631,
   0.004881673572795542,
   0.09136121934304729,
   0.007330378873574796,
   0.03005324713855294,
   0.0641058643630474],
  [0.19117769658678646,
   0.0003610722258191937,
   0.004916120054608302,
   0.0023801730029288045,
   0.4073762948549243,
   0.0003312179419871609,
   0.00016651406585732107,
   0.002361589264992414,
   0.00018581606571643237,
   0.0003586215465754799,
   0.05707603163806164,
   0.0002433889716081355,
   0.3279570393246693,
   0.00042498387038486225,
   0.004683440585080119],
  [0.2727812107931437,
   8.801636895603721e-05,
   0.013438647418895607,
   0.0011123860857257676,
   0.12857385133175303,
   8.073897271012862e-05,
   0.4981665595309414,
   4.348431202716943e-05,
   4.529524629304064e-05,
   8.741898185981777e-05,
   7.624279586511862e-05,
   0.0005915153063314388,
   0.0006483885554710344,
   0.0006357815845670576,
   0.08363046271545964],
  [0.23952197520227494,
   0.0003900232105464805,
   0.0005937920731475041,
   0.00021276398449507363,
   0.20657295011038654,
   0.00035777519257080274,
   0.00017986526219089814,
   0.00019269019145419137,
   0.03085799998511752,
   0.0003873760343908393,
   0.00033785147441388303,
   0.0002629040433748175,
   0.00051492406518138,
   0.361271722161396,
   0.15834538700905906],
  [0.36788541245244893,
   0.03927989956995753,
   0.00018959723291346568,
   6.793533384520061e-05,
   0.21956805352575312,
   0.009903078656205912,
   5.7430803728796174e-05,
   0.006085428181538649,
   6.408807535191373e-05,
   0.00012368879198434507,
   0.0136616560262876,
   0.2719125403699908,
   0.00016441475448037993,
   0.012194381978957704,
   0.05884239424655562],
  [0.290555134938778,
   0.0001653794486636091,
   0.10524729209849024,
   0.006089960577995176,
   0.16358876916124662,
   0.008151363371455583,
   0.017075540289913763,
   8.170538768943789e-05,
   0.01008468041106927,
   0.001164214215362936,
   0.00014325734740367903,
   0.00011147779047262456,
   0.3322041423738567,
   0.0001946524632730118,
   0.06514243012432933],
  [0.33150195180621456,
   7.363462704171335e-05,
   0.35540364808706837,
   4.016888283200407e-05,
   0.1387310027867811,
   0.006300731308043876,
   0.01071941768641332,
   3.6379041038212276e-05,
   3.789407137684271e-05,
   0.010758594786403529,
   6.378483803336233e-05,
   4.963510031759007e-05,
   0.0895879422961681,
   0.010772128269773062,
   0.045923086412494395],
  [0.44293063103569963,
   2.2745915101779993e-05,
   0.03496772077585311,
   1.240826544979337e-05,
   0.1673206724739474,
   0.025739322126687055,
   0.0006981489073871545,
   1.1237574116734372e-05,
   1.170557066731902e-05,
   0.05352248315185307,
   0.0002947670014791831,
   0.27067802316163275,
   3.0030056555014397e-05,
   2.6772059283896586e-05,
   0.0037333319242861093],
  [0.026418010018535217,
   0.0012246973671728464,
   0.0018645443885580999,
   0.6523135065601782,
   0.308019202010404,
   0.0011234365661655984,
   0.0005647882154049266,
   0.0006050592984538709,
   0.0006302574116439681,
   0.0012163850678517008,
   0.0010608748403214245,
   0.0008255352015822236,
   0.0016168938921300973,
   0.0014414751119957224,
   0.001075334049602166],
  [0.3910185237774779,
   0.00017173330937338886,
   0.0012998314056765785,
   9.368330444132103e-05,
   0.2124472270199792,
   0.00015753400354249732,
   7.91974833345824e-05,
   8.484449993592513e-05,
   8.837790784884495e-05,
   0.00017056771637940878,
   0.38123256408367245,
   0.00011576075524618492,
   0.00022672910585422326,
   0.0002021309900696995,
   0.012611294637167703],
  [0.3513999505330597,
   0.22601598266629788,
   0.023731257037292505,
   0.002273821768719138,
   0.28372599795768977,
   0.00011163150002534675,
   5.612079718704571e-05,
   6.012237728848627e-05,
   6.262621529584233e-05,
   0.0008566794464854831,
   0.019236527432737776,
   8.203020593400069e-05,
   0.0641763099208043,
   0.0038222938330335706,
   0.024388648308149137],
  [0.37704626945240316,
   0.012819616982827095,
   0.010902169024137697,
   4.420339945887907e-05,
   0.24869433093186405,
   7.433062410076627e-05,
   0.021594976485123516,
   4.003291029198941e-05,
   4.170010854420081e-05,
   0.0005704260705724326,
   7.019131417720711e-05,
   0.0005445660306160432,
   0.2852553406389793,
   0.028512220185831497,
   0.01378962584107223],
  [0.3368194864029559,
   0.0015284022964505736,
   0.11890232163721526,
   4.356309303703792e-05,
   0.06885215875608448,
   0.039183986572697664,
   0.03963040834410285,
   3.945301530973138e-05,
   0.000523944614812164,
   7.931463713905803e-05,
   6.917456094611352e-05,
   0.006813708910960306,
   0.1990390330646994,
   9.399167950560755e-05,
   0.1883810524140839],
  [0.27705765962699846,
   0.43400762767203516,
   0.0088603407965486,
   7.797553496526786e-05,
   0.18114781176283185,
   0.0044524819035244466,
   6.591853444692464e-05,
   7.061872241609741e-05,
   0.0052591934172787095,
   0.0001419688279763772,
   0.03469471017925797,
   0.01046761874415638,
   0.00364580285619448,
   0.00016823992468814128,
   0.039882031496681104],
  [0.3068245993848686,
   0.02726015762856917,
   0.00017984681593387737,
   0.012206927837311948,
   0.20541927156174442,
   0.00010836239167511554,
   5.447730976043095e-05,
   0.003629681178989523,
   6.079221787288798e-05,
   0.04725874491419328,
   0.013673341930811529,
   0.025793128183835626,
   0.03372636245881656,
   0.3158436807343021,
   0.00796062545131495],
  [0.20588227899282074,
   0.09896943344978595,
   0.00027637915904095146,
   0.0011966738203354657,
   0.19164387411861875,
   0.00016652564309976853,
   8.371787390407271e-05,
   8.968720782555834e-05,
   0.014362785343976631,
   0.00018030328705813384,
   0.3492078252711459,
   0.017684661069225945,
   0.058414765738386686,
   0.05838876362482422,
   0.0034523253999511998],
  [0.04380942261334655,
   0.0006263626276098745,
   0.0009536077677773521,
   0.0003416909680897028,
   0.34311019517710456,
   0.0005745735219149743,
   0.0002888568556824486,
   0.0003094532103994194,
   0.004109605865413264,
   0.0006221113621268013,
   0.6027177534245463,
   0.00042221401948560797,
   0.000826948709115686,
   0.0007372320403269478,
   0.0005499718370604769],
  [0.21495002504783034,
   0.01795991599671102,
   0.004436021169864981,
   0.00012307744211607671,
   0.34185695105666813,
   0.00020696198023693595,
   0.00010404653987153451,
   0.001475642254935773,
   0.22247693994817483,
   0.022050915346477667,
   0.0001954367201041427,
   0.0015162588156568747,
   0.00029786778517490876,
   0.1721518394684138,
   0.00019810042776288148],
  [0.1942791606447414,
   0.00016772753371451394,
   0.019524298411416275,
   9.149808887688981e-05,
   0.19735022847574088,
   0.01942280053071667,
   7.735015766349753e-05,
   8.286545443873629e-05,
   0.016312793156111602,
   0.028562923375668757,
   0.0001452913391637742,
   0.0001130605707723044,
   0.03368854874191804,
   0.4626520024771345,
   0.027529451041922132],
  [0.2739432260036662,
   0.0036860432562986264,
   0.000222817437675111,
   7.98385967051514e-05,
   0.26069435064097923,
   0.00013425331067453095,
   0.0036071825613226307,
   7.230600856182877e-05,
   0.4266078467859675,
   0.00014536087513292072,
   0.000126777037363649,
   0.015142331825176688,
   0.0028479894025576526,
   0.00017225966455843497,
   0.01251741659335981],
  [0.19490584587719234,
   0.012255611836321735,
   0.00795988233998082,
   0.0022943171318983036,
   0.2245731734655039,
   0.00016652564309976853,
   8.371787390407271e-05,
   0.02862841330845935,
   9.342229365973543e-05,
   0.001277946598620972,
   0.00015725219416335855,
   0.00012236808422053168,
   0.06061005236151236,
   0.46671207552620003,
   0.00015939546526268529],
  [0.19055548251029403,
   0.3232774183543555,
   0.0005607333025538,
   0.0002009185657498527,
   0.3242358546326462,
   0.00033785642209510066,
   0.04248207956025002,
   0.015770677981642105,
   0.0001895403091816067,
   0.002592768641523928,
   0.06490086379469787,
   0.0002482671277756995,
   0.013848012437309704,
   0.020476136036432002,
   0.000323390323492524],
  [0.226760733598755,
   0.0002410731945358773,
   0.006197562946421344,
   0.00013150933595090913,
   0.417752039798343,
   0.007509316078777202,
   0.00011117464850781108,
   0.004492006955245954,
   0.05114128940749798,
   0.00023943697598507497,
   0.0016664609390702018,
   0.00016250088681635778,
   0.0003182743641403927,
   0.2728615032897686,
   0.010415117580184253],
  [0.3697166127527567,
   0.0002629177698244684,
   0.00040027999203597184,
   0.00014342590591988889,
   0.19648229315782464,
   0.00024117912264102305,
   0.00012124861373728044,
   0.0017196110317943079,
   0.011263322740539298,
   0.00026113328717740104,
   0.0018174654151966324,
   0.0701247750644498,
   0.0003471144362325164,
   0.24989502936296012,
   0.09720359134690991]])

When the topic model finishes, it will output your results to your output_directory_path.

Display Topics and Top Words#

To examine the 15 topics that the topic model extracted from the NYT obituaries, run the cell below. This code uses the little_mallet_wrapper.load_topic_keys() function to read and process the MALLET topic model output from your computer, specifically the file “mallet.topic_keys.15”.

Take a minute to read through every topic. Reflect on what each topic seems to capture as well as how well you think the topics capture the broad themes of the entire collection. Note any oddities, outliers, or inconsistencies.

topics = little_mallet_wrapper.load_topic_keys(path_to_topic_keys)

for topic_number, topic in enumerate(topics):
    print(f"✨Topic {topic_number}\n\n{topic}\n")
✨Topic 0✨

['one', 'would', 'said', 'time', 'could', 'man', 'life', 'years', 'never', 'made', 'people', 'many', 'later', 'first', 'two', 'long', 'even', 'came', 'way', 'also']

✨Topic 1✨

['book', 'wrote', 'published', 'said', 'writing', 'writer', 'novel', 'books', 'author', 'life', 'story', 'literary', 'stories', 'write', 'work', 'poet', 'short', 'writers', 'poetry', 'novels']

✨Topic 2✨

['president', 'state', 'roosevelt', 'court', 'justice', 'house', 'states', 'party', 'black', 'law', 'political', 'united', 'governor', 'campaign', 'democratic', 'republican', 'election', 'rights', 'warren', 'congress']

✨Topic 3✨

['baseball', 'game', 'louis', 'won', 'ruth', 'team', 'tennis', 'league', 'babe', 'rickey', 'first', 'golf', 'football', 'record', 'champion', 'abbott', 'club', 'season', 'dempsey', 'black']

✨Topic 4✨

['years', 'new', 'first', 'york', 'one', 'american', 'became', 'last', 'home', 'mrs', 'later', 'two', 'year', 'world', 'died', 'time', 'death', 'old', 'born', 'times']

✨Topic 5✨

['general', 'gen', 'grant', 'army', 'war', 'president', 'men', 'upon', 'military', 'pershing', 'command', 'macarthur', 'troops', 'states', 'april', 'made', 'forces', 'union', 'days', 'sent']

✨Topic 6✨

['war', 'israel', 'minister', 'peace', 'gandhi', 'british', 'king', 'government', 'prime', 'united', 'india', 'secretary', 'arab', 'nations', 'france', 'churchill', 'political', 'mrs', 'state', 'israeli']

✨Topic 7✨

['queen', 'prince', 'england', 'victoria', 'king', 'schweitzer', 'emperor', 'duke', 'sir', 'london', 'douglass', 'church', 'lord', 'throne', 'reign', 'royal', 'english', 'trudeau', 'princess', 'tolstoy']

✨Topic 8✨

['music', 'band', 'jazz', 'piano', 'musical', 'sinatra', 'composer', 'goodman', 'orchestra', 'played', 'stravinsky', 'works', 'bernstein', 'concert', 'armstrong', 'playing', 'musicians', 'davis', 'style', 'opera']

✨Topic 9✨

['company', 'business', 'oil', 'ford', 'rockefeller', 'hill', 'carnegie', 'president', 'keller', 'getty', 'barnum', 'cleveland', 'bell', 'sloan', 'church', 'stock', 'money', 'companies', 'day', 'general']

✨Topic 10✨

['university', 'professor', 'research', 'science', 'scientific', 'oppenheimer', 'institute', 'human', 'dewey', 'work', 'atomic', 'society', 'children', 'vaccine', 'nobel', 'theory', 'freud', 'prize', 'also', 'scientist']

✨Topic 11✨

['times', 'art', 'new', 'york', 'moses', 'ochs', 'picasso', 'paper', 'pulitzer', 'work', 'paris', 'luce', 'newspaper', 'artist', 'news', 'painting', 'chattanooga', 'editor', 'journalism', 'wright']

✨Topic 12✨

['truman', 'kennedy', 'president', 'said', 'nixon', 'hoover', 'eisenhower', 'television', 'johnson', 'united', 'american', 'lindbergh', 'air', 'program', 'million', 'war', 'murrow', 'news', 'space', 'communist']

✨Topic 13✨

['miss', 'film', 'theater', 'broadway', 'movie', 'films', 'hollywood', 'stage', 'movies', 'actor', 'said', 'role', 'actress', 'director', 'television', 'show', 'dance', 'star', 'love', 'made']

✨Topic 14✨

['soviet', 'party', 'mao', 'hitler', 'china', 'war', 'communist', 'german', 'stalin', 'chinese', 'moscow', 'united', 'political', 'deng', 'union', 'germany', 'chiang', 'military', 'khrushchev', 'power']

Load Topic Distributions#

MALLET also calculates the likely mixture of these topics for every single obituary in the corpus. This mixture is really a probability distribution, that is, the probability that each topic exists in the document. We can use these probability distributions to examine which of the above topics are strongly associated with which specific obituaries.

To get the topic distributions, we’re going to use the little_mallet_wrapper.load_topic_distributions() function, which will read and process the MALLET topic model output, specifically the file “mallet.topic_distributions.15”.

topic_distributions = little_mallet_wrapper.load_topic_distributions(path_to_topic_distributions)

If we look at the 32nd topic distribution in this list of topic_distributions, which corresponds to Marilyn Monroe’s obituary, we will see a list of 15 probabilities. This list corresponds to the likelihood that each of the 15 topics exists in Marilyn Monroe’s obituary.

topic_distributions[32]
[0.36054595600789047,
 0.00025639621105210574,
 0.0003903512242116964,
 0.08695581731648391,
 0.27222344675469345,
 0.001785481585425372,
 0.0001182410956030627,
 0.00012667203812443808,
 0.00013194738281021722,
 0.0002546559917063317,
 0.00332266879500217,
 0.01412539295210924,
 0.035995054909529624,
 0.21889193703216597,
 0.0048759807031919025]

It’s a bit easier to understand if we pair these probabilities with the topics themselves. As you can see below, Topic 13 “miss film theater movie broadway films” has a relatively high probability of existing in Marilyn Monroe’s obituary .219 while Topic 5 “soviet party mao hitler china war” has a relatively low probability .005. This seems to comport with what we know about Marilyn Monroe.

obituary_to_check = "1962-Marilyn-Monroe"

obit_number = obit_titles.index(obituary_to_check)

print(f"Topic Distributions for {obit_titles[obit_number]}\n")
for topic_number, (topic, topic_distribution) in enumerate(zip(topics, topic_distributions[obit_number])):
    print(f"✨Topic {topic_number} {topic[:6]}\nProbability: {round(topic_distribution, 3)}\n")
Topic Distributions for 1962-Marilyn-Monroe

✨Topic 0 ['one', 'would', 'said', 'time', 'could', 'man'] ✨
Probability: 0.361

✨Topic 1 ['book', 'wrote', 'published', 'said', 'writing', 'writer'] ✨
Probability: 0.0

✨Topic 2 ['president', 'state', 'roosevelt', 'court', 'justice', 'house'] ✨
Probability: 0.0

✨Topic 3 ['baseball', 'game', 'louis', 'won', 'ruth', 'team'] ✨
Probability: 0.087

✨Topic 4 ['years', 'new', 'first', 'york', 'one', 'american'] ✨
Probability: 0.272

✨Topic 5 ['general', 'gen', 'grant', 'army', 'war', 'president'] ✨
Probability: 0.002

✨Topic 6 ['war', 'israel', 'minister', 'peace', 'gandhi', 'british'] ✨
Probability: 0.0

✨Topic 7 ['queen', 'prince', 'england', 'victoria', 'king', 'schweitzer'] ✨
Probability: 0.0

✨Topic 8 ['music', 'band', 'jazz', 'piano', 'musical', 'sinatra'] ✨
Probability: 0.0

✨Topic 9 ['company', 'business', 'oil', 'ford', 'rockefeller', 'hill'] ✨
Probability: 0.0

✨Topic 10 ['university', 'professor', 'research', 'science', 'scientific', 'oppenheimer'] ✨
Probability: 0.003

✨Topic 11 ['times', 'art', 'new', 'york', 'moses', 'ochs'] ✨
Probability: 0.014

✨Topic 12 ['truman', 'kennedy', 'president', 'said', 'nixon', 'hoover'] ✨
Probability: 0.036

✨Topic 13 ['miss', 'film', 'theater', 'broadway', 'movie', 'films'] ✨
Probability: 0.219

✨Topic 14 ['soviet', 'party', 'mao', 'hitler', 'china', 'war'] ✨
Probability: 0.005

Explore Heatmap of Topics and Texts#

We can visualize and compare these topic probability distributions with a heatmap by using the little_mallet_wrapper.plot_categories_by_topics_heatmap() function.

We have everything we need for the heatmap except for our list of target_labels, the sample of texts that we’d like to visualize and compare with the heatmap. Below we make our list of desired target labels.

target_labels = ['1852-Ada-Lovelace', '1885-Ulysses-Grant',
                 '1900-Nietzsche', '1931-Ida-B-Wells', '1940-Marcus-Garvey',
                 '1941-Virginia-Woolf', '1954-Frida-Kahlo', '1962-Marilyn-Monroe',
                 '1963-John-F-Kennedy', '1964-Nella-Larsen', '1972-Jackie-Robinson',
                 '1973-Pablo-Picasso', '1984-Ray-A-Kroc','1986-Jorge-Luis-Borges', '1991-Miles-Davis',
                 '1992-Marsha-P-Johnson', '1993-Cesar-Chavez']

If you’d like to make a random list of target labels, you can uncomment and run the cell below.

#import random
#target_labels = random.sample(obit_titles, 10)
little_mallet_wrapper.plot_categories_by_topics_heatmap(obit_titles,
                                      topic_distributions,
                                      topics, 
                                      output_directory_path + '/categories_by_topics.pdf',
                                      target_labels=target_labels,
                                      dim= (13, 9)
                                     )
../_images/c4c43b7843ee575bc73d650ef191ea8a9485f0a7a7fcc5a155e7c69868be08f2.png

The darker squares in this heatmap represent a high probability for the corresponding topic (compared to everyone else in the heatmap) and the lighter squares in the heatmap represent a low probability for the corresponding topic. For example, if you scan across the row of Marilyn Monroe, you can see a dark square for the topic “miss film theater movie theater broadway”. If you scan across the row of Ada Lovelace, an English mathematician who is now recognized as the first computer programmer, according to her NYT obituary, you can see a dark square for “university professor research science also”.

The plot_categories_by_topics_heatmap() function also helpfully outputs a PDF of the heatmap to output_directory_path + '/categories_by_topics.pdf'. We can download this PDF and explore it in more detail or embed it in an article or blog post!

Hide code cell source
from IPython.display import IFrame
IFrame("topic-model-output/NYT-Obits/categories_by_topics.pdf", width=1000, height=600)

Display Top Titles Per Topic#

We can also display the obituaries that have the highest probability for every topic with the little_mallet_wrapper.get_top_docs() function.

Because most of the obituaries in our corpus are pretty long, however, it will be more useful for us to simply display the title of each obituary, rather than the entire document—at least as a first step. To do so, we’ll first need to make two dictionaries, which will allow us to find the corresponding obituary title and the original text from a given training document.

training_data_obit_titles = dict(zip(training_data, obit_titles))
training_data_original_text = dict(zip(training_data, original_texts))

Then we’ll make our own function display_top_titles_per_topic() that will display the top text titles for every topic. This function accepts a given topic_number as well as a desired number_of_documents to display.

def display_top_titles_per_topic(topic_number=0, number_of_documents=5):
    
    print(f"✨Topic {topic_number}\n\n{topics[topic_number]}\n")

    for probability, document in little_mallet_wrapper.get_top_docs(training_data, topic_distributions, topic_number, n=number_of_documents):
        print(round(probability, 4), training_data_obit_titles[document] + "\n")
    return

Topic 0

To display the top 5 obituary titles with the highest probability of containing Topic 0, we will run:

display_top_titles_per_topic(topic_number=0, number_of_documents=5)
✨Topic 0✨

['one', 'would', 'said', 'time', 'could', 'man', 'life', 'years', 'never', 'made', 'people', 'many', 'later', 'first', 'two', 'long', 'even', 'came', 'way', 'also']

0.4786 1987-James-Baldwin

0.4647 1882-Charles-Darwin

0.4594 1974-Sylvia-Plath

0.4452 1978-Golda-Meir

0.4429 1935-Adolph-S-Ochs

What would you label this topic?

To display the top 5 obituary titles with the highest probability of containing Topic 9, we will run:

display_top_titles_per_topic(topic_number=9, number_of_documents=5)
✨Topic 9✨

['company', 'business', 'oil', 'ford', 'rockefeller', 'hill', 'carnegie', 'president', 'keller', 'getty', 'barnum', 'cleveland', 'bell', 'sloan', 'church', 'stock', 'money', 'companies', 'day', 'general']

0.4206 1956-Charles-Merrill

0.3872 1966-Alfred-P-Sloan-Jr

0.3799 1947-Henry-Ford

0.358 1915-F-W-Taylor

0.3575 1937-John-Rockefeller

What would you label this topic?

To display the top 7 obituaries with the highest probability of containing Topic 8, we will run:

display_top_titles_per_topic(topic_number=8, number_of_documents=7)
✨Topic 8✨

['music', 'band', 'jazz', 'piano', 'musical', 'sinatra', 'composer', 'goodman', 'orchestra', 'played', 'stravinsky', 'works', 'bernstein', 'concert', 'armstrong', 'playing', 'musicians', 'davis', 'style', 'opera']

0.5833 1983-Earl-Hines

0.5748 1993-Dizzy-Gillespie

0.5657 1991-Miles-Davis

0.5451 1993-Carlos-Montoya

0.5352 1983-Muddy-Waters

0.5091 1986-Benny-Goodman

0.498 1984-Count-Basie

What would you label this topic?

Display Topic Words in Context of Original Text#

Often it’s useful to actually look at the document that has ranked highly for a given topic and puzzle out why it ranks so highly.

To display the original obituary texts that rank highly for a given topic, with the relevant topic words bolded for emphasis, we are going to make the function display_bolded_topic_words_in_context().

In the cell below, we’re importing two special Jupyter notebook display modules, which will allow us to make the relevant topic words bolded, as well as the regular expressions library re, which will allow us to find and replace the correct words.

from IPython.display import Markdown, display
import re

def display_bolded_topic_words_in_context(topic_number=3, number_of_documents=3, custom_words=None):

    for probability, document in little_mallet_wrapper.get_top_docs(training_data, topic_distributions, topic_number, n=number_of_documents):
        
        print(f"✨Topic {topic_number}\n\n{topics[topic_number]}\n")
        
        probability = f"✨✨✨\n\n**{probability}**"
        obit_title = f"**{training_data_obit_titles[document]}**"
        original_text = training_data_original_text[document]
        topic_words = topics[topic_number]
        topic_words = custom_words if custom_words != None else topic_words

        for word in topic_words:
            if word in original_text:
                original_text = re.sub(f"\\b{word}\\b", f"**{word}**", original_text)

        display(Markdown(probability)), display(Markdown(obit_title)), display(Markdown(original_text))
    return

Topic 3

To display the top 3 original obituaries with the highest probability of containing Topic 0 and with relevant topic words bolded, we will run:

display_bolded_topic_words_in_context(topic_number=3, number_of_documents=3)
✨Topic 3✨

['baseball', 'game', 'louis', 'won', 'ruth', 'team', 'tennis', 'league', 'babe', 'rickey', 'first', 'golf', 'football', 'record', 'champion', 'abbott', 'club', 'season', 'dempsey', 'black']

✨✨✨

0.6523135065601782

1941-Lou-Gehrig

June 3, 1941

OBITUARY

Gehrig’s Impressive Records

By THE NEW YORK TIMESThe major records that Gehrig made:

Most consecutive games–2,130.

Most consecutive years, 100 games or more–14.

Most years, 150 games or more–12.

Most years, 100 runs or more–13.

Most consecutive years, 100 runs or more–13.

Most years, 100 or more runs batted in–13 (tied with Ruth).

Most years, 150 or more runs batted in–7.

Most consecutive years, 100 or more runs batted in–13.

Most runs batted in, one season–184 (American League).

Most times, four long hits in one game–5.

Most years, 400 or more total bases–5.

Most years, 300 or more total bases–13.

Most home runs with bases filled–23.

Most consecutive home runs in one game–4 (modern record).

Most total bases, one game (modern record)–16 (tied with Ruth and Klein).

Most years, leading league, runs batted in–5 (tied with Ruth).

Most years, leading league games played, season–8.

First baseman participating in most double plays, season–157.

World Series

Highest batting percentage, total series–.361 (7 series).

Most runs, one series–9 (tied with Ruth).

Most runs batted in, total series–35.

Most runs batted in, one series–9.

Most home runs, one four-game series–4.

Most home runs, 3 consecutive games–4.

Most extra bases on long hits, one series–13.

✨Topic 3✨

['baseball', 'game', 'louis', 'won', 'ruth', 'team', 'tennis', 'league', 'babe', 'rickey', 'first', 'golf', 'football', 'record', 'champion', 'abbott', 'club', 'season', 'dempsey', 'black']

✨✨✨

0.5762678365738184

1985-Roger-Maris

December 15, 1985

OBITUARY

Roger Maris is Dead at 51, Set Record Home Runs

By JOSEPH DURSO

Roger Maris, who held the major league record for the most home runs in a single season, died yesterday at M. D. Anderson Hospital and Tumor Institute in Houston after a two-year bout with cancer, hospital officials said. He was 51 years old.

During the early 1960’s when the New York Yankees reigned for five straight pennant-winning seasons, Roger Maris was all things to all people. But baseball history will remember him as the home-run twin to Mickey Mantle, and generations of fans will remember him as the man with the asterisk in the record books: *Hit 61 home runs in 1961 in a 162-game season.

The asterisk was inserted to distinguish Maris’s home-run record from the one set in 1927 by the greatest Yankee of them all: Babe Ruth, who hit 60 in the days of the 154-game season.

It was inserted into the record books by Ford C. Frick, the commissioner of baseball, who apparently reflected the traditionalist view of many fans that the Olympian feats of Babe Ruth must be defended against long seasons, short fences and newly arrived sluggers -even one who eventually played in seven World Series and hit 275 home runs in 12 seasons in the big leagues.

Set Mark on Final Day

But, on Oct. 1. 1961, asterisk or no asterisk, Roger Maris made history when he hit his 61st home run of the season in his 161st game on the final day of the 162-game season in Yankee Stadium against

Tracy Stallard of the Boston Red Sox.

It was the rousing end to a rousing season, and it ended with the Yankees winning the pennant race before roaring sellout crowds and swarms of writers and broadcasters drawn by Mantle and Maris, the power hitters on yet another great Yankee team. Mantle, who was injured in September, still managed to hit 54 home runs, so the ‘’twins’’ combined for an awesome total of 115.

But Maris, an accomplished outfielder with a powerful arm and bat, was besieged as he pursued the memory and the record of Ruth.

And yet, Maris was not universally embraced for his achievement. The Yankees received 3,000 messages a day during the final weeks of the season, many of them cheering him on. But the commissioner, a onetime colleague of Babe Ruth, announced that any record would have to be set in 154 games. And Rogers Hornsby, the Hall of Fame slugger, who also had been a contemporary of Ruth, said in the passion of the day: ‘’Maris has no right to break Ruth’s record.’’

Maris had no ‘’right’’ to break Ruth’s record ostensibly because he was none of the things that had made Babe Ruth renowned as the Bambino. He was imported to the Yankees from the Kansas City Athletics, a stocky figure with a blond crewcut, and he was playing only his second season in the celebrated pinstripes. He was considered an upstart in the House That Ruth Built, and the house that Mantle dominated. He was dour, aloof, sometimes arch, and in no way the flamboyant bear portrayed by Babe Ruth.

His manager in 1960, Casey Stengel, once said: ‘’You ask Maris a question, and he stares at you for a week before he answers.’’ ‘’I was born surly,’’ Maris acknowledged in 1961 when the home-run race had ended, ‘’and I’m going to stay that way. Everything in life is tough. ‘’Even the Yankee clubhouse attendants think I’m tough to live with. I guess they’re right. I’m miffed most of the time, regardless of how I’m doing. But, regardless of my faults, I’ll never take abuse from anybody - big or small, important or unimportant - if I think it’s undeserved.’’

Star Athlete in School

Roger Eugene Maris was born in Hibbing, Minn., on Sept. 10, 1934, but was still an infant when his family moved to Fargo. N.D. The family name was Maras, but he changed it legally in 1955 to Maris.

He was an outstanding athlete at Shanley High School, a star in basketball and track and an all-state halfback in football. The school had no baseball team, but he played American Legion ball and became a star there, too.

When he graduated from high school, the University of Oklahoma offered Maris a football scholarship, but a scout for the Cleveland Indians persuaded him to try for a baseball career. He offered a $5,000 bonus and $10,000 more if Maris made the big leagues, and Maris signed.

It didn’t take him long to redeem the full bonus. He broke into professional ball in 1954 in Keokuk, advanced in 1955 to Reading, then in 1956 to Indianapolis in the American Association, one notch below the majors. One year later, in 1957, he was playing outfield for the Indians.

Traded to the Yankees

But on June 15, 1958, he was traded to the Kansas City Athletics with Dick Tomanek and Preston Ward for Vic Power and Woodie Held. And a year and a half later, on Dec. 11, 1959, with some recognition as a blooming power hitter, he was traded to New York with Joe DeMaestri and Kent Hadley for Don Larsen, Hank Bauer, Norm Siebern and Marv Throneberry. He was 25 years old and a Yankee.

It didn’t take Maris long to ‘’join the club.’’ In his debut in 1960, he hit a single, double and two home runs. He finished the season with 39 home runs, and the Yankees won the American League pennant and began a streak of five straight pennants.

In 1961, the season that made him both famous and controversial, he posted these numbers: 161 games, 590 times at bat, 159 hits, 94 walks, 67 strikeouts, 132 runs scored, 142 runs batted in, a batting average of .269 -and 61 home runs.

But, if 1961 was a difficult time for Maris, he soon found that 1962 was an ordeal. He was engulfed wherever he went, cheerleaders asking if he could hit more than 61 home runs, critics asking why not.

He hit 33.

Yankees’ Era Ends

After 1964, the Yankees stopped winning pennants after an extraordinary run of 14 in 16 years. Maris, meanwhile, endured several seasons of injuries to his back, hand and legs, and said later that he was outraged by intimations that he had been exaggerating his ailments. On Dec. 8, 1966, he was traded to the St. Louis Cardinals, where he again distinguished himself as a professional with a strong right-handed throwing arm from right field and a strong left-handed swing at the plate.

He played in the World Series of 1967 and 1968 for the Cardinals, and then retired at the close of the 1968 season. His career line, with no asterisk, read: 12 years in the big leagues, 1,463 games, 5,101 times at bat, 1,325 hits, 275 home runs, 826 runs, 851 runs batted in and an average of .260. In seven World Series, he hit six home runs.

For many years, Maris lived in Independence, Mo., with his wife, the former Patricia Carvell, and their six children. After retiring from baseball, he lived in Gainesville, Fla., where he owned a beer distributorship.

For a while, he shunned old-timers’ games, because he resented the criticism and controversy from his playing days. But he began to appear at reunions later, and he remained close friends with Mantle,

Whitey Ford, Yogi Berra, Tony Kubek and his other teammates from the time when the Yankees ruled the day.

Funeral services will be held at noon Thursday at St. Mary’s Cathedral in Fargo, N.D.

✨Topic 3✨

['baseball', 'game', 'louis', 'won', 'ruth', 'team', 'tennis', 'league', 'babe', 'rickey', 'first', 'golf', 'football', 'record', 'champion', 'abbott', 'club', 'season', 'dempsey', 'black']

✨✨✨

0.5630222462450198

1955-Cy-Young

November 5, 1955

OBITUARY

Cy Young Is Dead; Famed Pitcher, 88

BY THE NEW YORK TIMES

NEWCOMERSTOWN, Ohio, Nov. 4 (AP)–Denton True (Cy) Young, one of baseball’s great pitchers, died today at the age of 88.

A member of baseball’s Hall of Fame, Mr. Young was stricken while sitting in a chair in the home of Mr. and Mrs. John Benedum, with whom he made his home near here.

His Feats Unequaled

Traded to the majors from the minors for a suit of clothing, Cy Young thrilled the baseball world from 1890 to 1911 with a blazing fast ball that set pitching records still unequaled.

Six feet two inches tall and weighing 210 pounds, this Ohio farmer pitched and won more games than any major leaguer. When he retired at the age of 45 because his legs had weakened, he had won 511 of 826 decisions in both leagues and for five teams. In all, he hurled in 906 games.

As the starting pitcher for the Boston Red Sox in 1903, Mr. Young threw the first pitch in a world series game. Fifty years later, as a guest at the opening game of the world series between the Brooklyn Dodgers and New York Yankees, he stood in the pitcher’s box and threw a ceremonial strike to the Yankee catcher, Yogi Berra, to open the series. He was 86 at the time.

During his career, he was a thirty-game winner five seasons; a twenty-game victor sixteen times. He pitched one perfect game, two other no-hit shutouts and performed the “iron man” feat of hurling and winning complete games of a doubleheader.

One of the early members of the baseball Hall of Fame at Cooperstown, N.Y., Mr. Young pitched for the Cleveland Nationals, St. Louis Cardinals, Red Sox and Cleveland Indians and Boston Braves. He won 291 National League games and 220 in the American.

Had 36-10 Mark in 1892

For fourteen consecutive years, beginning in 1891, Mr. Young won twenty or more games. The 1892 season, when he posted a 36-10 record, was his best.

Mr. Young’s feat of pitching twenty-three consecutive hitless innings over a four-game span early in 1904 still stands as a major league record. His total of 2,836 strikeouts was surpassed only by the late Walter Johnson’s 3,497.

He was born on a farm in Gilmore, Ohio, on March 29, 1867. While pitching for the Canton (Ohio) club of the old Tri-State League in 1890, Mr. Young was nicknamed Cy. “I thought I had to show all my stuff,” he recalled years later, “and

I almost tore the boards off the grandstand with my fast ball. One of the fellows called me ‘Cyclone,’ but finally shortened it to ‘Cy,’ and it’s been that ever since.”

The league disbanded during the 1890 season and the pitcher joined the Cleveland Nationals early in August of that year.

Pitched, Won Doubleheader

Still a gawky country boy, he made his major league debut against Cap Anson’s Chicago White Stockings and won the game. Mr. Young won 10 and lost 7 for Cleveland during the late stages of the season. Two of those victories were obtained on Oct. 4, when he captured both ends of a doubleheader against Philadelphia.

In his first complete major league campaign the next year, Mr. Young won 27 and lost 22 games. For the next thirteen seasons he stayed above the .500 mark. He pitched his first major league no- hit, no-run contest on Sept. 18, 1897, blanking Cincinnati, 6 to 0. His affiliation with Cleveland ended after the 1898 campaign and he played with the St. Louis Cardinals in 1899 and 1900.

Mr. Young began eight years with the Red Sox in 1901. While blanking Philadelphia on May 5, 1904, he did not permit an opposing runner to reach first base. It was the third perfect game in major league history. On June 30, 1908, he won his third no-hit, no-run decision in the majors by shutting out New York, 8 to 0.

He was traded to the Cleveland Indians in 1909, and in the middle of the 1911 campaign was traded to the Braves. He retired to his farm near Peoli, Ohio, after that season.

Topic 8

To display the top 3 original obituaries with the highest probability of containing Topic 8 and with relevant topic words bolded, we will run:

display_bolded_topic_words_in_context(topic_number=8, number_of_documents=3)
✨Topic 8✨

['music', 'band', 'jazz', 'piano', 'musical', 'sinatra', 'composer', 'goodman', 'orchestra', 'played', 'stravinsky', 'works', 'bernstein', 'concert', 'armstrong', 'playing', 'musicians', 'davis', 'style', 'opera']

✨✨✨

0.5832633448522652

1983-Earl-Hines

April 24, 1983

OBITUARY

Earl Hines, 77, Father of Modern Jazz Piano, Dies

By JON PARELES

Earl (Fatha) Hines, the father of modern jazz piano, died Friday in Oakland, Calif., after a heart attack. He was 77 years old. In his pioneering work with Louis Armstrong in the late 1920’s, Mr.

Hines virtually redefined jazz piano. With what he called ‘’trumpet style,’’ Mr. Hines played horn-like solo lines in octaves with his right hand and spurred them with chords from his left. He thus carved a place for the piano as a solo instrument outside the rhythm section and defined the roles of both hands for the next generations of jazz pianists.

Mr. Hines’s strong right hand and angular melodic ideas continued to sound contemporary throughout his career. In the 1930’s and 1940’s, he led a Chicago big band that began the careers of the singers Billy Eckstine and Sarah Vaughan and included the saxophonists Wardell Gray and Budd Johnson. That band became an incubator for be-bop in the early 1940’s, when it featured the trumpeter Dizzy Gillespie and the saxophonist Charlie

Parker.

Son of Two Musicians

Earl Hines was born in Duquesne, Pa. His father was a trumpeter and his mother played piano and organ. He took up the trumpet as a child, but began studying classical piano at the age of 9. After three years of lessons, he decided he was more interested in jazz piano, and by the time he was 15 years old he was leading his own trio.

Mr. Hines worked with big bands led by Lois B. Deppe in Pittsburgh and Carroll Dickerson and Sammy Stewart in Chicago, and in 1927 he joined a quintet led by Louis Armstrong at Chicago’s Savoy Ballroom.

With Mr. Armstrong, he made such recordings as ‘’West End Blues’’ and ‘’Weather Bird,’’ and in 1928 he recorded solos, including ‘’A Monday Date’’ and ‘’Caution Blues,’’ that established his style and have had a lasting influence on jazz piano.

Mr. Hines started his own big band in 1928 at Chicago’s Grand Terrace Ballroom, and stayed in residence there for more than a decade, although he toured for part of each year. His was one of the first black big bands to tour the South.

Thn ‘’Jelly Jelly’’ and ‘’Stormy Monday Blues.’’ Although he left the Grand Terrace in 1940, Mr. Hines led a big band nearly continuously until 1947; at one point the group included a string section composed entirely of women.

Origin of Nickname

A Chicago disk jockey called him ‘’Fatha’’ in the 1930’s and the nickname - as in ‘’Father of modern piano’’ -stayed with him. After dissolving his band, Mr. Hines worked with smaller groups. He rejoined Mr.

Armstrong from 1948 to 1951, then led his own bands. In 1957, he toured Europe with an all-star group including the trombonist Jack Teagarden, but he spent much of the 1950’s playing Dixieland jazz - music that he had not be Jack Teagarden, but he spent much of the 1950’s playing Dixieland jazz - music that he had not been a part of - on the West Coast.

He re-emerged with triumphant concerts and recordings in the early 1960’s, and was elected a member of Downbeat magazine’s jazz hall of fame in 1965. In 1966, the United States sponsored Mr. Hines’ group on a tour of the Soviet Union, where he played for 92,000 people.

Since the 1950’s, Mr. Hines had been based in the San Francisco Bay area, and he continued to tour Europe, Japan and the United States through the early 1980’s. He played his final engagement last weekend in San Francisco.

Mr. Hines is survived by a granddaughter. He was divorced from his wife, Janie, in 1980.

✨Topic 8✨

['music', 'band', 'jazz', 'piano', 'musical', 'sinatra', 'composer', 'goodman', 'orchestra', 'played', 'stravinsky', 'works', 'bernstein', 'concert', 'armstrong', 'playing', 'musicians', 'davis', 'style', 'opera']

✨✨✨

0.5747514080459104

1993-Dizzy-Gillespie

January 7, 1993

OBITUARY

Dizzy Gillespie, Who Sounded Some of Modern Jazz’s Earliest Notes, Dies at 75

By PETER WATROUS

Dizzy Gillespie, the trumpet player whose role as a founding father of modern jazz made him a major figure in 20th-century American music and whose signature moon cheeks and bent trumpet made him one of the world’s most instantly recognizable figures, died yesterday at Englewood Hospital in Englewood, N.J.

Mr. Gillespie, who was 75, had been suffering for some time from pancreatic cancer, his press agent, Virginia Wicks, said.

In a nearly 60-year career as a composer, band leader and innovative player, Mr. Gillespie cut a huge swath through the jazz world. In the early 40’s, along with the alto saxophonist Charlie (Yardbird) Parker, he initiated be-bop, the sleek, intense, high-speed revolution that has become jazz’s most enduring style. In subsequent years he incorporated Afro-Cuban music into jazz, creating a new genre from the combination.

In the naturally effervescent Mr. Gillespie, opposites existed. His playing – and he performed constantly until nearly the end of his life – was meteoric, full of virtuosic invention and deadly serious.

But with his endlessly funny asides, his huge variety of facial expressions and his natural comic gifts, he was as much a pure entertainer as an accomplished artist. In some ways, he seemed to sum up all the possibilities of American popular art.

From Carolina To the Big Bands

John Birks Gillespie was born in Cheraw, S.C., on Oct. 21, 1917. His father, a bricklayer, led a local band, and by the age of 14 the young Gillespie was practicing the trumpet. He and his family moved to Philadelphia two years later, and Mr. Gillespie, though he thought about entering Temple University, quickly began a succession of professional jobs.

He worked with Bill Doggett, the pianist and organist, who fired him for not being able to read music well enough, and then Frank Fairfax, a big-band leader whose orchestra included the trumpeter Charlie

Shavers and the clarinetist Jimmy Hamilton. Mr. Gillespie was listening to the trumpeter Roy Eldridge, copying his solos and emulating his style, and was soon performing with Teddy Hill’s band at the Savoy Ballroom on the basis of his ability to reproduce Mr. Eldridge’s style.

According to legend, it was Mr. Hill who gave Mr. Gillespie his nickname because of his odd clothing style and his fondness for practical jokes. Mr. Gillespie began cultivating his personality, putting his feet up on music stands during shows and regularly cracking jokes. But by May 1937 he was also recording improvisations with the Hill band and helping the performances by setting riffs behind soloists.

Two years later, Mr. Gillepsie was considered accomplished enough to take part in a series of all-star recordings with Lionel Hampton, Benny Carter, Coleman Hawkins, Ben Webster and Chu Berry. He soloed on “Hot Mallets.”

That year, 1939, he joined Cab Calloway’s band, one of the leading black orchestras of the era. Though a dance band, its musicians, who included the bassist Milt Hinton and the guitarist Danny Barker, liked to experiment. Mr. Gillespie would work on the harmonic substitutions that eventually became be-bop. Mr. Gillespie was a regular soloist with the band, and by then his harmonic sensibility was beginning to take shape.

Joining With Parker To Mold New Style

It was while touring with the Calloway band in 1940 that Mr. Gillespie met Charlie Parker in Kansas City. And it was with him that Mr. Gillespie began formulating the style that was eventually called be-bop. Along with a handful of other musicians, including Thelonious Monk and Kenny Clarke, Mr. Gillespie and Mr. Parker would regularly experiment.

On live recordings of the period, especially the two solos on the tune “Kerouac,” recorded in 1941 at Minton’s Uptown Playhouse, a club in Harlem, can be heard his increasing interest in harmony, sleeker rhythms and a divergence from the style of Mr. Eldridge. Mr. Gillespie was blunt about his relationship with Mr. Parker, calling him “the other side of my heartbeat,” and freely giving him credit for some of the rhythmic innovations of be-bop.

At the same time that Mr. Gillespie was experimenting with the new style, he was regularly arranging and recording for Mr. Calloway, including one of his better improvisations on “Pickin’ the

Cabbage,” a piece he composed and arranged. In September 1941, at the State Theater in Hartford, Mr. Gillespie was involved in an incident that shaped his reputation and his career. Mr. Calloway saw a spitball thrown on stage and thought Mr. Gillespie had done it; the two men fought, and Mr. Gillespie pulled a knife and put a cut in Mr. Calloway’s posterior that required 10 stitches to close.

Mr. Gillespie was fired from that job, but spent the next several years working with some of the biggest names in jazz, including Coleman Hawkins (who recorded the first version of Mr. Gillespie’s classic “Woody ‘N’ You”), Benny Carter, Les Hite (for whom he recorded “Jersey Bounce,” considered the first be-bop solo), Lucky Millinder, Earl Hines, Ella Fitzgerald and Duke Ellington. For Mr. Millinder he made “Little John Special,” which includes a riff of Mr. Gillespie’s that was later fleshed out into the composition “Salt Peanuts,” one of his best-known pieces.

The early 40’s were a turbulent time for jazz. Be-bop was slowly making itself felt, but at the same time a series of disputes between recording companies and the musicians’ union resulted in a recording ban, so Mr. Gillespie and Mr. Parker were rarely recorded. In 1943 Mr. Gillespie led a band with the be-bop bassist Oscar Pettiford at the Onyx Club on 52d Street in Manhattan. And in 1944, the singer Billy Eckstine took over part of the Earl Hines band and created the first be-bop orchestra, of which few recorded performaces exist. Mr. Gillespie was the music director, and the band featured his “Night in Tunisia.”

It was in 1945 that Mr. Gillespie began to break out. He undertook an ambitious recording schedule, recording with the pianist Clyde Hart and with Mr. Parker, Cootie Williams, Red Norvo, Sarah Vaughan and Slim Gaillard. And he began series of his own recordings that have since become some of jazz’s most important pieces.

Recording under his own name for the first time, he made “I Can’t Get Started,” “Good Bait,” “Salt Peanuts” and “Be-bop,” during one session in January 1945.

He followed it up with a recording date featuring Mr. Parker that included “Groovin’ High,” “Dizzy Atmosphere” and “All the Things You Are.”

These recordings, with their tight ensemble passages, precisely articulated rhythms and dissonance as part of the palate of jazz, were to influence jazz forever. Though Mr. Gillespie enjoyed playing for dancers, this was music that was meant first and foremost to be listened to. It was virtuosic in a way not heard before, and it was music that sent music students scurrying to their turntables to learn the improvisations by heart.

They were also the recordings that captured Mr. Gillespie at his most impressive. His lines, jagged and angular, always seemed off balance. He used chromatic figures, and was not afraid to resolve a line on a vinegary, bitter note. And his improvising was eruptive; suddenly, a line would bolt into the high register, only to come tumbling down.

Mr. Gillespie did more than just record in 1945. He put together the first of his big bands, and then formed a quintet with Mr. Parker that Mr. Gillespie called “The height of perfection in our music.” It included Bud Powell on piano, Ray Brown on bass and Max Roach on drums. Later that year, Mr. Gillespie reformed the big band, called the Hepsations of 1945. Despitea tour of the South that was almost catastrophically unsuccessful, the band stayed together for the next four years. Another Revolution: Afro-Cuban Jazz

It was with this big band, whose name became the Dizzy Gillespie Orchestra, that Mr. Gillespie created his second revolution in the late 1940’s. An old friend, the Cuban trumpeter Mario Bauza, who had made it possible for him to join the Calloway orchestra, introduced Mr. Gillespie to the Cuban conga player Luciano (Chano Pozo) Gonzales. “Dizzy used to ask me about Cuban rhythms all the time,” said Mr. Bauza. “I introduced him to Chano Pozo, and they wrote ‘Manteca.’ It was a good marriage of two cultures. That was the beginning of Afro-Cuban jazz. That blew up the whole world.”

Mr. Gillespie quickly produced the sketches for “Cubana Be” and “Cubana Bop,” which were finished by the composer and arranger George Russell and included some of the first modal harmonies in jazz. And in “Manteca,” Mr. Gillespie’s collaboration with Mr. Pozo, he created a work that is still performed and quoted regularly, by both Latin orchestras and by jazz musicians. Without the sophisticated arrangements and the conjunction of Latin rhythms and jazz harmonies that Mr. Gillespie provided, both jazz and Latin music would be radically different today.

The band’s highest moments, however, were when Mr. Gillespie – in a move that characterized his career – hired some of the young be-boppers on the scene. Among them were the pianist John Lewis, vibraphonist Milt Jackson, bassist Ray Brown and drummer Kenny Clarke, who went on to form the Modern Jazz Quartet. “It was an incredible experience because so much was going on,” Mr. Lewis recalled. “Not only was he using these great be-bop arrangements but he was so encouraging. It was my first job, a formative experience.”

Mr. Gillespie’s was the last great evolutionary big band, and during its tenure he hired the best soloists, from Jimmy Heath, James Moody and Sonny Stitt to John Coltrane and Paul Gonzalves. Arrangements like “Things to Come,” with their exhilarating precision, were be-bop and orchestral landmarks, with dense harmonies and flashy rhythms.

And it was with his big band that Mr. Gillespie fully developed the other side of his musical personality. With songs like “He Beeped When He Should Have Bopped,” “Ool Ya Koo”, “Oo

Pop A Da” and others, he began popularizing the Bohemian, Dadaesque aspects of be-bop.

Mr. Gillespie was a keen popularizer, and with his sense of comedy managed to make his shows into an extraordinary mixture of entertainment and esthetics. In so doing, he was following in the path of his ex-bandleader, Mr. Calloway, as well as Louis Armstrong and Fats Waller.

From then on, he cultivated an audience that went beyond the average jazz fan, and it was this reputation that helped in his later career. And at the same time, be-bop fashion made an appearance, with Mr. Gillespie, in thick glasses and a beret, leading the way.

The big-band business slowed down considerably in the late 1940’s and early 50’s, and Mr. Gillespie teamed with Stan Kenton’s orchestra as a featured soloist. Then he began using a small group again.

He formed his own record company in 1951, Dee Gee, which folded soon after. Mr. Gillespie and Mr. Parker recorded for Verve, with Mr. Monk, and he and Mr. Parker performed at Birdland in Manhattan the next year. He toured Europe and in 1953 joined Mr. Parker, Mr. Powell, Mr. Roach and the bassist Charles Mingus for a concert at Massey Hall in Toronto that became legendary for its disorganization and for acrimony among performers.

It was also in 1953 that someone fell on Mr. Gillespie’s trumpet, and bent it. When he played the misshapen instrument, Mr. Gillespie found he could hear the sound more clearly, and so decided to keep it. Along with those cheeks, it became his trademark.

During the 1950’s Mr. Gillespie recorded with with Stan Getz, Stuff Smith, Sonny Stitt, Mr. Eldridge and others. In 1956, he formed another big band and, at the behest of the United States State

Department, toured the Middle East and South America. In 1957, Mr. Gillespie presided over “The Eternal Triangle,” a recording that includes Mr. Stitt and Sonny Rollins and some of the hardest trumpet blowing ever recorded.

Through the 1960’s and 70’s, Mr. Gillespie toured frequently, playing up to 300 shows a year, sometimes with an electric bassist and a guitarist, sometimes with a more traditional group. And in 1974 he signed with Pablo Records and began recording prolifically again. He won Grammies in 1975 and 1980, and he published his autobiography, “To Be or Not to Bop,” in 1979.

In the last decade, Mr. Gillespie’s career seemed recharged, and he became ubiquitous on the concert circuit as a special guest. He formed a Latin big band that performed with Paquito De Rivera, among others, and he constantly shuffled the personnel of his small groups.

Last year, in honor of his 75th birthday, Mr. Gillepsie played for four weeks at the Blue Note club in Manhattan, a stint that featured perhaps the greatest selection of jazz musicians ever brought together for a tribute. The month covered his career, from small groups, to Afro-Cuban jazz to a big band. As usual, he was his witty amiable self, in command of both the audience and his trumpet.

Mr. Gillespie is survived by his wife of 52 years, Lorraine.

Seeking the Best Of a Huge Output

Dizzy Gillespie’s recorded output was immense, spanning nearly 60 years and comprising hundreds of albums. Not all of his important recordings have been issued on CD, but the vinyl versions are worth hunting for.

Afro Cuban Jazz Verve The Be-Bop Revolution RCA Bird and Diz Verve The Development of an American Artist Smithsonian Diz and Getz Verve Dizzy and the Double Six of Paris Phillips

Dizzy at Newport Verve Dizzy on the French Riviera Phillips Dizzy’s Diamonds Verve Duets Verve The Gifted Ones (with Roy Eldridge) Pablo Live at the Royal Festival

Hall Enja Oscar Peterson and Dizzy Gillespie Pablo Portrait of Duke Ellington Verve Shaw Nuff Musicraft Sonny Side Up (with Sonny Stitt) Verve

✨Topic 8✨

['music', 'band', 'jazz', 'piano', 'musical', 'sinatra', 'composer', 'goodman', 'orchestra', 'played', 'stravinsky', 'works', 'bernstein', 'concert', 'armstrong', 'playing', 'musicians', 'davis', 'style', 'opera']

✨✨✨

0.5657314588968271

1991-Miles-Davis

September 29, 1991

OBITUARY

Miles Davis, Trumpeter, Dies; Jazz Genius, 65, Defined Cool

By JON PARELES

Miles Davis, the trumpeter and composer whose haunting tone and ever-changing style made him an elusive touchstone of jazz for four decades, died yesterday at St. John’s Hospital and Health Center in Santa Monica, Calif. He was 65 years old.

He died of pneumonia, respiratory failure and a stroke, his doctor, Jeff Harris, said in a statement released by the hospital.

A spokeswoman for the hospital, Pat Kirk, said yesterday that Mr. Davis had been a patient there for several weeks.

Mr. Davis’s unmistakable, voicelike, nearly vibratoless tone – at times distant and melancholy, at others assertive yet luminous – has been imitated around the world.

His solos, whether ruminating on a whispered ballad melody or jabbing against a beat, have been models for generations of jazz musicians. Other trumpeters play faster and higher, but more than in any technical feats Mr. Davis’s influence lay in his phrasing and sense of space. “I always listen to what I can leave out,” he would say.

Equally important, Mr. Davis never settled into one style; every few years he created a new lineup and format for his groups. Each phase brought denunciations from critics; each, except for the most recent one, has set off repercussions throughout modern jazz. “I have to change,” he once said. “It’s like a curse.”

Mr. Davis came of age in the be-bop era; many successive styles – cool jazz, hard-bop, modal jazz, jazz-rock, jazz-funk – were sparked or ratified by his example. Throughout his career he was grounded in the blues, but he also drew on pop, flamenco, classical music, rock, Arab music and Indian music. Musicians he discovered often moved on to innovations of their own.

Mr. Davis was also known for a volatile personality and arrogant public pronouncements, and for a stage presence that could be charismatic or aloof. For a while, he turned his back on audiences as he played and walked offstage when he was not soloing. His public persona was flamboyant, uncompromising and fiercely independent; he drove Ferraris and Lamborghinis and did not mince words when he disliked something.

Yet his music was deeply collaborative. He spurred his sidemen to find their own musical voices and was inspired by them in turn.

Trumpet at 13

Miles Dewey Davis 3d was born May 25, 1926, in Alton, Ill., the son of an affluent dental surgeon, and grew up in East St. Louis, Ill. On his 13th birthday, he was given a trumpet and lessons with a local jazz musician, Elwood Buchanan. He got his musicians’ union card at 15 so he could perform around St. Louis with Eddie Randall’s Blue Devils.

Clark Terry, the trumpeter, one of his early idols, became Mr. Davis’s mentor, and his local reputation grew quickly. Mr. Davis’s parents made him turn down early offers to join big bands.

But in 1944 the Billy Eckstine band, which then included two men who were beginning to create be-bop – Charlie Parker on alto saxophone and Dizzy Gillespie on trumpet – arrived in St. Louis with an ailing third trumpeter. Mr. Davis sat in for two weeks. The experience made him decide to move to New York, the center of the be-bop revolution.

He enrolled in the Juilliard School of Music in September 1944, and for his first months in New York he studied classical music by day and jazz by night, in the clubs of 52d Street and Harlem. Mr. Parker, who roomed with Mr. Davis for a time, and Mr. Gillespie introduced him to the coterie of be-bop musicians. From them he learned the harmonic vocabulary of be-bop and began to forge a solo style.

Mr. Davis made his first recording in May 1945 backing up a singer, Rubberlegs Williams. He also performed in the 52d Street clubs with the saxophonists Coleman Hawkins and Eddie (Lockjaw) Davis. In the fall of that year he joined Charlie Parker’s quintet and dropped out of Juilliard. “Up at Juilliard,” Mr. Davis said later, “I played in the symphony, two notes, ‘bop-bop,’ every 90 bars, so I said, ‘Let me out of here,’ and then I left.”

With Parker’s quintet, Mr. Davis recorded one of the first be-bop sessions in November 1945. It yielded the singles “Now’s the Time” and “Koko.” For the next few years he worked primarily with Parker, and his tentative, occasionally shaky playing evolved into a pared-down, middle-register style that created a contrast with Parker’s aggressive forays. He made his first recording as a leader on Aug. 14, 1947, with a quintet that included Parker on tenor saxophone.

But Mr. Davis was moving away from the extroversion of early be-bop, and in 1948 he began to experiment with a new, more elaborately orchestrated style that would become known as “cool jazz.”

Working with the arrangers Gil Evans (a frequent collaborator throughout his career), John Lewis and Gerry Mulligan, Mr. Davis brought a nine-piece band to the Royal Roost in New York to play rich, ruminative ensemble pieces, with solos floating in diffuse clouds of harmony. Although the public showed little interest, Mr. Davis was able to record the music in 1949 and 1950, and it helped spawn a cerebral cool-jazz movement on the West Coast.

Mr. Davis became a heroin addict in the early 1950’s, performing infrequently and making erratic recordings. But in 1954 he overcame his addiction and began his first string of important small-group recordings. “Walkin’,” a swaggering blues piece informed by the extended harmonies of be-bop, turned decisively away from cool jazz and announced the arrival of hard bop. During 1954 Mr. Davis recorded with such leading musicians as the saxophonist Sonny Rollins and the pianists Horace Silver and Thelonious Monk.

Over the next year, he made a triumphant appearance at the Newport Jazz Festival and assembled his first important quintet, with John Coltrane on tenor saxophone, Red Garland on piano, Paul Chambers on bass and Philly Joe Jones on drums.

Breakthrough to Popularity

Like many of the Davis bands to follow, it seemed to be an incompatible grouping in prospect, mixing the suavity and harmonic nuances of Garland and Chambers with the forcefulness of Jones and the raw energy of Coltrane.

But it achieved a remarkable balance of delicacy and drive, with a sense of space and dynamics influenced by the pianist Ahmad Jamal’s trio, and it brought Mr. Davis his first general popularity.

The quintet recorded six albums in 1955-56, four of them in marathon sessions to fulfill Mr. Davis’s recording contract with the independent Prestige Records label so he could sign with Columbia, a major label.

In 1957 Mr. Davis had a throat operation to remove nodes from his vocal cords. Two days later he began shouting at someone who, he once said, “tried to convince me to go into a deal I didn’t want.” His voice was permanently damaged, reduced to a raspy whisper.

During the late 1950’s Mr. Davis alternated orchestral albums with Gil Evans arrangements – “Miles Ahead” (1957), “Porgy and Bess” (1958) and “Sketches of Spain” (1960) – with small-group sessions. He recorded the soundtrack for Louis Malle’s film “Ascenseur Pour l’Echafaud” (“Elevator to the Gallows”) with French musicians, then reconvened his quintet and added Julian (Cannonball) Adderley on alto saxophone. The sound track and the sextet’s first album, “Milestones,” signaled another metamorphosis, cutting back the harmonic motion of be-bop to make music with fewer chords and more ambiguous harmonies.

Mood and Melodic Tension

With “Kind of Blue” in 1959, that change was complete. Most of the pieces on “Kind of Blue” (composed by Mr. Davis or his new pianist, Bill Evans) were based on modal scales rather than chords. Mood and melodic tension became paramount, in music that was at times voluptuous and austere.

From this point onward, Mr. Davis would return often to music based on static, stripped-down harmonies. John Coltrane, among others, was to make modal jazz one of the definitive styles of the 1960’s.

The Davis group’s personnel fluctuated in the early 1960’s until Mr. Davis settled on a new quintet in 1964, with Wayne Shorter (who became the group’s main composer) on tenor saxophone,

Herbie Hancock on piano, Ron Carter on bass and Tony Williams on drums. It was one of the most important ensembles in 1960’s jazz, pushing tonal harmony to its limits and developing a dazzling rhythmic flexibility.

On the albums “E.S.P.,” “Miles Smiles,” “The Sorcerer” and “Nefertiti,” the group could swing furiously, then open up unexpected spaces or dissolve the beat into abstract waves of sound. The quintet defined an exploratory alternative to 1960’s free jazz. The four sidemen also recorded prolifically on their own, extending the quintet’s influence.

Branching Into Rock Rhythms

Mr. Davis had touched on rock rhythms in one selection on “E.S.P.,” but with the 1968 albums “Miles in the Sky” and “Filles de Kilimanjaro,” he began to experiment more seriously with rock rhythms, repeating bass lines and electronic instruments. He also began to work with open-ended compositions, based on rhythmic feeling, fragments of melody or bass patterns and his own on-the-spot directives.

Mr. Davis expanded the group on “In a Silent Way” (1969) with three electric keyboards and electric guitar. Using static harmonics and a rock undercurrent, the music was eerie and reflective, at once abstract and grounded by the beat. “Bitches Brew” (1969), recorded by a larger group – trumpeter, soprano saxophonist, bass clarinetist, two bassists, two or three keyboardists, three drummers and a percussionist – was an aggressive, spooky sequel, roiling and churning with improvisations in every register.

The two albums, along with performances at the Fillmore East and Fillmore West rock auditoriums, brought Mr. Davis’s music to the rock audience; “Bitches Brew” became a best-selling album.

Musicians who had worked with Mr. Davis from 1968-70 went on to lead the pioneering jazz-rock groups – the Mahavishnu Orchestra, Tony Williams Lifetime, Weather Report and Return to Forever.

Reaching Young Blacks

Mr. Davis, meanwhile, was turning from rock toward funk; in interviews at the time, he talked about reaching young black audiences. His bands in the 1970’s were anchored by a bassist, Michael Henderson, who had worked with Stevie Wonder, and they moved percussion and syncopated bass lines into the foreground. Around them, keyboards, saxophone, guitars and Mr. Davis’s trumpet (now electrified, and often played through a wah-wah pedal) supplied rhythmic and textural effects as well as solos. “On the Corner” (1972), which also used Indian tabla drums and sitar, marked the change, and a pair of live albums, “Dark Magus” and “Pangaea,” were even more jolting. Conventional melody and harmony had been virtually abandoned; the music was a thicket of rhythms and electronic textures. Critical reaction at the time was mixed, but those albums became an inspiration to the late-1970’s “no wave” noise-rockers and a new generation of funk experimenters in the 1980’s.

By the end of 1975 mounting medical problems – among them ulcers, throat nodes, hip surgery and bursitis – forced Mr. Davis into a five-year retirement. In 1981 he returned with an album, “The

Man With the Horn,” a Kool Jazz Festival concert in New York and a band featuring Robert Irving 3d as keyboardist and co-producer.

Although Mr. Davis’s technique was intact, the music seemed for the first time to involve commercial calculations and a look backward at Mr. Davis’s previous styles; he even played pop songs.

With “You’re Under Arrest” (1985), “Tutu” (1986) and “Music From Siesta” (1988), he recorded the music layer by layer, like pop albums, instead of leading musicians in live interaction. But on stage and on record, especially on the blues-oriented “Star People” (1983), there were still moments of the fierce beauty that is Mr. Davis’s lasting legacy to American music.

His last New York performance was in June as part of a double bill with B. B. King in the JVC Jazz Festival. In a review in The New York Times, Peter Watrous called the performance “a particularly bad night” for Mr. Davis. “The problem seemed simple,” Mr. Watrous wrote. “Mr. Davis was incapable of sustaining more than a few notes at a time; the spareness seemed less an editorial decision than a decision handed down by physical constraints.”

Mr. Davis was married three times, to the dancer Frances Taylor, singer Betty Mabry and the actress Cicely Tyson. All ended in divorce. Survivors include a daughter, Cheryl; three sons, Gregory, Miles

IV and Erin, and several grandchildren.

Memorial services are being planned in New York City and East St. Louis, said Ms. Kirk at the hospital.


Your Turn!#

Choose a topic from the results above and write down its corresponding topic number below.

Topic: Your Number Choice Here

1. Display the top 6 obituary titles for this topic.

2. Display the topic words in the context of the original obituary for these 6 top titles.

3. Come up with a label for your topic and write it below:

Reflection

4. Why did you label your topic the way you did? What do you think this topic means in the context of all the NYT obituaries?

5. What’s another collection of texts that you think might be interesting to topic model? Why?