128k Airline Reviews
Scraped from Airlinequality.com.
@kaggle.joelljungstrom_128k_airline_reviews
Scraped from Airlinequality.com.
@kaggle.joelljungstrom_128k_airline_reviews
This data set was scraped from airlinequality.com and contains text-based reviews in addition to reviewers' ratings of available dimensions on the website.
Names of users were purposefully left out from the crawler. Although the earliest review dates back to 2001, note that some dimensions have been added to the website over time. Consequently, not all dimensions have been filled out for each review.
The data was used in running a text analysis with LDA for a master-level thesis project.
CREATE TABLE airlinereviews (
  "aircraft" VARCHAR,
  "airlinename" VARCHAR,
  "cabintype" VARCHAR,
  "dateflown" VARCHAR,
  "datepub" VARCHAR,
  "entertainmentrating" BIGINT,
  "foodrating" BIGINT,
  "groundservicerating" BIGINT,
  "origincountry" VARCHAR,
  "overallscore" DOUBLE,
  "recommended" VARCHAR,
  "review" VARCHAR,
  "route" VARCHAR,
  "seatcomfortrating" BIGINT,
  "servicerating" BIGINT,
  "slug" VARCHAR,
  "title" VARCHAR,
  "traveltype" VARCHAR,
  "tripverified" VARCHAR,
  "valuerating" BIGINT,
  "wifirating" BIGINT,
  "unique_id" VARCHAR
);Anyone who has the link will be able to view this.