# Loading the required packages
library(httr)
library(jsonlite)
library(tidyverse)
## Warning: package 'tidyr' was built under R version 4.3.2
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.5
## ✔ forcats 1.0.0 ✔ stringr 1.5.1
## ✔ ggplot2 3.4.4 ✔ tibble 3.2.1
## ✔ lubridate 1.9.3 ✔ tidyr 1.3.1
## ✔ purrr 1.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ purrr::flatten() masks jsonlite::flatten()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(dplyr)
# Obtaining the url and accesing it using the API Key
most_popular_url<- "https://api.nytimes.com/svc/mostpopular/v2/viewed/1.json?api-key=hx6i1GhbxcgLuxcrRtAvJ55ABmlPG4Ez"
most_popular_articles<- GET(most_popular_url)
str(most_popular_articles)
## List of 10
## $ url : chr "https://api.nytimes.com/svc/mostpopular/v2/viewed/1.json?api-key=hx6i1GhbxcgLuxcrRtAvJ55ABmlPG4Ez"
## $ status_code: int 200
## $ headers :List of 25
## ..$ date : chr "Sat, 23 Mar 2024 19:42:43 GMT"
## ..$ content-type : chr "application/json; charset=utf-8"
## ..$ transfer-encoding : chr "chunked"
## ..$ connection : chr "keep-alive"
## ..$ cache-control : chr "max-age=60"
## ..$ x-nyt-most-popular-values : chr "VIEWED 1"
## ..$ x-request-id : chr "f4ea3235-f61f-4b7e-90d2-359263dba35b"
## ..$ x-envoy-upstream-service-time: chr "16"
## ..$ server : chr "envoy"
## ..$ content-encoding : chr "gzip"
## ..$ x-envoy-decorator-operation : chr "trending-api.publishing.nyti.nyt.net:443/*"
## ..$ accept-ranges : chr "bytes"
## ..$ via : chr "1.1 varnish"
## ..$ age : chr "0"
## ..$ x-served-by : chr "cache-iad-kcgs7200137-IAD"
## ..$ x-cache : chr "MISS"
## ..$ x-cache-hits : chr "0"
## ..$ x-timer : chr "S1711222963.151099,VS0,VE23"
## ..$ vary : chr "Accept-Encoding"
## ..$ x-nyt-mktg-group : chr "group1"
## ..$ access-control-allow-origin : chr "*"
## ..$ access-control-allow-headers : chr "Accept, Content-Type, X-Forwarded-For, X-Prototype-Version, X-Requested-With"
## ..$ access-control-expose-headers: chr "Content-Length, X-JSON"
## ..$ access-control-allow-methods : chr "GET, OPTIONS"
## ..$ strict-transport-security : chr "max-age=63072000; preload; includeSubdomains"
## ..- attr(*, "class")= chr [1:2] "insensitive" "list"
## $ all_headers:List of 1
## ..$ :List of 3
## .. ..$ status : int 200
## .. ..$ version: chr "HTTP/1.1"
## .. ..$ headers:List of 25
## .. .. ..$ date : chr "Sat, 23 Mar 2024 19:42:43 GMT"
## .. .. ..$ content-type : chr "application/json; charset=utf-8"
## .. .. ..$ transfer-encoding : chr "chunked"
## .. .. ..$ connection : chr "keep-alive"
## .. .. ..$ cache-control : chr "max-age=60"
## .. .. ..$ x-nyt-most-popular-values : chr "VIEWED 1"
## .. .. ..$ x-request-id : chr "f4ea3235-f61f-4b7e-90d2-359263dba35b"
## .. .. ..$ x-envoy-upstream-service-time: chr "16"
## .. .. ..$ server : chr "envoy"
## .. .. ..$ content-encoding : chr "gzip"
## .. .. ..$ x-envoy-decorator-operation : chr "trending-api.publishing.nyti.nyt.net:443/*"
## .. .. ..$ accept-ranges : chr "bytes"
## .. .. ..$ via : chr "1.1 varnish"
## .. .. ..$ age : chr "0"
## .. .. ..$ x-served-by : chr "cache-iad-kcgs7200137-IAD"
## .. .. ..$ x-cache : chr "MISS"
## .. .. ..$ x-cache-hits : chr "0"
## .. .. ..$ x-timer : chr "S1711222963.151099,VS0,VE23"
## .. .. ..$ vary : chr "Accept-Encoding"
## .. .. ..$ x-nyt-mktg-group : chr "group1"
## .. .. ..$ access-control-allow-origin : chr "*"
## .. .. ..$ access-control-allow-headers : chr "Accept, Content-Type, X-Forwarded-For, X-Prototype-Version, X-Requested-With"
## .. .. ..$ access-control-expose-headers: chr "Content-Length, X-JSON"
## .. .. ..$ access-control-allow-methods : chr "GET, OPTIONS"
## .. .. ..$ strict-transport-security : chr "max-age=63072000; preload; includeSubdomains"
## .. .. ..- attr(*, "class")= chr [1:2] "insensitive" "list"
## $ cookies :'data.frame': 0 obs. of 7 variables:
## ..$ domain : logi(0)
## ..$ flag : logi(0)
## ..$ path : logi(0)
## ..$ secure : logi(0)
## ..$ expiration: 'POSIXct' num(0)
## ..$ name : logi(0)
## ..$ value : logi(0)
## $ content : raw [1:34816] 7b 22 73 74 ...
## $ date : POSIXct[1:1], format: "2024-03-23 19:42:43"
## $ times : Named num [1:6] 0 0.00334 0.03564 0.11444 0.39913 ...
## ..- attr(*, "names")= chr [1:6] "redirect" "namelookup" "connect" "pretransfer" ...
## $ request :List of 7
## ..$ method : chr "GET"
## ..$ url : chr "https://api.nytimes.com/svc/mostpopular/v2/viewed/1.json?api-key=hx6i1GhbxcgLuxcrRtAvJ55ABmlPG4Ez"
## ..$ headers : Named chr "application/json, text/xml, application/xml, */*"
## .. ..- attr(*, "names")= chr "Accept"
## ..$ fields : NULL
## ..$ options :List of 2
## .. ..$ useragent: chr "libcurl/8.4.0 r-curl/5.2.0 httr/1.4.7"
## .. ..$ httpget : logi TRUE
## ..$ auth_token: NULL
## ..$ output : list()
## .. ..- attr(*, "class")= chr [1:2] "write_memory" "write_function"
## ..- attr(*, "class")= chr "request"
## $ handle :Class 'curl_handle' <externalptr>
## - attr(*, "class")= chr "response"
most_popular_articles$status_code
## [1] 200
# Getting the raw data from the JSON file, converting it to the type character, and saving it into a data frame
article_content <- content(most_popular_articles, as = "raw")
character_version <- rawToChar(article_content)
ja <- jsonlite::fromJSON(character_version, flatten = TRUE)
most_popular_articles_data_frame <- data.frame(ja)
most_popular_articles_data_frame
## status copyright
## 1 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 2 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 3 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 4 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 5 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 6 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 7 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 8 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 9 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 10 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 11 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 12 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 13 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 14 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 15 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 16 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 17 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 18 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 19 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## 20 OK Copyright (c) 2024 The New York Times Company. All Rights Reserved.
## num_results results.uri
## 1 20 nyt://article/22072f09-d98b-5fb7-9183-c84e022ca272
## 2 20 nyt://article/942c7fb0-a320-51c0-8f47-651d192f1619
## 3 20 nyt://article/7bc8fb0f-791d-52e5-83a9-ed78b0d129a7
## 4 20 nyt://interactive/4a128565-0444-5a47-b28d-3742cd10e0b2
## 5 20 nyt://article/3e5f7072-8e04-5d6b-bbc8-c50f500a42d2
## 6 20 nyt://article/1f072298-90ee-5327-8538-3a892f5728c4
## 7 20 nyt://article/b5557520-373f-57e2-aa1c-0f8ccb9b8d76
## 8 20 nyt://article/4f86a24e-8efd-570a-9ac8-43fae71f3b40
## 9 20 nyt://article/8bf2376e-59ed-5c9c-ac2f-1d7e18c30e82
## 10 20 nyt://article/60f7597e-8264-52d6-aad4-fba0bcf54027
## 11 20 nyt://article/5466fe70-f8f9-5543-9482-f9830c4164e2
## 12 20 nyt://article/d10d7d61-ce13-51d2-8294-aef6357bb947
## 13 20 nyt://article/75bc35c8-0afa-5003-a34f-9a8bfded3b6f
## 14 20 nyt://article/2486c98b-783d-510c-aa78-f199a4e57c39
## 15 20 nyt://article/89067282-c4e3-565a-9f7b-d138d138ff50
## 16 20 nyt://article/0670b049-30f8-5973-bb41-83bd8735e158
## 17 20 nyt://article/bf593658-4612-517f-9a45-82e3beac900d
## 18 20 nyt://article/ebff25bf-948c-55aa-b78a-ff9d7b89dd1b
## 19 20 nyt://article/b73fe537-09a0-5d8b-b758-245b52053181
## 20 20 nyt://article/138ca54c-0eb2-53df-bdd6-bee6e9da97cc
## results.url
## 1 https://www.nytimes.com/2024/03/22/opinion/kate-middleton-princess-cancer.html
## 2 https://www.nytimes.com/2024/03/20/well/live/basal-cell-carcinoma-skin-cancer.html
## 3 https://www.nytimes.com/2024/03/21/us/ghost-army-gold-medal.html
## 4 https://www.nytimes.com/interactive/2024/03/22/upshot/flashback.html
## 5 https://www.nytimes.com/2024/03/22/opinion/supreme-court-legitimacy-trump.html
## 6 https://www.nytimes.com/2024/03/22/world/europe/kate-middleton-cancer-statement.html
## 7 https://www.nytimes.com/2024/03/21/us/arkansas-airport-director-bryan-malinowski.html
## 8 https://www.nytimes.com/article/princess-kate-middleton-royal-family-timeline.html
## 9 https://www.nytimes.com/2024/03/22/arts/design/joan-jonas-cape-breton-canada.html
## 10 https://www.nytimes.com/2024/03/21/climate/republican-attacks-electric-vehicles.html
## 11 https://www.nytimes.com/2024/03/20/us/angela-chao-car-crash.html
## 12 https://www.nytimes.com/2024/03/22/us/politics/congress-spending-bill-government-shutdown.html
## 13 https://www.nytimes.com/2024/03/22/world/europe/isis-moscow-attack-concert-hall.html
## 14 https://www.nytimes.com/2024/03/21/style/kate-middleton-lookalike-heidi-agan.html
## 15 https://www.nytimes.com/2024/03/22/opinion/senate-republicans-trump.html
## 16 https://www.nytimes.com/2024/03/18/style/kristen-stewart-love-lies-bleeding.html
## 17 https://www.nytimes.com/2024/03/23/world/europe/what-we-know-kate-catherine-princess-wales-cancer.html
## 18 https://www.nytimes.com/2024/03/22/us/politics/house-republican-majority-mike-gallagher.html
## 19 https://www.nytimes.com/article/total-solar-eclipse.html
## 20 https://www.nytimes.com/2024/03/23/us/congress-spending-bill-johnson-far-right.html
## results.id results.asset_id results.source results.published_date
## 1 1e+14 1e+14 New York Times 2024-03-22
## 2 1e+14 1e+14 New York Times 2024-03-20
## 3 1e+14 1e+14 New York Times 2024-03-21
## 4 1e+14 1e+14 New York Times 2024-03-22
## 5 1e+14 1e+14 New York Times 2024-03-22
## 6 1e+14 1e+14 New York Times 2024-03-22
## 7 1e+14 1e+14 New York Times 2024-03-21
## 8 1e+14 1e+14 New York Times 2024-03-11
## 9 1e+14 1e+14 New York Times 2024-03-22
## 10 1e+14 1e+14 New York Times 2024-03-21
## 11 1e+14 1e+14 New York Times 2024-03-20
## 12 1e+14 1e+14 New York Times 2024-03-22
## 13 1e+14 1e+14 New York Times 2024-03-22
## 14 1e+14 1e+14 New York Times 2024-03-21
## 15 1e+14 1e+14 New York Times 2024-03-22
## 16 1e+14 1e+14 New York Times 2024-03-18
## 17 1e+14 1e+14 New York Times 2024-03-23
## 18 1e+14 1e+14 New York Times 2024-03-22
## 19 1e+14 1e+14 New York Times 2024-03-22
## 20 1e+14 1e+14 New York Times 2024-03-23
## results.updated results.section results.subsection results.nytdsection
## 1 2024-03-23 09:30:01 Opinion opinion
## 2 2024-03-22 17:57:17 Well Live well
## 3 2024-03-22 12:54:55 U.S. u.s.
## 4 2024-03-22 21:14:38 The Upshot the upshot
## 5 2024-03-23 13:55:32 Opinion opinion
## 6 2024-03-22 15:09:58 World Europe world
## 7 2024-03-22 07:28:34 U.S. u.s.
## 8 2024-03-22 17:02:16 World Europe world
## 9 2024-03-22 13:46:40 Arts Art & Design arts
## 10 2024-03-21 21:35:32 Climate climate
## 11 2024-03-21 11:53:33 U.S. u.s.
## 12 2024-03-23 09:13:44 U.S. Politics u.s.
## 13 2024-03-23 12:28:04 World Europe world
## 14 2024-03-22 12:53:56 Style style
## 15 2024-03-23 13:48:54 Opinion opinion
## 16 2024-03-20 22:58:47 Style style
## 17 2024-03-23 07:15:16 World Europe world
## 18 2024-03-23 11:22:28 U.S. Politics u.s.
## 19 2024-03-23 12:43:55 Science science
## 20 2024-03-23 10:55:50 U.S. u.s.
## results.adx_keywords
## 1 Royal Families;News and News Media;Rumors and Misinformation;Privacy;Catherine, Princess of Wales;Charles III, King of the United Kingdom;William, Prince of Wales;Harry, Duke of Sussex;Markle, Meghan;Great Britain
## 2 Skin Cancer;Skin;Suntan;Cancer;Sunscreen;Melanomas;Disease Rates;Simmons, Richard
## 3 World War II (1939-45);United States Defense and Military Forces;Defense and Military Forces;Veterans;Biden, Joseph R Jr;United States Army
## 4 internal-paywall-exempt;Content Type: Quiz
## 5 Decisions and Verdicts;United States Politics and Government;Conservatism (US Politics);Federal-State Relations (US);Polls and Public Opinion;Supreme Court (US)
## 6 Catherine, Princess of Wales;Buckingham Palace
## 7 Firearms;Attacks on Police;Police Brutality, Misconduct and Shootings;Deaths (Fatalities);Malinowski, Bryan (d 2024);Bureau of Alcohol, Tobacco, Firearms and Explosives;Clinton, Bill and Hillary, National Airport;Little Rock (Ark)
## 8 Royal Families;Apologies;Charles III, King of the United Kingdom;William, Prince of Wales;Charlotte, Princess of Cambridge;Catherine, Princess of Wales;Buckingham Palace;Kensington Palace
## 9 Art;Content Type: Personal Profile;Performance Art;Photography;Jonas, Joan;Coulson, Toby;Cape Breton (Nova Scotia)
## 10 Global Warming;Greenhouse Gas Emissions;Automobiles;Electric and Hybrid Vehicles;United States Politics and Government;Presidential Election of 2024;Environment;Air Pollution;Biden, Joseph R Jr;Trump, Donald J;Environmental Protection Agency
## 11 Drunken and Reckless Driving;Drownings;Deaths (Fatalities);Chao, Angela;Blanco (Tex)
## 12 Federal Budget (US);Law and Legislation;United States Politics and Government;Shutdowns (Institutional);Johnson, Mike (1972- );House of Representatives;Senate;Democratic Party;Republican Party
## 13 Moscow Concert Hall Shooting (March 2024);Terrorism;Espionage and Intelligence Services;Islamic State Khorasan;Moscow (Russia)
## 14 Conspiracy Theories;Royal Families;Labor and Jobs;Cyberharassment;Impersonators and Impressionists (Entertainment);Catherine, Princess of Wales;Great Britain
## 15 Elections, Senate;States (US);Presidential Election of 2024;United States Politics and Government;Right-Wing Extremism and Alt-Right;Daines, Steve;Republican Party;Senate;National Republican Senatorial Committee
## 16 Fashion and Apparel;Women and Girls;Lingerie and Underwear;Actors and Actresses;your-feed-fashion;Stewart, Kristen
## 17 Chemotherapy;Cancer;Royal Families;Catherine, Princess of Wales;Kensington Palace;Great Britain
## 18 United States Politics and Government;Appointments and Executive Changes;Gallagher, Mike (1984- );Johnson, Mike (1972- );Republican Party;House of Representatives;Democratic Party
## 19 Eclipses;Space and Astronomy;Content Type: Service;Sun;Moon;Earth;North America
## 20 United States Politics and Government;Federal Budget (US);Johnson, Mike (1972- );Greene, Marjorie Taylor (1974- );House of Representatives;House Freedom Caucus
## results.column results.byline results.type
## 1 NA By Maureen Dowd Article
## 2 NA By Dani Blum Article
## 3 NA By John Ismay Article
## 4 NA Interactive
## 5 NA By Jamelle Bouie Article
## 6 NA By The New York Times Article
## 7 NA By Eduardo Medina Article
## 8 NA By Derrick Bryson Taylor Article
## 9 NA By Rachel Sherman Article
## 10 NA By Coral Davenport, Lisa Friedman and Jack Ewing Article
## 11 NA By Michael Levenson Article
## 12 NA By Catie Edmondson Article
## 13 NA By Julian E. Barnes and Eric Schmitt Article
## 14 NA By Madison Malone Kircher Article
## 15 NA By Michelle Cottle Article
## 16 NA By Vanessa Friedman Article
## 17 NA By Isabella Kwai Article
## 18 NA By Annie Karni Article
## 19 NA By Katrina Miller Article
## 20 NA By Carl Hulse Article
## results.title
## 1 Kate and the King
## 2 How to Recognize the Most Common Form of Skin Cancer
## 3 At Long Last, a Gold Medal for America’s World War II ‘Ghost Army’
## 4 Flashback: Your Weekly History Quiz, March 23, 2024
## 5 The Supreme Court Is Playing a Dangerous Game
## 6 Read Catherine’s Full Statement on Her Cancer Diagnosis
## 7 Arkansas Airport Executive Dies After Shootout With A.T.F.
## 8 Princess Kate’s Cancer: A Timeline of the Last Few Months
## 9 Joan Jonas on Her Island of Wonder
## 10 Inside the Republican Attacks on Electric Vehicles
## 11 Angela Chao Was Intoxicated When She Died in Car Wreck, Police Report Shows
## 12 Congress Passes Spending Bill in Wee Hours to Fend Off Shutdown
## 13 U.S. Says ISIS Was Responsible for Deadly Moscow Concert Hall Attack
## 14 This Is Not Princess Catherine
## 15 Why Control of the Senate Hinges on Don Jr.’s Hunting Buddy
## 16 Kristen Stewart Uses Naked Dressing to Make a Point
## 17 What We Know About Catherine, Princess of Wales’s Cancer Diagnosis
## 18 As More Members Leave, House G.O.P. Will Be Able to Spare Just 1 Vote
## 19 A Total Solar Eclipse Is Coming. Here’s What You Need to Know.
## 20 The Far Right Lost Badly and Wants Its Revenge
## results.abstract
## 1 Cancer is a very personal thing, but the 42-year-old princess is a public figure saddled with an insatiable press corps.
## 2 The fitness celebrity Richard Simmons said he was treated for basal cell carcinoma. Here’s how to recognize and prevent it.
## 3 Only seven of the original 1,100 soldiers who carried out psychological operations against the Axis powers are believed to survive.
## 4 Can you sort 8 historical events?
## 5 The justices are betting that they can’t be held to account.
## 6 The princess asked for privacy as she undergoes treatment, and said that “it has been an incredibly tough couple of months for our entire family.”
## 7 The authorities said they were executing a search warrant at the home of the executive, whom they accused of illegally selling firearms. His family said the action was unnecessary.
## 8 After months of speculation about her whereabouts, Catherine, Princess of Wales, announced that she is being treated for an undisclosed type of cancer.
## 9 For 50 years the artist has found inspiration for storytelling videos and installations on Cape Breton Island. Her nephew Toby Coulson set out to capture the magic.
## 10 President Biden’s new rule cutting emissions from vehicle tailpipes has deepened a partisan battle over automotive technology.
## 11 The Blanco County Sheriff’s Office in Texas called the Feb. 10 episode, in which the shipping executive drove her Tesla into a pond at a family ranch, an “unfortunate accident.”
## 12 After hours of delay, the Senate overwhelmingly voted for the $1.2 trillion bill to fund more than half of the government, sending the measure to President Biden’s desk.
## 13 After a period of relative quiet, the Islamic State has been trying to increase its external attacks, according to U.S. counterterrorism officials.
## 14 A royal look-alike clears the air on a recent conspiracy theory.
## 15 Senate Republicans may win back the chamber in November because they finally learned some lessons from election losses.
## 16 Her press tour for “Love Lies Bleeding” was something to see.
## 17 The princess said that the cancer had been discovered after abdominal surgery and that she was receiving “preventative chemotherapy.”
## 18 The unexpectedly early departure next month of Representative Mike Gallagher of Wisconsin came shortly after Speaker Mike Johnson had said he believed “that’s the end of the exits for now.”
## 19 These are answers to common questions about the April 8 eclipse, and we’re offering you a place to pose more of them.
## 20 Bipartisan spending legislation approved by Congress represented a major defeat for ultraconservatives, who immediately turned on Speaker Mike Johnson.
## results.des_facet
## 1 Royal Families, News and News Media, Rumors and Misinformation, Privacy
## 2 Skin Cancer, Skin, Suntan, Cancer, Sunscreen, Melanomas, Disease Rates
## 3 World War II (1939-45), United States Defense and Military Forces, Defense and Military Forces, Veterans
## 4 internal-paywall-exempt, Content Type: Quiz
## 5 Decisions and Verdicts, United States Politics and Government, Conservatism (US Politics), Federal-State Relations (US), Polls and Public Opinion
## 6
## 7 Firearms, Attacks on Police, Police Brutality, Misconduct and Shootings, Deaths (Fatalities)
## 8 Royal Families, Apologies
## 9 Art, Content Type: Personal Profile, Performance Art, Photography
## 10 Global Warming, Greenhouse Gas Emissions, Automobiles, Electric and Hybrid Vehicles, United States Politics and Government, Presidential Election of 2024, Environment, Air Pollution
## 11 Drunken and Reckless Driving, Drownings, Deaths (Fatalities)
## 12 Federal Budget (US), Law and Legislation, United States Politics and Government, Shutdowns (Institutional)
## 13 Moscow Concert Hall Shooting (March 2024), Terrorism, Espionage and Intelligence Services
## 14 Conspiracy Theories, Royal Families, Labor and Jobs, Cyberharassment, Impersonators and Impressionists (Entertainment)
## 15 Elections, Senate, States (US), Presidential Election of 2024, United States Politics and Government, Right-Wing Extremism and Alt-Right
## 16 Fashion and Apparel, Women and Girls, Lingerie and Underwear, Actors and Actresses, your-feed-fashion
## 17 Chemotherapy, Cancer, Royal Families
## 18 United States Politics and Government, Appointments and Executive Changes
## 19 Eclipses, Space and Astronomy, Content Type: Service, Sun, Moon, Earth
## 20 United States Politics and Government, Federal Budget (US)
## results.org_facet
## 1
## 2
## 3 United States Army
## 4
## 5 Supreme Court (US)
## 6 Buckingham Palace
## 7 Bureau of Alcohol, Tobacco, Firearms and Explosives, Clinton, Bill and Hillary, National Airport
## 8 Buckingham Palace, Kensington Palace
## 9
## 10 Environmental Protection Agency
## 11
## 12 House of Representatives, Senate, Democratic Party, Republican Party
## 13 Islamic State Khorasan
## 14
## 15 Republican Party, Senate, National Republican Senatorial Committee
## 16
## 17 Kensington Palace
## 18 Republican Party, House of Representatives, Democratic Party
## 19
## 20 House of Representatives, House Freedom Caucus
## results.per_facet
## 1 Catherine, Princess of Wales, Charles III, King of the United Kingdom, William, Prince of Wales, Harry, Duke of Sussex, Markle, Meghan
## 2 Simmons, Richard
## 3 Biden, Joseph R Jr
## 4
## 5
## 6 Catherine, Princess of Wales
## 7 Malinowski, Bryan (d 2024)
## 8 Charles III, King of the United Kingdom, William, Prince of Wales, Charlotte, Princess of Cambridge, Catherine, Princess of Wales
## 9 Jonas, Joan, Coulson, Toby
## 10 Biden, Joseph R Jr, Trump, Donald J
## 11 Chao, Angela
## 12 Johnson, Mike (1972- )
## 13
## 14 Catherine, Princess of Wales
## 15 Daines, Steve
## 16 Stewart, Kristen
## 17 Catherine, Princess of Wales
## 18 Gallagher, Mike (1984- ), Johnson, Mike (1972- )
## 19
## 20 Johnson, Mike (1972- ), Greene, Marjorie Taylor (1974- )
## results.geo_facet
## 1 Great Britain
## 2
## 3
## 4
## 5
## 6
## 7 Little Rock (Ark)
## 8
## 9 Cape Breton (Nova Scotia)
## 10
## 11 Blanco (Tex)
## 12
## 13 Moscow (Russia)
## 14 Great Britain
## 15
## 16
## 17 Great Britain
## 18
## 19 North America
## 20
## results.media
## 1 image, photo, , Max Mumby/Indigo, via Getty Images, 1, https://static01.nyt.com/images/2024/03/22/opinion/22dowd-promo/22dowd-promo-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/opinion/22dowd-promo/22dowd-promo-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/opinion/22dowd-promo/22dowd-promo-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 2 image, photo, , Getty Images, 1, https://static01.nyt.com/images/2024/03/26/well/WELL-BASAL-CELL1/WELL-BASAL-CELL1-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/26/well/WELL-BASAL-CELL1/WELL-BASAL-CELL1-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/26/well/WELL-BASAL-CELL1/WELL-BASAL-CELL1-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 3 image, photo, Members of the unit, including Mr. Nussenbaum, in a white T-shirt, and Mr. Bluestein, in the back of the truck. , Ghost Army Legacy Project, 1, https://static01.nyt.com/images/2024/03/21/us/politics/21dc-ghost-army-troops/21dc-ghost-army-troops-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/21/us/politics/21dc-ghost-army-troops/21dc-ghost-army-troops-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/21/us/politics/21dc-ghost-army-troops/21dc-ghost-army-troops-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 4 image, , , , 1, https://static01.nyt.com/images/2024/03/22/upshot/flashback-promo/flashback-promo-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/upshot/flashback-promo/flashback-promo-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/upshot/flashback-promo/flashback-promo-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 5 image, photo, , Christopher Lee for The New York Times, 1, https://static01.nyt.com/images/2024/03/24/multimedia/22bouie-gvtk/22bouie-gvtk-thumbStandard-v2.jpg, https://static01.nyt.com/images/2024/03/24/multimedia/22bouie-gvtk/22bouie-gvtk-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/24/multimedia/22bouie-gvtk/22bouie-gvtk-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 6 image, photo, Catherine, the princess of Wales, speaking on Friday., Aaron Chown/Press Association, via Associated Press, 1, https://static01.nyt.com/images/2024/03/22/multimedia/22kate-cancer-live-mood-zwlb/22kate-cancer-live-mood-zwlb-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22kate-cancer-live-mood-zwlb/22kate-cancer-live-mood-zwlb-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22kate-cancer-live-mood-zwlb/22kate-cancer-live-mood-zwlb-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 7 image, photo, A.T.F. agents near the scene of a fatal shootout with an airport executive in Little Rock, Ark., this week., KARK, 1, https://static01.nyt.com/images/2024/03/21/multimedia/21NAT-ARKANSAS-RAID/21NAT-ARKANSAS-RAID-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/21/multimedia/21NAT-ARKANSAS-RAID/21NAT-ARKANSAS-RAID-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/21/multimedia/21NAT-ARKANSAS-RAID/21NAT-ARKANSAS-RAID-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 8 image, photo, In a pre-recorded video, Catherine, The Princess of Wales, said she had been diagnosed with cancer., BBC Studios, via Getty Images, 1, https://static01.nyt.com/images/2024/04/11/multimedia/11xp-katetimeline-01-hgzv/11xp-katetimeline-01-hgzv-thumbStandard.jpg, https://static01.nyt.com/images/2024/04/11/multimedia/11xp-katetimeline-01-hgzv/11xp-katetimeline-01-hgzv-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/04/11/multimedia/11xp-katetimeline-01-hgzv/11xp-katetimeline-01-hgzv-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 9 image, photo, Joan Jonas wearing a mask on the porch of her home in Cape Breton, Nova Scotia, where she spends her summers. The artist collects handmade objects as props for her work and home, including this collection of miniature wooden houses., Toby Coulson, 0, https://static01.nyt.com/images/2024/03/24/multimedia/24jonas-nova-scotia-final1/24jonas-nova-scotia-final1-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/24/multimedia/24jonas-nova-scotia-final1/24jonas-nova-scotia-final1-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/24/multimedia/24jonas-nova-scotia-final1/24jonas-nova-scotia-final1-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 10 image, photo, , Pete Kiehart for The New York Times, 1, https://static01.nyt.com/images/2024/03/21/multimedia/21cli-evwars-promo-fpqk/21cli-evwars-promo-fpqk-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/21/multimedia/21cli-evwars-promo-fpqk/21cli-evwars-promo-fpqk-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/21/multimedia/21cli-evwars-promo-fpqk/21cli-evwars-promo-fpqk-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 11 image, photo, Angela Chao with her husband, Jim Breyer, at the AFI Awards Luncheon in Los Angeles in January., Frazer Harrison/Getty Images, 1, https://static01.nyt.com/images/2024/03/20/multimedia/20xp-chao/20xp-chao-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/20/multimedia/20xp-chao/20xp-chao-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/20/multimedia/20xp-chao/20xp-chao-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 12 image, photo, “Democracy is messy,” Speaker Mike Johnson said on Thursday., Kent Nishimura for The New York Times, 1, https://static01.nyt.com/images/2024/03/22/multimedia/22dc-spend-sub/22dc-johnson-hgtk-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22dc-spend-sub/22dc-johnson-hgtk-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22dc-spend-sub/22dc-johnson-hgtk-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 13 NULL
## 14 image, photo, Heidi Agan, a 43-year-old British brunette, has earned her living partly from her uncanny resemblance to Catherine, Princess of Wales. , Heidi Agan, 1, https://static01.nyt.com/images/2024/03/21/fashion/21KATE-LOOKALIKE/21KATE-LOOKALIKE-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/21/fashion/21KATE-LOOKALIKE/21KATE-LOOKALIKE-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/21/fashion/21KATE-LOOKALIKE/21KATE-LOOKALIKE-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 15 image, photo, Steve Daines is considered a reliable supporter Trump and was an early Senate endorser of Trump’s 2024 run for president., Drew Angerer/Getty Images, 1, https://static01.nyt.com/images/2024/03/23/multimedia/22cottle1-fpbz/22cottle1-fpbz-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/23/multimedia/22cottle1-fpbz/22cottle1-fpbz-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/23/multimedia/22cottle1-fpbz/22cottle1-fpbz-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 16 image, photo, Kristen Stewart, pantsless at the Los Angeles premiere of “Love Lies Bleeding.”, Emma Mcintyre/Getty Images, 1, https://static01.nyt.com/images/2024/03/15/multimedia/KRISTEN-STWEART-jbct-promo/KRISTEN-STWEART-jbct-promo-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/15/multimedia/KRISTEN-STWEART-jbct-promo/KRISTEN-STWEART-jbct-promo-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/15/multimedia/KRISTEN-STWEART-jbct-promo/KRISTEN-STWEART-jbct-promo-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 17 image, photo, The statement from Catherine, Princess of Wales, about her cancer diagnosis dominated the newspaper front pages in Britain., Toby Melville/Reuters, 1, https://static01.nyt.com/images/2024/03/23/multimedia/23wwk-kate-gtkh/23wwk-kate-gtkh-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/23/multimedia/23wwk-kate-gtkh/23wwk-kate-gtkh-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/23/multimedia/23wwk-kate-gtkh/23wwk-kate-gtkh-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 18 image, photo, Representative Mike Gallagher’s exit will leave Republicans with 217 House seats to the Democrats’ 213, allowing the G.O.P. to afford only a single defection from the party line on votes when all members are present., Kent Nishimura for The New York Times, 1, https://static01.nyt.com/images/2024/03/22/multimedia/22dc-repubs-chpv/22dc-repubs-chpv-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22dc-repubs-chpv/22dc-repubs-chpv-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22dc-repubs-chpv/22dc-repubs-chpv-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 19 image, photo, , Matthew Abbott for The New York Times, 1, https://static01.nyt.com/images/2024/03/22/multimedia/22total-eclipse-explainer-01-mbqw/22total-eclipse-explainer-01-mbqw-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22total-eclipse-explainer-01-mbqw/22total-eclipse-explainer-01-mbqw-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22total-eclipse-explainer-01-mbqw/22total-eclipse-explainer-01-mbqw-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## 20 image, photo, Speaker Mike Johnson on Friday pushed through a $1.2 trillion bipartisan package to fund the government for the rest of the year., Haiyun Jiang for The New York Times, 1, https://static01.nyt.com/images/2024/03/22/multimedia/22DC-ASSESS-hvtk/22DC-ASSESS-hvtk-thumbStandard.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22DC-ASSESS-hvtk/22DC-ASSESS-hvtk-mediumThreeByTwo210.jpg, https://static01.nyt.com/images/2024/03/22/multimedia/22DC-ASSESS-hvtk/22DC-ASSESS-hvtk-mediumThreeByTwo440.jpg, Standard Thumbnail, mediumThreeByTwo210, mediumThreeByTwo440, 75, 140, 293, 75, 210, 440
## results.eta_id
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0