├── Episode 1 - Marketing Analytics Business Case (Clean).pptx ├── Episode 2 - PortfolioProject_MarketingAnalytics.bak ├── Episode 2 - dim_customers.sql ├── Episode 2 - dim_products.sql ├── Episode 2 - fact_customer_reviews.sql ├── Episode 2 - fact_engagement_data.sql ├── Episode 2- fact_customer_journey.sql ├── Episode 3 - customer_reviews_enrichment.py ├── Episode 3 - fact_customer_reviews_enrich.csv ├── Episode 4 - Calendar DAX Script.txt ├── Episode 4 - Dashboard.pbix ├── Episode 5 - Presentation Example.pptx └── README.md /Episode 1 - Marketing Analytics Business Case (Clean).pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmad-1987/DataAnalystPortfolioProject_PBI_SQL_Python_MarketingAnalytics/a0fd4f8427b45c2fc1e6d5fdcf72c30c591c2962/Episode 1 - Marketing Analytics Business Case (Clean).pptx -------------------------------------------------------------------------------- /Episode 2 - PortfolioProject_MarketingAnalytics.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmad-1987/DataAnalystPortfolioProject_PBI_SQL_Python_MarketingAnalytics/a0fd4f8427b45c2fc1e6d5fdcf72c30c591c2962/Episode 2 - PortfolioProject_MarketingAnalytics.bak -------------------------------------------------------------------------------- /Episode 2 - dim_customers.sql: -------------------------------------------------------------------------------- 1 | -- SQL statement to join dim_customers with dim_geography to enrich customer data with geographic information 2 | 3 | SELECT 4 | c.CustomerID, -- Selects the unique identifier for each customer 5 | c.CustomerName, -- Selects the name of each customer 6 | c.Email, -- Selects the email of each customer 7 | c.Gender, -- Selects the gender of each customer 8 | c.Age, -- Selects the age of each customer 9 | g.Country, -- Selects the country from the geography table to enrich customer data 10 | g.City -- Selects the city from the geography table to enrich customer data 11 | FROM 12 | dbo.customers as c -- Specifies the alias 'c' for the dim_customers table 13 | LEFT JOIN 14 | -- RIGHT JOIN 15 | -- INNER JOIN 16 | -- FULL OUTER JOIN 17 | dbo.geography g -- Specifies the alias 'g' for the dim_geography table 18 | ON 19 | c.GeographyID = g.GeographyID; -- Joins the two tables on the GeographyID field to match customers with their geographic information 20 | -------------------------------------------------------------------------------- /Episode 2 - dim_products.sql: -------------------------------------------------------------------------------- 1 | -- SQL Query to categorize products based on their price 2 | 3 | SELECT 4 | ProductID, -- Selects the unique identifier for each product 5 | ProductName, -- Selects the name of each product 6 | Price, -- Selects the price of each product 7 | -- Category, -- Selects the product category for each product 8 | 9 | CASE -- Categorizes the products into price categories: Low, Medium, or High 10 | WHEN Price < 50 THEN 'Low' -- If the price is less than 50, categorize as 'Low' 11 | WHEN Price BETWEEN 50 AND 200 THEN 'Medium' -- If the price is between 50 and 200 (inclusive), categorize as 'Medium' 12 | ELSE 'High' -- If the price is greater than 200, categorize as 'High' 13 | END AS PriceCategory -- Names the new column as PriceCategory 14 | 15 | FROM 16 | dbo.products; -- Specifies the source table from which to select the data 17 | -------------------------------------------------------------------------------- /Episode 2 - fact_customer_reviews.sql: -------------------------------------------------------------------------------- 1 | -- Query to clean whitespace issues in the ReviewText column 2 | 3 | SELECT 4 | ReviewID, -- Selects the unique identifier for each review 5 | CustomerID, -- Selects the unique identifier for each customer 6 | ProductID, -- Selects the unique identifier for each product 7 | ReviewDate, -- Selects the date when the review was written 8 | Rating, -- Selects the numerical rating given by the customer (e.g., 1 to 5 stars) 9 | -- Cleans up the ReviewText by replacing double spaces with single spaces to ensure the text is more readable and standardized 10 | REPLACE(ReviewText, ' ', ' ') AS ReviewText 11 | FROM 12 | dbo.customer_reviews; -- Specifies the source table from which to select the data 13 | -------------------------------------------------------------------------------- /Episode 2 - fact_engagement_data.sql: -------------------------------------------------------------------------------- 1 | -- Query to clean and normalize the engagement_data table 2 | 3 | SELECT 4 | EngagementID, -- Selects the unique identifier for each engagement record 5 | ContentID, -- Selects the unique identifier for each piece of content 6 | CampaignID, -- Selects the unique identifier for each marketing campaign 7 | ProductID, -- Selects the unique identifier for each product 8 | UPPER(REPLACE(ContentType, 'Socialmedia', 'Social Media')) AS ContentType, -- Replaces "Socialmedia" with "Social Media" and then converts all ContentType values to uppercase 9 | LEFT(ViewsClicksCombined, CHARINDEX('-', ViewsClicksCombined) - 1) AS Views, -- Extracts the Views part from the ViewsClicksCombined column by taking the substring before the '-' character 10 | RIGHT(ViewsClicksCombined, LEN(ViewsClicksCombined) - CHARINDEX('-', ViewsClicksCombined)) AS Clicks, -- Extracts the Clicks part from the ViewsClicksCombined column by taking the substring after the '-' character 11 | Likes, -- Selects the number of likes the content received 12 | -- Converts the EngagementDate to the dd.mm.yyyy format 13 | FORMAT(CONVERT(DATE, EngagementDate), 'dd.MM.yyyy') AS EngagementDate -- Converts and formats the date as dd.mm.yyyy 14 | FROM 15 | dbo.engagement_data -- Specifies the source table from which to select the data 16 | WHERE 17 | ContentType != 'Newsletter'; -- Filters out rows where ContentType is 'Newsletter' as these are not relevant for our analysis 18 | -------------------------------------------------------------------------------- /Episode 2- fact_customer_journey.sql: -------------------------------------------------------------------------------- 1 | -- Common Table Expression (CTE) to identify and tag duplicate records 2 | 3 | WITH DuplicateRecords AS ( 4 | SELECT 5 | JourneyID, -- Select the unique identifier for each journey (and any other columns you want to include in the final result set) 6 | CustomerID, -- Select the unique identifier for each customer 7 | ProductID, -- Select the unique identifier for each product 8 | VisitDate, -- Select the date of the visit, which helps in determining the timeline of customer interactions 9 | Stage, -- Select the stage of the customer journey (e.g., Awareness, Consideration, etc.) 10 | Action, -- Select the action taken by the customer (e.g., View, Click, Purchase) 11 | Duration, -- Select the duration of the action or interaction 12 | -- Use ROW_NUMBER() to assign a unique row number to each record within the partition defined below 13 | ROW_NUMBER() OVER ( 14 | -- PARTITION BY groups the rows based on the specified columns that should be unique 15 | PARTITION BY CustomerID, ProductID, VisitDate, Stage, Action 16 | -- ORDER BY defines how to order the rows within each partition (usually by a unique identifier like JourneyID) 17 | ORDER BY JourneyID 18 | ) AS row_num -- This creates a new column 'row_num' that numbers each row within its partition 19 | FROM 20 | dbo.customer_journey -- Specifies the source table from which to select the data 21 | ) 22 | 23 | -- Select all records from the CTE where row_num > 1, which indicates duplicate entries 24 | 25 | SELECT * 26 | FROM DuplicateRecords 27 | -- WHERE row_num > 1 -- Filters out the first occurrence (row_num = 1) and only shows the duplicates (row_num > 1) 28 | ORDER BY JourneyID 29 | 30 | -- Outer query selects the final cleaned and standardized data 31 | 32 | SELECT 33 | JourneyID, -- Selects the unique identifier for each journey to ensure data traceability 34 | CustomerID, -- Selects the unique identifier for each customer to link journeys to specific customers 35 | ProductID, -- Selects the unique identifier for each product to analyze customer interactions with different products 36 | VisitDate, -- Selects the date of the visit to understand the timeline of customer interactions 37 | Stage, -- Uses the uppercased stage value from the subquery for consistency in analysis 38 | Action, -- Selects the action taken by the customer (e.g., View, Click, Purchase) 39 | COALESCE(Duration, avg_duration) AS Duration -- Replaces missing durations with the average duration for the corresponding date 40 | FROM 41 | ( 42 | -- Subquery to process and clean the data 43 | SELECT 44 | JourneyID, -- Selects the unique identifier for each journey to ensure data traceability 45 | CustomerID, -- Selects the unique identifier for each customer to link journeys to specific customers 46 | ProductID, -- Selects the unique identifier for each product to analyze customer interactions with different products 47 | VisitDate, -- Selects the date of the visit to understand the timeline of customer interactions 48 | UPPER(Stage) AS Stage, -- Converts Stage values to uppercase for consistency in data analysis 49 | Action, -- Selects the action taken by the customer (e.g., View, Click, Purchase) 50 | Duration, -- Uses Duration directly, assuming it's already a numeric type 51 | AVG(Duration) OVER (PARTITION BY VisitDate) AS avg_duration, -- Calculates the average duration for each date, using only numeric values 52 | ROW_NUMBER() OVER ( 53 | PARTITION BY CustomerID, ProductID, VisitDate, UPPER(Stage), Action -- Groups by these columns to identify duplicate records 54 | ORDER BY JourneyID -- Orders by JourneyID to keep the first occurrence of each duplicate 55 | ) AS row_num -- Assigns a row number to each row within the partition to identify duplicates 56 | FROM 57 | dbo.customer_journey -- Specifies the source table from which to select the data 58 | ) AS subquery -- Names the subquery for reference in the outer query 59 | WHERE 60 | row_num = 1; -- Keeps only the first occurrence of each duplicate group identified in the subquery 61 | -------------------------------------------------------------------------------- /Episode 3 - customer_reviews_enrichment.py: -------------------------------------------------------------------------------- 1 | # pip install pandas nltk pyodbc sqlalchemy 2 | 3 | import pandas as pd 4 | import pyodbc 5 | import nltk 6 | from nltk.sentiment.vader import SentimentIntensityAnalyzer 7 | 8 | 9 | # Download the VADER lexicon for sentiment analysis if not already present. 10 | nltk.download('vader_lexicon') 11 | 12 | # Define a function to fetch data from a SQL database using a SQL query 13 | def fetch_data_from_sql(): 14 | # Define the connection string with parameters for the database connection 15 | conn_str = ( 16 | "Driver={SQL Server};" # Specify the driver for SQL Server 17 | "Server=ALI-LT2024\\SQLEXPRESS;" # Specify your SQL Server instance 18 | "Database=PortfolioProject_MarketingAnalytics;" # Specify the database name 19 | "Trusted_Connection=yes;" # Use Windows Authentication for the connection 20 | ) 21 | # Establish the connection to the database 22 | conn = pyodbc.connect(conn_str) 23 | 24 | # Define the SQL query to fetch customer reviews data 25 | query = "SELECT ReviewID, CustomerID, ProductID, ReviewDate, Rating, ReviewText FROM fact_customer_reviews" 26 | 27 | # Execute the query and fetch the data into a DataFrame 28 | df = pd.read_sql(query, conn) 29 | 30 | # Close the connection to free up resources 31 | conn.close() 32 | 33 | # Return the fetched data as a DataFrame 34 | return df 35 | 36 | # Fetch the customer reviews data from the SQL database 37 | customer_reviews_df = fetch_data_from_sql() 38 | 39 | # Initialize the VADER sentiment intensity analyzer for analyzing the sentiment of text data 40 | sia = SentimentIntensityAnalyzer() 41 | 42 | # Define a function to calculate sentiment scores using VADER 43 | def calculate_sentiment(review): 44 | # Get the sentiment scores for the review text 45 | sentiment = sia.polarity_scores(review) 46 | # Return the compound score, which is a normalized score between -1 (most negative) and 1 (most positive) 47 | return sentiment['compound'] 48 | 49 | # Define a function to categorize sentiment using both the sentiment score and the review rating 50 | def categorize_sentiment(score, rating): 51 | # Use both the text sentiment score and the numerical rating to determine sentiment category 52 | if score > 0.05: # Positive sentiment score 53 | if rating >= 4: 54 | return 'Positive' # High rating and positive sentiment 55 | elif rating == 3: 56 | return 'Mixed Positive' # Neutral rating but positive sentiment 57 | else: 58 | return 'Mixed Negative' # Low rating but positive sentiment 59 | elif score < -0.05: # Negative sentiment score 60 | if rating <= 2: 61 | return 'Negative' # Low rating and negative sentiment 62 | elif rating == 3: 63 | return 'Mixed Negative' # Neutral rating but negative sentiment 64 | else: 65 | return 'Mixed Positive' # High rating but negative sentiment 66 | else: # Neutral sentiment score 67 | if rating >= 4: 68 | return 'Positive' # High rating with neutral sentiment 69 | elif rating <= 2: 70 | return 'Negative' # Low rating with neutral sentiment 71 | else: 72 | return 'Neutral' # Neutral rating and neutral sentiment 73 | 74 | # Define a function to bucket sentiment scores into text ranges 75 | def sentiment_bucket(score): 76 | if score >= 0.5: 77 | return '0.5 to 1.0' # Strongly positive sentiment 78 | elif 0.0 <= score < 0.5: 79 | return '0.0 to 0.49' # Mildly positive sentiment 80 | elif -0.5 <= score < 0.0: 81 | return '-0.49 to 0.0' # Mildly negative sentiment 82 | else: 83 | return '-1.0 to -0.5' # Strongly negative sentiment 84 | 85 | # Apply sentiment analysis to calculate sentiment scores for each review 86 | customer_reviews_df['SentimentScore'] = customer_reviews_df['ReviewText'].apply(calculate_sentiment) 87 | 88 | # Apply sentiment categorization using both text and rating 89 | customer_reviews_df['SentimentCategory'] = customer_reviews_df.apply( 90 | lambda row: categorize_sentiment(row['SentimentScore'], row['Rating']), axis=1) 91 | 92 | # Apply sentiment bucketing to categorize scores into defined ranges 93 | customer_reviews_df['SentimentBucket'] = customer_reviews_df['SentimentScore'].apply(sentiment_bucket) 94 | 95 | # Display the first few rows of the DataFrame with sentiment scores, categories, and buckets 96 | print(customer_reviews_df.head()) 97 | 98 | # Save the DataFrame with sentiment scores, categories, and buckets to a new CSV file 99 | customer_reviews_df.to_csv('fact_customer_reviews_with_sentiment.csv', index=False) 100 | -------------------------------------------------------------------------------- /Episode 3 - fact_customer_reviews_enrich.csv: -------------------------------------------------------------------------------- 1 | ReviewID,CustomerID,ProductID,ReviewDate,Rating,ReviewText,SentimentScore,SentimentCategory,SentimentBucket 2 | 1,77,18,2023-12-23,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 3 | 2,80,19,2024-12-25,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 4 | 3,50,13,2025-01-26,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 5 | 4,78,15,2025-04-21,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 6 | 5,64,2,2023-07-16,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 7 | 6,81,1,2025-12-21,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 8 | 7,16,1,2024-01-29,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 9 | 8,55,8,2024-08-15,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 10 | 9,3,13,2023-09-01,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 11 | 10,78,6,2024-06-17,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 12 | 11,54,9,2023-07-17,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 13 | 12,77,2,2025-01-13,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 14 | 13,93,6,2024-08-20,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 15 | 14,23,2,2025-06-16,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 16 | 15,29,11,2023-01-27,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 17 | 16,95,17,2023-01-06,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 18 | 17,88,4,2025-10-29,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 19 | 18,17,16,2024-11-23,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 20 | 19,34,13,2024-01-04,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 21 | 20,34,6,2023-04-29,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 22 | 21,22,15,2023-04-08,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 23 | 22,52,3,2025-10-30,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 24 | 23,69,18,2023-07-02,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 25 | 24,100,4,2025-07-18,3,"I love this product, will buy again!",0.6696,Mixed Positive,0.5 to 1.0 26 | 25,55,20,2024-12-19,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 27 | 26,76,11,2024-08-21,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 28 | 27,56,6,2025-11-24,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 29 | 28,76,8,2025-05-27,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 30 | 29,38,13,2023-05-31,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 31 | 30,84,6,2024-03-18,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 32 | 31,93,4,2025-08-25,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 33 | 32,91,1,2023-07-15,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 34 | 33,30,2,2023-02-21,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 35 | 34,81,15,2024-03-30,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 36 | 35,27,12,2024-03-13,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 37 | 36,96,9,2025-12-05,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 38 | 37,38,3,2023-09-11,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 39 | 38,45,17,2024-05-07,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 40 | 39,54,1,2023-10-02,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 41 | 40,33,2,2025-01-03,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 42 | 41,93,17,2025-05-15,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 43 | 42,72,15,2023-03-21,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 44 | 43,84,15,2025-02-02,4,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 45 | 44,44,17,2023-04-20,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 46 | 45,11,16,2023-03-23,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 47 | 46,27,5,2025-05-07,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 48 | 47,19,13,2024-06-01,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 49 | 48,70,17,2023-10-08,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 50 | 49,3,7,2025-06-09,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 51 | 50,62,4,2023-01-07,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 52 | 51,49,17,2023-04-14,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 53 | 52,75,11,2024-04-07,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 54 | 53,73,18,2025-12-28,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 55 | 54,33,8,2023-05-03,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 56 | 55,57,9,2025-11-03,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 57 | 56,15,10,2025-12-11,3,Shipping was fast and the item was well-packaged.,0.0,Neutral,0.0 to 0.49 58 | 57,41,10,2024-04-06,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 59 | 58,78,7,2024-07-16,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 60 | 59,98,9,2024-09-01,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 61 | 60,11,16,2023-12-27,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 62 | 61,50,19,2023-02-24,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 63 | 62,35,17,2023-03-18,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 64 | 63,93,2,2025-01-05,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 65 | 64,86,11,2025-10-30,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 66 | 65,34,3,2024-06-15,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 67 | 66,94,16,2023-06-17,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 68 | 67,67,13,2025-04-12,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 69 | 68,38,7,2023-03-23,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 70 | 69,77,12,2025-08-03,3,Five stars for the quick delivery.,0.0,Neutral,0.0 to 0.49 71 | 70,93,5,2024-01-30,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 72 | 71,24,11,2025-07-28,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 73 | 72,29,4,2023-05-29,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 74 | 73,68,19,2025-05-05,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 75 | 74,59,9,2023-05-16,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 76 | 75,22,3,2024-01-13,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 77 | 76,9,10,2025-08-31,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 78 | 77,74,5,2023-03-15,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 79 | 78,6,10,2024-12-09,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 80 | 79,84,15,2024-05-28,2,The product arrived late.,0.0,Negative,0.0 to 0.49 81 | 80,98,16,2025-05-24,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 82 | 81,3,19,2024-09-04,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 83 | 82,78,13,2023-05-02,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 84 | 83,32,11,2025-05-26,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 85 | 84,40,20,2023-07-17,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 86 | 85,17,6,2025-10-25,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 87 | 86,78,3,2025-10-06,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 88 | 87,89,17,2023-05-26,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 89 | 88,93,19,2025-08-26,4,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 90 | 89,60,3,2024-07-08,3,The quality is top-notch.,0.0,Neutral,0.0 to 0.49 91 | 90,47,17,2025-11-12,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 92 | 91,4,16,2025-09-27,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 93 | 92,2,16,2023-11-21,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 94 | 93,60,13,2024-09-05,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 95 | 94,2,16,2025-03-14,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 96 | 95,16,16,2024-04-07,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 97 | 96,19,13,2023-09-02,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 98 | 97,64,6,2024-01-19,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 99 | 98,96,3,2025-11-20,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 100 | 99,79,16,2025-01-29,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 101 | 100,9,2,2025-06-20,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 102 | 101,61,18,2024-09-11,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 103 | 102,4,2,2025-08-22,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 104 | 103,82,14,2024-11-17,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 105 | 104,96,5,2023-01-06,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 106 | 105,32,12,2024-08-27,2,The product arrived late.,0.0,Negative,0.0 to 0.49 107 | 106,94,17,2024-02-25,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 108 | 107,26,10,2025-02-17,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 109 | 108,80,17,2023-12-22,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 110 | 109,38,10,2023-07-25,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 111 | 110,54,12,2024-08-02,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 112 | 111,43,7,2023-11-05,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 113 | 112,87,3,2023-05-26,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 114 | 113,27,9,2024-03-31,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 115 | 114,52,19,2025-05-04,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 116 | 115,82,9,2023-09-28,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 117 | 116,70,18,2023-07-23,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 118 | 117,20,14,2025-04-19,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 119 | 118,59,6,2024-05-01,1,The product arrived late.,0.0,Negative,0.0 to 0.49 120 | 119,34,5,2025-09-06,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 121 | 120,3,20,2024-08-18,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 122 | 121,91,1,2025-11-02,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 123 | 122,83,14,2024-09-27,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 124 | 123,93,1,2025-09-22,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 125 | 124,36,16,2023-07-17,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 126 | 125,55,11,2025-12-20,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 127 | 126,32,10,2024-08-12,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 128 | 127,47,8,2025-03-25,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 129 | 128,71,20,2023-12-13,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 130 | 129,46,13,2025-02-14,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 131 | 130,88,3,2025-09-22,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 132 | 131,42,5,2023-06-16,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 133 | 132,21,7,2025-11-13,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 134 | 133,40,4,2025-05-24,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 135 | 134,74,4,2024-03-27,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 136 | 135,48,14,2023-06-08,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 137 | 136,17,3,2025-03-27,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 138 | 137,88,6,2023-03-02,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 139 | 138,28,15,2023-01-18,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 140 | 139,36,16,2023-04-20,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 141 | 140,53,18,2023-12-03,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 142 | 141,98,9,2024-10-15,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 143 | 142,15,7,2023-08-04,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 144 | 143,3,12,2023-04-12,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 145 | 144,27,15,2025-08-16,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 146 | 145,27,10,2024-03-05,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 147 | 146,5,13,2025-01-09,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 148 | 147,100,20,2025-01-25,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 149 | 148,17,18,2024-11-05,1,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 150 | 149,50,3,2023-12-20,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 151 | 150,4,15,2024-06-18,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 152 | 151,21,19,2023-10-30,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 153 | 152,32,16,2025-12-15,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 154 | 153,95,11,2023-11-06,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 155 | 154,3,12,2023-12-19,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 156 | 155,89,3,2025-12-10,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 157 | 156,5,7,2025-01-26,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 158 | 157,10,17,2025-10-14,2,The product arrived late.,0.0,Negative,0.0 to 0.49 159 | 158,37,2,2024-04-16,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 160 | 159,23,12,2023-09-01,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 161 | 160,71,9,2024-01-02,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 162 | 161,9,18,2025-08-05,2,The product arrived late.,0.0,Negative,0.0 to 0.49 163 | 162,64,20,2023-07-25,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 164 | 163,89,7,2023-05-27,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 165 | 164,25,19,2024-03-16,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 166 | 165,97,3,2025-06-03,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 167 | 166,87,3,2023-11-01,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 168 | 167,28,16,2023-08-02,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 169 | 168,72,2,2025-12-13,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 170 | 169,26,8,2025-09-28,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 171 | 170,53,13,2024-06-23,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 172 | 171,2,16,2024-02-16,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 173 | 172,79,2,2024-11-23,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 174 | 173,15,16,2025-05-30,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 175 | 174,91,8,2024-06-23,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 176 | 175,3,6,2024-11-02,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 177 | 176,21,11,2023-11-23,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 178 | 177,93,19,2025-07-03,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 179 | 178,17,20,2025-05-25,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 180 | 179,46,20,2025-11-26,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 181 | 180,77,5,2023-03-08,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 182 | 181,4,3,2024-08-09,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 183 | 182,21,11,2024-03-08,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 184 | 183,13,5,2025-06-08,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 185 | 184,59,5,2024-12-29,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 186 | 185,8,6,2023-11-13,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 187 | 186,22,13,2023-02-17,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 188 | 187,58,18,2025-05-01,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 189 | 188,70,5,2025-09-19,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 190 | 189,83,7,2025-03-13,2,The product arrived late.,0.0,Negative,0.0 to 0.49 191 | 190,83,3,2023-08-10,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 192 | 191,68,3,2024-09-05,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 193 | 192,42,17,2023-08-04,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 194 | 193,84,20,2024-06-21,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 195 | 194,7,7,2025-05-19,1,The product arrived late.,0.0,Negative,0.0 to 0.49 196 | 195,75,5,2023-10-25,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 197 | 196,91,2,2023-10-29,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 198 | 197,51,15,2024-11-27,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 199 | 198,57,8,2023-08-27,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 200 | 199,6,13,2024-08-20,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 201 | 200,30,17,2025-01-09,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 202 | 201,59,6,2023-05-23,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 203 | 202,33,9,2023-09-06,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 204 | 203,66,18,2023-11-22,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 205 | 204,95,14,2024-11-29,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 206 | 205,88,12,2023-04-06,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 207 | 206,72,14,2023-08-22,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 208 | 207,95,18,2025-06-07,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 209 | 208,94,8,2023-03-25,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 210 | 209,70,8,2025-11-05,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 211 | 210,28,1,2023-12-10,2,The product arrived late.,0.0,Negative,0.0 to 0.49 212 | 211,84,12,2025-03-07,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 213 | 212,87,10,2023-01-03,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 214 | 213,7,13,2024-04-09,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 215 | 214,53,18,2025-04-13,3,Five stars for the quick delivery.,0.0,Neutral,0.0 to 0.49 216 | 215,55,10,2024-01-07,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 217 | 216,49,7,2023-11-14,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 218 | 217,62,11,2023-08-19,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 219 | 218,35,8,2024-09-14,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 220 | 219,90,9,2023-02-18,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 221 | 220,78,9,2025-08-12,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 222 | 221,26,2,2024-10-21,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 223 | 222,54,14,2024-02-28,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 224 | 223,37,16,2023-07-31,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 225 | 224,68,15,2023-03-27,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 226 | 225,80,1,2025-09-08,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 227 | 226,60,9,2023-08-23,2,The product arrived late.,0.0,Negative,0.0 to 0.49 228 | 227,74,11,2024-08-10,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 229 | 228,20,19,2025-10-23,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 230 | 229,69,12,2023-02-07,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 231 | 230,54,11,2023-10-19,2,The product arrived late.,0.0,Negative,0.0 to 0.49 232 | 231,15,16,2025-04-15,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 233 | 232,17,3,2025-10-11,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 234 | 233,81,4,2024-11-14,2,The product arrived late.,0.0,Negative,0.0 to 0.49 235 | 234,80,9,2023-03-06,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 236 | 235,54,3,2024-03-18,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 237 | 236,55,16,2025-03-03,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 238 | 237,44,2,2025-09-29,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 239 | 238,47,9,2023-04-18,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 240 | 239,45,9,2024-01-28,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 241 | 240,20,16,2024-11-09,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 242 | 241,61,15,2024-04-22,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 243 | 242,20,20,2025-06-07,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 244 | 243,24,11,2023-02-17,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 245 | 244,36,4,2023-08-25,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 246 | 245,50,3,2023-03-23,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 247 | 246,71,12,2023-07-23,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 248 | 247,28,6,2025-11-24,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 249 | 248,81,6,2023-07-15,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 250 | 249,75,2,2023-01-04,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 251 | 250,22,11,2023-09-21,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 252 | 251,16,2,2024-02-01,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 253 | 252,6,6,2025-03-18,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 254 | 253,75,15,2024-08-03,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 255 | 254,30,19,2025-12-31,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 256 | 255,13,16,2024-01-23,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 257 | 256,91,3,2024-02-11,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 258 | 257,84,13,2023-10-03,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 259 | 258,34,7,2025-05-13,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 260 | 259,75,2,2023-08-24,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 261 | 260,44,18,2024-03-07,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 262 | 261,29,12,2024-10-15,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 263 | 262,45,7,2024-07-07,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 264 | 263,47,8,2024-10-21,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 265 | 264,96,18,2025-08-19,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 266 | 265,22,19,2024-05-14,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 267 | 266,62,5,2025-02-22,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 268 | 267,55,19,2023-12-01,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 269 | 268,98,17,2023-10-28,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 270 | 269,75,4,2023-11-18,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 271 | 270,46,6,2023-09-25,1,The color was different from what was shown.,0.0,Negative,0.0 to 0.49 272 | 271,21,17,2025-08-08,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 273 | 272,39,17,2023-03-26,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 274 | 273,10,2,2024-10-09,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 275 | 274,93,11,2023-04-07,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 276 | 275,45,12,2023-04-03,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 277 | 276,86,1,2025-01-29,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 278 | 277,22,6,2025-03-21,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 279 | 278,80,20,2023-03-01,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 280 | 279,86,5,2023-07-21,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 281 | 280,68,19,2023-11-09,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 282 | 281,71,5,2025-11-19,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 283 | 282,59,5,2023-02-17,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 284 | 283,87,13,2023-02-14,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 285 | 284,89,13,2023-09-01,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 286 | 285,29,3,2023-08-25,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 287 | 286,53,16,2023-05-04,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 288 | 287,75,6,2025-02-14,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 289 | 288,68,17,2024-06-21,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 290 | 289,87,15,2023-10-04,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 291 | 290,20,14,2024-09-23,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 292 | 291,17,7,2025-12-06,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 293 | 292,15,7,2025-10-19,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 294 | 293,25,13,2023-02-14,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 295 | 294,63,13,2023-11-09,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 296 | 295,61,6,2024-10-13,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 297 | 296,85,18,2023-12-13,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 298 | 297,92,16,2023-08-06,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 299 | 298,41,15,2025-06-13,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 300 | 299,93,13,2024-02-01,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 301 | 300,22,18,2023-05-09,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 302 | 301,6,7,2023-05-30,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 303 | 302,64,19,2024-10-08,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 304 | 303,20,10,2024-04-25,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 305 | 304,66,14,2023-02-01,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 306 | 305,87,7,2023-08-25,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 307 | 306,52,8,2025-07-19,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 308 | 307,63,16,2025-01-08,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 309 | 308,90,14,2023-04-02,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 310 | 309,70,11,2023-02-02,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 311 | 310,40,1,2024-11-30,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 312 | 311,52,11,2023-11-14,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 313 | 312,90,3,2023-11-05,2,The product arrived late.,0.0,Negative,0.0 to 0.49 314 | 313,13,3,2024-01-14,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 315 | 314,22,17,2025-10-06,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 316 | 315,32,7,2025-06-13,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 317 | 316,48,4,2025-08-15,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 318 | 317,15,6,2023-08-04,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 319 | 318,97,4,2023-12-15,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 320 | 319,86,6,2024-12-11,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 321 | 320,79,17,2023-02-24,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 322 | 321,58,12,2024-04-17,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 323 | 322,76,13,2024-12-01,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 324 | 323,47,4,2023-04-24,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 325 | 324,89,5,2024-07-08,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 326 | 325,78,6,2023-04-17,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 327 | 326,17,14,2024-06-15,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 328 | 327,95,8,2023-08-25,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 329 | 328,100,13,2024-02-20,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 330 | 329,6,9,2024-12-07,3,The quality is top-notch.,0.0,Neutral,0.0 to 0.49 331 | 330,22,14,2023-03-18,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 332 | 331,68,4,2023-08-17,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 333 | 332,2,10,2024-11-06,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 334 | 333,87,5,2024-06-02,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 335 | 334,70,9,2025-04-14,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 336 | 335,75,14,2024-03-12,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 337 | 336,8,8,2024-02-07,2,The product arrived late.,0.0,Negative,0.0 to 0.49 338 | 337,32,19,2024-05-22,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 339 | 338,98,4,2023-01-22,2,The product arrived late.,0.0,Negative,0.0 to 0.49 340 | 339,38,2,2025-01-11,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 341 | 340,95,17,2025-09-16,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 342 | 341,62,3,2024-11-04,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 343 | 342,19,4,2025-06-15,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 344 | 343,84,4,2025-04-13,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 345 | 344,21,10,2025-11-02,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 346 | 345,48,4,2024-07-24,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 347 | 346,84,15,2025-06-27,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 348 | 347,75,16,2025-08-19,1,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 349 | 348,52,13,2024-03-05,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 350 | 349,26,11,2024-11-19,3,"I love this product, will buy again!",0.6696,Mixed Positive,0.5 to 1.0 351 | 350,57,6,2025-08-22,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 352 | 351,55,5,2023-05-02,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 353 | 352,43,11,2025-12-22,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 354 | 353,36,15,2025-09-08,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 355 | 354,50,18,2024-01-03,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 356 | 355,59,9,2024-03-04,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 357 | 356,86,14,2023-11-23,1,The product arrived late.,0.0,Negative,0.0 to 0.49 358 | 357,1,3,2024-04-01,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 359 | 358,13,15,2023-11-20,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 360 | 359,79,15,2024-05-04,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 361 | 360,33,15,2025-09-09,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 362 | 361,71,7,2024-02-12,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 363 | 362,33,11,2024-02-11,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 364 | 363,17,15,2025-04-15,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 365 | 364,46,8,2024-04-26,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 366 | 365,90,20,2025-10-24,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 367 | 366,46,7,2023-11-14,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 368 | 367,96,1,2024-07-02,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 369 | 368,34,8,2025-05-11,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 370 | 369,48,4,2024-12-19,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 371 | 370,73,6,2023-04-13,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 372 | 371,29,1,2024-01-20,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 373 | 372,91,6,2023-05-10,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 374 | 373,92,14,2025-07-12,1,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 375 | 374,89,12,2023-02-08,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 376 | 375,73,4,2024-12-16,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 377 | 376,38,6,2023-07-03,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 378 | 377,77,4,2023-11-29,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 379 | 378,64,9,2024-03-20,2,The product arrived late.,0.0,Negative,0.0 to 0.49 380 | 379,62,4,2023-01-27,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 381 | 380,52,4,2024-02-23,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 382 | 381,45,4,2024-01-24,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 383 | 382,38,7,2023-09-03,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 384 | 383,54,13,2024-09-05,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 385 | 384,20,3,2025-06-04,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 386 | 385,81,5,2023-06-09,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 387 | 386,86,5,2024-04-09,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 388 | 387,42,14,2025-03-29,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 389 | 388,99,1,2025-12-10,1,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 390 | 389,14,2,2024-09-14,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 391 | 390,30,10,2023-05-22,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 392 | 391,98,20,2024-01-05,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 393 | 392,93,11,2023-06-29,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 394 | 393,6,20,2024-04-18,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 395 | 394,7,4,2024-10-19,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 396 | 395,35,9,2025-04-12,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 397 | 396,75,6,2025-09-12,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 398 | 397,11,14,2024-04-23,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 399 | 398,17,7,2023-09-02,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 400 | 399,68,1,2024-07-21,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 401 | 400,42,10,2023-06-30,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 402 | 401,93,18,2024-04-13,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 403 | 402,68,12,2025-12-16,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 404 | 403,53,14,2023-06-18,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 405 | 404,90,7,2025-06-04,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 406 | 405,43,4,2025-09-10,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 407 | 406,11,9,2025-12-15,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 408 | 407,79,11,2023-01-12,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 409 | 408,17,4,2023-12-12,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 410 | 409,59,19,2023-02-22,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 411 | 410,83,1,2023-01-11,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 412 | 411,32,15,2023-03-05,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 413 | 412,83,7,2024-05-10,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 414 | 413,60,12,2023-08-24,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 415 | 414,59,14,2025-07-31,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 416 | 415,97,8,2025-06-04,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 417 | 416,15,17,2023-04-19,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 418 | 417,9,16,2024-11-28,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 419 | 418,94,2,2025-03-02,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 420 | 419,68,6,2025-09-01,1,The color was different from what was shown.,0.0,Negative,0.0 to 0.49 421 | 420,18,11,2023-06-10,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 422 | 421,75,13,2025-08-18,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 423 | 422,81,17,2025-09-30,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 424 | 423,76,18,2023-08-01,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 425 | 424,53,11,2024-03-21,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 426 | 425,89,6,2025-03-04,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 427 | 426,74,17,2024-04-07,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 428 | 427,81,11,2025-08-20,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 429 | 428,58,9,2025-01-17,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 430 | 429,71,2,2023-06-08,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 431 | 430,99,9,2025-08-03,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 432 | 431,94,11,2023-02-10,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 433 | 432,31,18,2025-02-14,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 434 | 433,72,2,2025-06-11,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 435 | 434,7,18,2023-02-25,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 436 | 435,65,1,2023-02-28,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 437 | 436,11,1,2024-01-03,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 438 | 437,73,4,2023-06-24,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 439 | 438,72,20,2023-09-13,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 440 | 439,67,11,2025-11-11,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 441 | 440,93,7,2023-07-22,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 442 | 441,12,6,2023-09-03,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 443 | 442,28,8,2025-04-06,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 444 | 443,37,13,2024-01-19,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 445 | 444,22,16,2023-10-20,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 446 | 445,25,14,2023-05-27,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 447 | 446,84,14,2025-06-10,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 448 | 447,38,2,2024-08-19,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 449 | 448,75,12,2025-12-25,4,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 450 | 449,43,14,2024-03-10,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 451 | 450,92,4,2024-08-04,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 452 | 451,68,11,2023-04-18,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 453 | 452,42,19,2024-08-28,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 454 | 453,100,2,2023-04-23,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 455 | 454,27,9,2025-09-17,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 456 | 455,79,20,2024-07-30,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 457 | 456,2,1,2024-01-09,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 458 | 457,29,1,2024-12-12,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 459 | 458,42,20,2025-07-05,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 460 | 459,90,17,2023-06-16,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 461 | 460,92,16,2025-08-09,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 462 | 461,66,5,2025-10-11,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 463 | 462,85,14,2023-02-02,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 464 | 463,5,2,2025-11-02,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 465 | 464,73,11,2024-05-28,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 466 | 465,43,12,2025-12-14,1,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 467 | 466,49,16,2023-02-16,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 468 | 467,29,16,2023-07-16,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 469 | 468,12,12,2024-01-09,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 470 | 469,54,13,2023-10-06,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 471 | 470,46,1,2025-10-24,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 472 | 471,88,4,2024-04-26,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 473 | 472,69,8,2024-12-05,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 474 | 473,7,19,2024-08-03,1,The product arrived late.,0.0,Negative,0.0 to 0.49 475 | 474,47,20,2025-05-31,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 476 | 475,74,20,2023-04-18,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 477 | 476,54,10,2023-12-12,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 478 | 477,91,10,2025-04-25,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 479 | 478,79,6,2023-07-23,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 480 | 479,7,13,2024-12-28,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 481 | 480,90,9,2023-07-22,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 482 | 481,21,2,2024-12-02,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 483 | 482,49,10,2025-07-11,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 484 | 483,28,20,2024-06-29,2,The product arrived late.,0.0,Negative,0.0 to 0.49 485 | 484,36,10,2023-08-22,1,The product arrived late.,0.0,Negative,0.0 to 0.49 486 | 485,66,18,2025-06-10,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 487 | 486,44,3,2024-01-20,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 488 | 487,78,3,2025-05-01,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 489 | 488,89,12,2025-02-24,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 490 | 489,15,8,2023-11-09,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 491 | 490,46,11,2025-07-05,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 492 | 491,59,6,2023-06-22,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 493 | 492,94,20,2025-03-19,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 494 | 493,26,2,2024-07-16,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 495 | 494,2,13,2025-05-25,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 496 | 495,56,7,2023-04-26,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 497 | 496,87,1,2024-01-29,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 498 | 497,90,6,2024-02-21,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 499 | 498,81,17,2025-01-17,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 500 | 499,72,6,2024-08-26,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 501 | 500,57,9,2025-12-20,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 502 | 501,39,12,2023-12-01,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 503 | 502,5,1,2025-11-10,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 504 | 503,5,16,2024-07-03,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 505 | 504,35,8,2024-01-18,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 506 | 505,82,2,2024-07-11,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 507 | 506,80,8,2025-10-19,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 508 | 507,66,3,2024-12-10,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 509 | 508,64,14,2025-01-19,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 510 | 509,5,11,2024-05-25,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 511 | 510,20,6,2024-11-05,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 512 | 511,55,15,2025-04-01,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 513 | 512,11,1,2025-01-15,3,Shipping was fast and the item was well-packaged.,0.0,Neutral,0.0 to 0.49 514 | 513,21,3,2025-11-09,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 515 | 514,72,15,2023-06-18,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 516 | 515,89,3,2024-12-06,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 517 | 516,46,18,2025-01-03,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 518 | 517,29,4,2024-03-30,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 519 | 518,17,12,2024-04-27,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 520 | 519,58,4,2023-03-06,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 521 | 520,63,1,2024-08-24,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 522 | 521,47,5,2024-03-31,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 523 | 522,8,10,2023-08-04,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 524 | 523,8,12,2023-12-07,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 525 | 524,27,4,2025-09-01,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 526 | 525,1,1,2023-11-23,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 527 | 526,74,3,2025-05-20,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 528 | 527,27,14,2024-07-03,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 529 | 528,81,16,2024-11-09,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 530 | 529,19,11,2025-05-05,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 531 | 530,48,10,2025-11-24,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 532 | 531,65,3,2024-07-21,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 533 | 532,6,6,2023-05-30,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 534 | 533,92,6,2024-04-06,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 535 | 534,41,2,2025-07-02,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 536 | 535,85,13,2023-03-25,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 537 | 536,33,19,2024-12-29,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 538 | 537,8,9,2023-03-11,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 539 | 538,29,16,2025-11-12,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 540 | 539,74,17,2024-12-02,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 541 | 540,28,18,2025-12-09,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 542 | 541,73,20,2025-08-08,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 543 | 542,49,5,2023-07-11,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 544 | 543,64,17,2023-10-31,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 545 | 544,65,6,2023-10-29,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 546 | 545,45,13,2024-06-11,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 547 | 546,33,1,2024-11-14,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 548 | 547,28,11,2024-05-28,1,The product arrived late.,0.0,Negative,0.0 to 0.49 549 | 548,40,12,2023-01-11,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 550 | 549,73,15,2025-04-06,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 551 | 550,51,12,2024-10-07,3,Shipping was fast and the item was well-packaged.,0.0,Neutral,0.0 to 0.49 552 | 551,45,2,2025-04-17,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 553 | 552,68,1,2023-07-28,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 554 | 553,60,20,2025-04-26,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 555 | 554,18,1,2024-08-16,2,The product arrived late.,0.0,Negative,0.0 to 0.49 556 | 555,69,18,2025-11-24,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 557 | 556,91,6,2025-01-04,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 558 | 557,55,10,2024-07-28,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 559 | 558,83,13,2025-02-11,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 560 | 559,46,12,2024-05-16,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 561 | 560,24,6,2024-11-08,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 562 | 561,6,5,2025-02-27,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 563 | 562,41,5,2024-02-25,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 564 | 563,86,13,2025-02-27,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 565 | 564,9,12,2025-10-13,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 566 | 565,60,20,2024-06-30,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 567 | 566,89,10,2025-08-15,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 568 | 567,78,16,2024-02-21,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 569 | 568,17,13,2024-08-04,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 570 | 569,58,9,2024-07-17,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 571 | 570,50,15,2025-04-29,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 572 | 571,2,8,2024-10-15,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 573 | 572,37,16,2025-04-23,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 574 | 573,57,8,2024-04-27,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 575 | 574,72,9,2025-10-13,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 576 | 575,93,14,2025-09-19,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 577 | 576,71,9,2025-10-04,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 578 | 577,65,9,2024-04-18,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 579 | 578,32,15,2023-08-01,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 580 | 579,24,8,2024-01-16,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 581 | 580,48,1,2025-04-15,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 582 | 581,69,18,2024-03-19,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 583 | 582,65,9,2023-01-29,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 584 | 583,88,8,2025-07-03,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 585 | 584,70,20,2024-12-04,4,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 586 | 585,87,12,2025-10-23,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 587 | 586,7,17,2023-04-11,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 588 | 587,31,17,2025-08-31,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 589 | 588,39,18,2025-09-03,3,Shipping was fast and the item was well-packaged.,0.0,Neutral,0.0 to 0.49 590 | 589,64,4,2024-03-21,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 591 | 590,27,4,2024-09-13,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 592 | 591,65,12,2024-10-29,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 593 | 592,100,1,2025-01-18,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 594 | 593,62,8,2025-06-12,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 595 | 594,14,4,2025-10-01,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 596 | 595,46,5,2025-09-18,4,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 597 | 596,48,15,2025-06-27,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 598 | 597,11,1,2025-09-07,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 599 | 598,3,2,2023-08-04,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 600 | 599,94,19,2025-08-01,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 601 | 600,65,3,2025-01-11,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 602 | 601,25,11,2025-07-31,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 603 | 602,56,8,2023-02-08,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 604 | 603,88,4,2024-07-02,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 605 | 604,87,2,2023-06-10,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 606 | 605,1,3,2023-06-17,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 607 | 606,48,8,2023-10-14,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 608 | 607,25,14,2025-07-07,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 609 | 608,7,9,2023-03-21,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 610 | 609,40,10,2025-10-23,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 611 | 610,69,3,2025-01-29,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 612 | 611,6,4,2023-12-06,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 613 | 612,38,2,2025-06-17,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 614 | 613,48,12,2025-02-10,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 615 | 614,23,2,2025-01-20,3,"I love this product, will buy again!",0.6696,Mixed Positive,0.5 to 1.0 616 | 615,98,1,2025-01-08,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 617 | 616,38,20,2023-11-14,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 618 | 617,29,15,2025-12-22,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 619 | 618,45,7,2024-08-21,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 620 | 619,68,14,2023-12-06,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 621 | 620,100,1,2024-10-22,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 622 | 621,70,14,2025-05-13,2,The product arrived late.,0.0,Negative,0.0 to 0.49 623 | 622,30,4,2025-12-22,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 624 | 623,5,1,2025-06-15,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 625 | 624,82,14,2023-11-28,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 626 | 625,32,10,2023-02-20,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 627 | 626,38,11,2025-12-18,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 628 | 627,18,6,2023-06-26,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 629 | 628,22,4,2025-08-30,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 630 | 629,16,20,2024-07-28,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 631 | 630,31,10,2024-08-14,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 632 | 631,73,12,2024-10-30,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 633 | 632,40,20,2023-02-24,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 634 | 633,52,3,2023-12-26,2,The product arrived late.,0.0,Negative,0.0 to 0.49 635 | 634,27,13,2024-02-25,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 636 | 635,85,16,2023-02-22,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 637 | 636,37,13,2023-12-18,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 638 | 637,17,7,2024-08-21,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 639 | 638,63,16,2025-08-23,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 640 | 639,14,12,2024-07-07,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 641 | 640,23,14,2024-08-09,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 642 | 641,58,9,2024-01-05,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 643 | 642,53,17,2025-04-28,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 644 | 643,89,16,2024-01-07,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 645 | 644,97,10,2023-11-25,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 646 | 645,23,20,2023-11-02,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 647 | 646,75,2,2023-10-09,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 648 | 647,68,2,2023-01-03,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 649 | 648,76,5,2023-03-19,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 650 | 649,8,17,2025-02-05,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 651 | 650,28,3,2024-11-08,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 652 | 651,38,9,2024-09-10,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 653 | 652,39,19,2025-05-06,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 654 | 653,66,16,2025-01-14,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 655 | 654,46,8,2023-01-01,1,The color was different from what was shown.,0.0,Negative,0.0 to 0.49 656 | 655,63,16,2023-04-06,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 657 | 656,17,11,2024-07-22,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 658 | 657,35,11,2025-10-18,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 659 | 658,3,18,2025-06-16,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 660 | 659,29,20,2023-03-16,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 661 | 660,62,5,2023-10-06,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 662 | 661,40,18,2025-09-20,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 663 | 662,15,5,2025-03-24,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 664 | 663,23,10,2025-05-26,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 665 | 664,31,16,2025-08-11,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 666 | 665,99,12,2024-01-03,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 667 | 666,53,19,2024-05-25,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 668 | 667,80,14,2024-01-08,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 669 | 668,55,4,2024-04-25,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 670 | 669,19,19,2025-12-31,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 671 | 670,53,13,2024-03-31,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 672 | 671,24,5,2023-03-28,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 673 | 672,95,14,2025-02-15,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 674 | 673,74,12,2025-10-16,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 675 | 674,29,1,2023-08-30,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 676 | 675,24,9,2025-02-07,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 677 | 676,6,12,2024-03-14,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 678 | 677,6,17,2024-03-29,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 679 | 678,49,9,2025-05-19,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 680 | 679,10,8,2025-09-29,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 681 | 680,60,20,2025-06-12,4,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 682 | 681,48,16,2024-03-21,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 683 | 682,80,11,2023-01-05,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 684 | 683,22,10,2025-04-06,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 685 | 684,92,12,2025-01-12,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 686 | 685,86,14,2024-03-22,1,The color was different from what was shown.,0.0,Negative,0.0 to 0.49 687 | 686,31,17,2023-05-09,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 688 | 687,86,17,2023-07-16,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 689 | 688,32,12,2025-07-07,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 690 | 689,34,16,2025-04-23,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 691 | 690,61,19,2023-10-11,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 692 | 691,40,7,2024-07-27,3,Five stars for the quick delivery.,0.0,Neutral,0.0 to 0.49 693 | 692,64,10,2023-12-22,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 694 | 693,58,10,2023-08-31,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 695 | 694,27,13,2024-07-05,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 696 | 695,13,14,2023-09-15,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 697 | 696,48,11,2023-10-07,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 698 | 697,13,7,2024-09-21,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 699 | 698,4,18,2023-06-28,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 700 | 699,42,19,2023-01-30,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 701 | 700,14,2,2023-11-23,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 702 | 701,68,4,2023-01-02,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 703 | 702,92,3,2025-02-06,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 704 | 703,3,16,2024-04-17,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 705 | 704,8,20,2024-09-26,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 706 | 705,88,11,2025-05-25,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 707 | 706,75,5,2024-01-03,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 708 | 707,96,16,2024-08-08,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 709 | 708,70,17,2024-01-20,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 710 | 709,1,16,2023-02-25,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 711 | 710,88,7,2025-09-26,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 712 | 711,39,12,2023-12-07,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 713 | 712,53,17,2024-09-17,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 714 | 713,55,12,2024-12-12,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 715 | 714,76,2,2023-01-11,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 716 | 715,13,2,2024-03-26,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 717 | 716,64,2,2023-08-12,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 718 | 717,82,1,2025-03-07,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 719 | 718,30,20,2023-05-19,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 720 | 719,24,4,2025-12-03,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 721 | 720,41,4,2025-08-05,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 722 | 721,4,15,2024-09-25,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 723 | 722,68,16,2025-10-14,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 724 | 723,84,7,2023-11-22,2,The product arrived late.,0.0,Negative,0.0 to 0.49 725 | 724,31,3,2024-01-21,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 726 | 725,13,6,2025-09-30,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 727 | 726,33,20,2024-10-16,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 728 | 727,39,1,2025-09-24,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 729 | 728,30,1,2024-08-23,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 730 | 729,99,9,2023-03-17,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 731 | 730,67,6,2025-01-15,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 732 | 731,4,7,2023-07-13,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 733 | 732,56,20,2025-03-02,4,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 734 | 733,75,13,2024-11-07,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 735 | 734,63,2,2024-03-10,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 736 | 735,22,15,2024-03-02,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 737 | 736,72,6,2023-10-17,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 738 | 737,45,15,2023-10-11,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 739 | 738,3,12,2025-08-22,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 740 | 739,70,18,2023-07-05,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 741 | 740,33,5,2025-02-05,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 742 | 741,3,9,2025-05-24,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 743 | 742,84,7,2025-03-03,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 744 | 743,89,3,2023-05-15,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 745 | 744,63,19,2023-03-31,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 746 | 745,85,12,2024-05-17,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 747 | 746,24,13,2024-03-28,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 748 | 747,84,1,2023-04-27,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 749 | 748,100,13,2025-09-15,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 750 | 749,64,13,2025-06-28,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 751 | 750,3,5,2024-06-20,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 752 | 751,58,17,2025-07-11,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 753 | 752,7,12,2024-10-11,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 754 | 753,94,4,2023-01-29,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 755 | 754,55,11,2025-07-11,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 756 | 755,27,15,2024-03-31,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 757 | 756,94,8,2025-03-25,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 758 | 757,8,13,2023-09-27,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 759 | 758,53,1,2024-05-23,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 760 | 759,21,16,2024-12-13,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 761 | 760,100,5,2025-12-18,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 762 | 761,49,16,2025-03-17,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 763 | 762,39,13,2025-05-31,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 764 | 763,54,16,2023-08-16,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 765 | 764,84,11,2024-07-08,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 766 | 765,74,18,2024-12-11,1,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 767 | 766,83,7,2025-07-31,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 768 | 767,48,11,2023-10-09,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 769 | 768,24,16,2023-02-18,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 770 | 769,77,7,2024-09-02,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 771 | 770,52,1,2025-02-02,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 772 | 771,32,12,2025-03-21,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 773 | 772,62,4,2023-09-13,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 774 | 773,17,14,2024-06-21,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 775 | 774,46,6,2025-12-10,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 776 | 775,13,16,2025-08-31,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 777 | 776,17,13,2023-01-12,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 778 | 777,81,6,2024-02-14,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 779 | 778,97,7,2025-06-11,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 780 | 779,66,17,2025-05-25,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 781 | 780,83,1,2025-10-23,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 782 | 781,68,13,2024-06-06,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 783 | 782,25,3,2024-08-19,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 784 | 783,21,18,2024-11-30,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 785 | 784,22,16,2024-12-09,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 786 | 785,9,10,2025-10-11,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 787 | 786,37,13,2025-07-29,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 788 | 787,59,5,2024-08-08,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 789 | 788,83,15,2025-05-16,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 790 | 789,7,17,2023-04-08,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 791 | 790,73,9,2024-06-08,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 792 | 791,11,18,2023-06-27,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 793 | 792,88,14,2023-07-29,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 794 | 793,53,7,2025-05-21,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 795 | 794,24,17,2024-12-03,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 796 | 795,4,14,2024-12-16,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 797 | 796,27,17,2025-02-27,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 798 | 797,68,19,2025-02-22,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 799 | 798,95,13,2023-08-22,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 800 | 799,96,9,2025-07-17,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 801 | 800,74,8,2024-05-23,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 802 | 801,36,10,2023-01-09,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 803 | 802,12,16,2023-03-04,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 804 | 803,6,11,2023-09-22,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 805 | 804,16,8,2025-09-22,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 806 | 805,76,20,2024-10-28,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 807 | 806,18,9,2023-08-28,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 808 | 807,68,8,2025-03-06,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 809 | 808,49,6,2025-12-12,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 810 | 809,37,17,2023-08-20,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 811 | 810,56,2,2025-06-24,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 812 | 811,10,2,2024-01-28,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 813 | 812,80,20,2025-04-19,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 814 | 813,58,15,2024-03-28,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 815 | 814,93,3,2024-10-28,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 816 | 815,72,6,2025-11-19,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 817 | 816,91,1,2024-01-11,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 818 | 817,6,15,2024-11-17,3,Five stars for the quick delivery.,0.0,Neutral,0.0 to 0.49 819 | 818,55,20,2023-12-11,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 820 | 819,20,15,2024-05-12,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 821 | 820,47,19,2023-04-10,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 822 | 821,98,12,2025-10-19,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 823 | 822,47,15,2023-01-28,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 824 | 823,59,14,2024-09-29,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 825 | 824,77,13,2024-07-30,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 826 | 825,21,18,2023-01-10,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 827 | 826,8,11,2024-10-29,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 828 | 827,84,18,2025-04-05,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 829 | 828,53,20,2025-02-28,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 830 | 829,31,9,2023-05-17,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 831 | 830,61,19,2025-07-23,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 832 | 831,48,17,2025-08-30,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 833 | 832,44,17,2024-04-23,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 834 | 833,31,18,2023-08-29,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 835 | 834,74,1,2025-09-21,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 836 | 835,12,12,2024-05-07,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 837 | 836,52,9,2023-10-25,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 838 | 837,19,16,2023-12-11,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 839 | 838,61,17,2024-04-21,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 840 | 839,79,7,2024-08-02,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 841 | 840,44,10,2023-01-30,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 842 | 841,88,10,2023-08-25,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 843 | 842,70,17,2024-10-03,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 844 | 843,51,13,2025-08-28,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 845 | 844,66,10,2023-07-01,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 846 | 845,89,7,2023-07-26,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 847 | 846,17,17,2024-04-22,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 848 | 847,6,5,2025-05-29,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 849 | 848,6,18,2023-03-08,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 850 | 849,78,10,2025-02-01,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 851 | 850,89,12,2023-07-24,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 852 | 851,31,12,2025-11-29,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 853 | 852,37,11,2024-12-03,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 854 | 853,42,11,2023-05-19,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 855 | 854,7,5,2025-06-09,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 856 | 855,2,7,2024-01-08,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 857 | 856,23,6,2023-01-03,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 858 | 857,11,15,2023-10-17,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 859 | 858,92,17,2025-05-05,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 860 | 859,6,19,2024-06-25,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 861 | 860,27,5,2025-01-26,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 862 | 861,70,8,2024-04-18,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 863 | 862,4,10,2025-01-17,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 864 | 863,93,5,2025-07-05,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 865 | 864,85,1,2025-01-16,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 866 | 865,17,13,2025-03-03,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 867 | 866,36,16,2025-03-03,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 868 | 867,7,8,2023-07-20,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 869 | 868,10,14,2024-11-01,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 870 | 869,18,3,2023-02-02,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 871 | 870,19,2,2023-03-19,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 872 | 871,3,5,2024-03-20,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 873 | 872,96,3,2025-04-14,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 874 | 873,82,15,2025-06-21,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 875 | 874,78,8,2025-11-09,4,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 876 | 875,44,20,2023-11-27,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 877 | 876,10,19,2024-06-19,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 878 | 877,78,14,2024-08-28,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 879 | 878,24,10,2025-05-26,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 880 | 879,2,6,2023-09-16,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 881 | 880,29,13,2023-07-31,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 882 | 881,63,2,2023-04-25,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 883 | 882,6,7,2024-10-08,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 884 | 883,4,9,2023-07-08,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 885 | 884,24,2,2023-11-08,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 886 | 885,58,6,2024-09-10,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 887 | 886,95,15,2025-02-14,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 888 | 887,38,10,2025-03-17,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 889 | 888,83,4,2023-01-05,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 890 | 889,45,15,2024-10-02,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 891 | 890,59,5,2024-07-25,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 892 | 891,48,9,2025-02-26,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 893 | 892,27,4,2025-08-01,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 894 | 893,51,3,2024-02-06,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 895 | 894,82,4,2023-06-23,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 896 | 895,38,4,2024-10-28,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 897 | 896,40,20,2025-10-17,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 898 | 897,48,5,2025-01-05,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 899 | 898,76,15,2023-09-18,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 900 | 899,89,9,2024-01-02,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 901 | 900,10,5,2025-04-04,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 902 | 901,16,19,2023-02-15,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 903 | 902,75,13,2025-07-02,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 904 | 903,69,5,2025-10-05,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 905 | 904,68,9,2025-12-24,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 906 | 905,82,4,2024-05-05,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 907 | 906,92,17,2025-02-27,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 908 | 907,67,3,2023-10-21,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 909 | 908,37,9,2025-03-28,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 910 | 909,59,7,2023-09-08,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 911 | 910,92,5,2023-06-14,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 912 | 911,93,6,2024-06-27,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 913 | 912,100,2,2025-10-27,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 914 | 913,64,5,2024-09-06,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 915 | 914,81,19,2023-03-04,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 916 | 915,55,5,2024-12-21,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 917 | 916,40,5,2024-10-05,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 918 | 917,44,20,2025-05-17,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 919 | 918,50,4,2024-09-09,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 920 | 919,37,18,2025-02-14,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 921 | 920,28,1,2025-04-13,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 922 | 921,93,11,2023-06-26,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 923 | 922,92,4,2025-07-22,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 924 | 923,3,20,2024-02-07,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 925 | 924,62,19,2024-12-20,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 926 | 925,2,20,2025-02-10,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 927 | 926,86,12,2023-06-17,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 928 | 927,21,4,2024-08-08,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 929 | 928,10,9,2024-05-25,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 930 | 929,47,5,2024-10-09,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 931 | 930,83,19,2024-08-05,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 932 | 931,73,8,2023-09-27,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 933 | 932,11,20,2023-08-26,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 934 | 933,83,12,2023-01-11,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 935 | 934,44,3,2023-04-26,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 936 | 935,71,12,2025-08-28,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 937 | 936,99,15,2023-09-23,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 938 | 937,96,9,2023-06-08,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 939 | 938,29,12,2024-07-08,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 940 | 939,42,6,2024-08-09,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 941 | 940,15,12,2025-09-12,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 942 | 941,13,9,2023-05-21,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 943 | 942,69,2,2023-02-19,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 944 | 943,70,19,2023-04-15,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 945 | 944,72,2,2024-08-11,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 946 | 945,46,5,2025-12-05,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 947 | 946,96,7,2023-08-28,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 948 | 947,86,18,2025-11-02,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 949 | 948,29,10,2025-01-22,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 950 | 949,55,15,2025-08-25,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 951 | 950,96,9,2024-02-09,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 952 | 951,80,15,2024-07-11,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 953 | 952,46,15,2025-01-14,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 954 | 953,29,3,2025-11-22,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 955 | 954,26,8,2025-03-13,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 956 | 955,53,12,2023-03-15,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 957 | 956,33,2,2024-10-26,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 958 | 957,37,15,2024-02-26,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 959 | 958,45,1,2023-08-17,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 960 | 959,85,9,2025-01-01,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 961 | 960,81,2,2024-03-23,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 962 | 961,74,20,2024-07-10,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 963 | 962,95,18,2024-10-16,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 964 | 963,36,6,2023-11-17,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 965 | 964,60,18,2024-06-11,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 966 | 965,25,7,2024-12-15,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 967 | 966,21,6,2025-09-30,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 968 | 967,94,12,2024-04-22,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 969 | 968,46,14,2024-08-07,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 970 | 969,48,4,2023-04-09,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 971 | 970,43,2,2024-05-26,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 972 | 971,5,5,2024-12-17,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 973 | 972,18,19,2024-08-01,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 974 | 973,4,4,2024-01-23,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 975 | 974,13,6,2024-03-01,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 976 | 975,84,15,2023-06-12,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 977 | 976,80,7,2023-03-30,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 978 | 977,44,10,2023-06-28,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 979 | 978,46,13,2025-07-18,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 980 | 979,14,4,2024-03-16,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 981 | 980,92,14,2023-07-14,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 982 | 981,48,10,2023-05-13,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 983 | 982,63,7,2023-11-28,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 984 | 983,31,19,2024-05-28,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 985 | 984,88,11,2023-08-23,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 986 | 985,78,11,2025-10-23,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 987 | 986,20,7,2025-11-30,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 988 | 987,37,16,2024-09-15,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 989 | 988,14,14,2025-04-06,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 990 | 989,93,19,2023-06-11,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 991 | 990,7,4,2023-05-05,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 992 | 991,97,18,2025-03-10,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 993 | 992,77,2,2023-08-16,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 994 | 993,27,12,2025-01-10,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 995 | 994,62,5,2025-11-27,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 996 | 995,17,8,2025-07-29,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 997 | 996,85,10,2025-01-05,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 998 | 997,82,1,2023-10-03,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 999 | 998,34,11,2025-05-18,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1000 | 999,37,8,2023-05-28,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1001 | 1000,86,12,2025-11-17,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1002 | 1001,72,13,2023-12-06,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1003 | 1002,25,15,2025-05-15,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1004 | 1003,14,16,2025-03-31,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1005 | 1004,53,10,2024-01-14,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1006 | 1005,82,17,2024-10-23,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1007 | 1006,87,2,2023-06-14,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1008 | 1007,49,9,2024-02-15,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1009 | 1008,60,13,2025-09-05,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1010 | 1009,31,3,2025-11-21,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 1011 | 1010,3,3,2025-05-17,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1012 | 1011,80,19,2023-10-11,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1013 | 1012,26,3,2025-02-25,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1014 | 1013,32,8,2025-07-12,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1015 | 1014,81,20,2023-04-16,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1016 | 1015,25,2,2023-03-05,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1017 | 1016,30,16,2025-08-27,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1018 | 1017,84,13,2025-05-26,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1019 | 1018,44,20,2024-07-29,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1020 | 1019,25,12,2023-07-12,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1021 | 1020,100,5,2025-09-02,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1022 | 1021,49,20,2024-03-16,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1023 | 1022,71,5,2025-01-23,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1024 | 1023,77,18,2023-10-19,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1025 | 1024,85,19,2025-11-05,3,Shipping was fast and the item was well-packaged.,0.0,Neutral,0.0 to 0.49 1026 | 1025,31,16,2025-02-17,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1027 | 1026,90,12,2023-11-10,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1028 | 1027,22,14,2025-07-20,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1029 | 1028,66,3,2023-04-17,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1030 | 1029,66,6,2025-11-14,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1031 | 1030,46,16,2024-10-02,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1032 | 1031,28,1,2024-05-22,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1033 | 1032,46,17,2025-06-03,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1034 | 1033,74,11,2023-02-16,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1035 | 1034,34,19,2024-02-04,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1036 | 1035,77,9,2023-11-25,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1037 | 1036,24,7,2025-08-16,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 1038 | 1037,66,16,2024-05-20,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1039 | 1038,22,13,2024-05-28,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1040 | 1039,15,1,2024-11-25,3,Five stars for the quick delivery.,0.0,Neutral,0.0 to 0.49 1041 | 1040,100,19,2024-03-02,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1042 | 1041,19,18,2024-04-14,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1043 | 1042,68,1,2023-10-06,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1044 | 1043,29,12,2025-01-06,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1045 | 1044,79,1,2024-03-22,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1046 | 1045,33,19,2024-12-14,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1047 | 1046,45,8,2025-05-17,1,The product arrived late.,0.0,Negative,0.0 to 0.49 1048 | 1047,6,5,2025-10-09,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1049 | 1048,25,17,2025-11-18,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 1050 | 1049,50,2,2023-05-26,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1051 | 1050,83,8,2024-06-14,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1052 | 1051,63,5,2024-03-16,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1053 | 1052,55,5,2023-08-14,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1054 | 1053,6,16,2024-02-29,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1055 | 1054,82,17,2024-03-27,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1056 | 1055,17,7,2024-10-18,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1057 | 1056,68,17,2023-09-14,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1058 | 1057,49,17,2024-09-13,3,Shipping was fast and the item was well-packaged.,0.0,Neutral,0.0 to 0.49 1059 | 1058,32,16,2024-11-16,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 1060 | 1059,67,2,2023-12-23,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1061 | 1060,15,10,2023-05-05,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1062 | 1061,64,7,2023-12-17,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1063 | 1062,93,13,2023-11-21,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1064 | 1063,5,6,2025-09-21,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1065 | 1064,32,16,2024-09-02,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1066 | 1065,33,9,2023-03-21,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1067 | 1066,81,6,2025-08-29,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1068 | 1067,50,7,2024-05-09,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1069 | 1068,61,15,2025-08-16,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 1070 | 1069,84,9,2025-03-05,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1071 | 1070,23,20,2025-08-16,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1072 | 1071,23,7,2024-09-16,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1073 | 1072,51,2,2023-02-15,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1074 | 1073,30,10,2023-09-22,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1075 | 1074,21,13,2023-04-07,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1076 | 1075,52,9,2025-07-25,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1077 | 1076,22,9,2024-10-29,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1078 | 1077,95,14,2025-04-18,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1079 | 1078,8,2,2023-12-15,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1080 | 1079,73,16,2025-06-19,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1081 | 1080,86,16,2025-05-27,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1082 | 1081,91,5,2023-07-31,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1083 | 1082,87,13,2025-02-09,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1084 | 1083,40,6,2024-04-02,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1085 | 1084,99,12,2023-10-29,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1086 | 1085,46,6,2025-07-02,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1087 | 1086,47,11,2024-04-07,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1088 | 1087,35,10,2023-07-27,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1089 | 1088,55,13,2025-05-05,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1090 | 1089,54,12,2024-04-12,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1091 | 1090,3,14,2023-01-09,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1092 | 1091,72,2,2024-01-28,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1093 | 1092,82,5,2023-02-16,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1094 | 1093,25,8,2025-10-24,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1095 | 1094,48,11,2023-07-04,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1096 | 1095,31,15,2024-09-23,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1097 | 1096,82,13,2023-11-17,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1098 | 1097,47,12,2023-10-15,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1099 | 1098,62,15,2023-04-02,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1100 | 1099,90,12,2024-03-17,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1101 | 1100,88,14,2025-08-13,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1102 | 1101,58,13,2025-01-09,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1103 | 1102,35,12,2024-02-01,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1104 | 1103,39,5,2023-05-12,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1105 | 1104,39,6,2023-08-06,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1106 | 1105,20,16,2023-03-19,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1107 | 1106,37,5,2025-01-29,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1108 | 1107,51,14,2024-03-27,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1109 | 1108,50,3,2023-05-03,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 1110 | 1109,22,18,2023-06-09,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1111 | 1110,38,8,2024-04-26,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1112 | 1111,91,16,2024-01-25,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1113 | 1112,40,1,2023-06-07,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1114 | 1113,28,3,2024-11-23,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1115 | 1114,56,15,2025-06-14,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1116 | 1115,82,4,2023-10-12,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1117 | 1116,52,5,2025-05-22,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1118 | 1117,74,11,2023-09-12,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1119 | 1118,50,16,2023-05-15,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1120 | 1119,99,4,2024-01-19,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1121 | 1120,4,17,2024-09-30,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1122 | 1121,23,20,2023-06-25,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1123 | 1122,78,19,2023-12-03,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1124 | 1123,68,20,2024-06-02,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1125 | 1124,6,9,2025-10-22,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1126 | 1125,100,12,2025-07-20,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 1127 | 1126,10,19,2025-03-19,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1128 | 1127,82,15,2024-01-06,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1129 | 1128,77,6,2023-02-11,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1130 | 1129,80,10,2024-11-06,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1131 | 1130,88,13,2025-12-30,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1132 | 1131,97,2,2025-06-02,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1133 | 1132,68,9,2023-12-22,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1134 | 1133,46,19,2023-09-12,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1135 | 1134,29,8,2024-06-16,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1136 | 1135,77,12,2024-10-26,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1137 | 1136,62,8,2025-03-02,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1138 | 1137,73,5,2025-01-19,3,Five stars for the quick delivery.,0.0,Neutral,0.0 to 0.49 1139 | 1138,81,4,2024-12-23,3,The quality is top-notch.,0.0,Neutral,0.0 to 0.49 1140 | 1139,18,5,2024-02-28,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1141 | 1140,28,12,2023-03-07,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 1142 | 1141,24,17,2023-04-01,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1143 | 1142,4,2,2024-04-24,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1144 | 1143,75,18,2025-08-09,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1145 | 1144,24,8,2024-01-29,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1146 | 1145,61,8,2024-02-25,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1147 | 1146,88,15,2024-02-10,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1148 | 1147,79,5,2025-05-09,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1149 | 1148,94,2,2024-10-11,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1150 | 1149,67,13,2023-12-24,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1151 | 1150,90,3,2024-02-19,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1152 | 1151,46,15,2025-01-19,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1153 | 1152,23,14,2025-11-05,3,Customer support was very helpful.,0.6997,Mixed Positive,0.5 to 1.0 1154 | 1153,53,10,2023-06-17,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1155 | 1154,9,19,2023-07-09,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 1156 | 1155,1,12,2025-01-09,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1157 | 1156,79,18,2024-06-16,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1158 | 1157,13,12,2025-07-16,1,The product stopped working after a month.,-0.2263,Negative,-0.49 to 0.0 1159 | 1158,99,20,2024-07-29,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1160 | 1159,59,9,2025-01-29,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1161 | 1160,97,7,2025-12-26,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1162 | 1161,10,19,2023-01-01,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1163 | 1162,55,10,2024-06-08,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1164 | 1163,15,11,2023-10-04,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1165 | 1164,69,3,2023-01-04,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1166 | 1165,20,12,2024-02-06,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1167 | 1166,63,15,2024-11-10,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1168 | 1167,50,19,2024-08-21,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1169 | 1168,93,16,2025-09-21,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1170 | 1169,97,19,2025-06-24,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1171 | 1170,78,4,2023-12-19,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1172 | 1171,49,4,2024-01-12,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1173 | 1172,33,15,2025-04-03,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1174 | 1173,76,3,2025-08-09,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1175 | 1174,69,3,2025-08-24,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1176 | 1175,78,6,2025-07-04,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1177 | 1176,74,15,2025-05-27,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1178 | 1177,45,10,2023-12-28,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1179 | 1178,43,6,2024-09-08,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 1180 | 1179,84,7,2025-07-31,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1181 | 1180,64,18,2025-06-19,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1182 | 1181,28,8,2025-02-25,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1183 | 1182,70,15,2023-08-21,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1184 | 1183,91,4,2023-02-06,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1185 | 1184,5,18,2023-12-25,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1186 | 1185,5,12,2025-10-01,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1187 | 1186,80,11,2025-10-15,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1188 | 1187,66,9,2023-06-11,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1189 | 1188,17,2,2023-04-05,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1190 | 1189,32,20,2023-12-28,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1191 | 1190,16,4,2024-08-19,1,The product arrived late.,0.0,Negative,0.0 to 0.49 1192 | 1191,60,19,2023-08-27,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1193 | 1192,80,19,2024-05-21,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1194 | 1193,7,2,2025-06-13,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1195 | 1194,11,13,2023-03-01,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1196 | 1195,89,2,2023-11-19,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1197 | 1196,57,16,2024-06-07,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1198 | 1197,70,15,2024-10-30,1,The product arrived late.,0.0,Negative,0.0 to 0.49 1199 | 1198,92,1,2024-06-25,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1200 | 1199,71,7,2024-09-16,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1201 | 1200,89,17,2024-04-04,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1202 | 1201,14,11,2023-08-04,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1203 | 1202,28,17,2023-04-28,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1204 | 1203,2,19,2025-07-20,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1205 | 1204,19,18,2024-11-06,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1206 | 1205,73,17,2025-12-04,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1207 | 1206,50,12,2023-07-06,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1208 | 1207,90,18,2025-06-27,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1209 | 1208,16,15,2024-07-11,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1210 | 1209,53,10,2024-04-03,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1211 | 1210,67,8,2024-10-24,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1212 | 1211,30,18,2023-10-04,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1213 | 1212,82,19,2024-10-11,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1214 | 1213,14,9,2023-12-23,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1215 | 1214,100,10,2025-08-27,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1216 | 1215,68,7,2025-03-28,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1217 | 1216,53,11,2023-04-14,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1218 | 1217,81,18,2024-01-14,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1219 | 1218,8,9,2025-11-09,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1220 | 1219,49,7,2025-05-28,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1221 | 1220,25,8,2023-01-26,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1222 | 1221,42,17,2023-08-31,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1223 | 1222,57,6,2025-05-23,3,"I love this product, will buy again!",0.6696,Mixed Positive,0.5 to 1.0 1224 | 1223,18,16,2025-11-12,3,"Great purchase, very satisfied.",0.8016,Mixed Positive,0.5 to 1.0 1225 | 1224,82,14,2025-11-30,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1226 | 1225,93,8,2024-08-08,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1227 | 1226,75,5,2024-08-17,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1228 | 1227,30,14,2025-01-20,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1229 | 1228,57,1,2023-11-30,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1230 | 1229,31,17,2025-06-01,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1231 | 1230,55,18,2025-04-27,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1232 | 1231,81,7,2024-09-02,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1233 | 1232,7,17,2024-09-18,5,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1234 | 1233,73,5,2024-03-13,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1235 | 1234,37,8,2024-02-21,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1236 | 1235,87,1,2023-05-24,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1237 | 1236,60,3,2023-02-07,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1238 | 1237,94,17,2024-10-20,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 1239 | 1238,15,9,2025-06-13,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1240 | 1239,49,15,2024-02-07,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1241 | 1240,66,5,2025-02-28,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1242 | 1241,62,17,2024-03-11,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1243 | 1242,22,19,2025-02-08,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1244 | 1243,92,10,2023-11-08,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1245 | 1244,8,7,2024-01-20,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1246 | 1245,60,5,2025-12-19,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1247 | 1246,53,1,2024-08-04,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1248 | 1247,79,6,2024-08-08,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1249 | 1248,72,2,2025-12-19,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1250 | 1249,72,5,2025-01-23,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1251 | 1250,11,10,2025-10-23,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1252 | 1251,20,2,2024-06-10,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1253 | 1252,87,8,2024-12-10,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1254 | 1253,68,3,2024-06-30,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1255 | 1254,45,4,2024-02-16,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1256 | 1255,42,8,2025-12-15,5,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1257 | 1256,80,4,2025-08-12,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 1258 | 1257,93,10,2023-02-05,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1259 | 1258,80,1,2023-11-13,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1260 | 1259,66,15,2023-06-13,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1261 | 1260,47,6,2025-09-02,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1262 | 1261,12,18,2023-08-08,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1263 | 1262,46,17,2024-08-26,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 1264 | 1263,48,9,2023-09-20,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1265 | 1264,72,7,2023-05-07,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1266 | 1265,81,20,2023-04-29,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1267 | 1266,65,14,2025-07-01,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1268 | 1267,85,4,2024-07-11,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1269 | 1268,60,6,2023-10-06,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1270 | 1269,39,13,2024-02-09,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1271 | 1270,72,16,2025-07-11,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1272 | 1271,64,10,2024-04-28,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1273 | 1272,82,14,2025-12-24,4,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1274 | 1273,74,10,2024-02-19,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1275 | 1274,24,1,2025-08-14,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1276 | 1275,52,2,2023-06-06,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1277 | 1276,52,10,2024-11-05,2,"Good quality, but could be cheaper.",0.2382,Mixed Negative,0.0 to 0.49 1278 | 1277,20,11,2023-09-28,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1279 | 1278,25,17,2023-06-22,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1280 | 1279,54,8,2025-09-13,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1281 | 1280,88,19,2023-01-18,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1282 | 1281,58,12,2023-09-24,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1283 | 1282,7,19,2023-04-24,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1284 | 1283,67,2,2024-09-24,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1285 | 1284,2,12,2025-10-04,1,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1286 | 1285,81,12,2024-07-15,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1287 | 1286,89,19,2025-03-12,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1288 | 1287,69,17,2024-10-04,2,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1289 | 1288,77,8,2025-06-09,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1290 | 1289,52,7,2023-09-30,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1291 | 1290,30,6,2024-04-01,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1292 | 1291,90,2,2024-05-20,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1293 | 1292,16,5,2024-03-15,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1294 | 1293,23,2,2024-11-07,5,Exceeded my expectations!,0.0,Positive,0.0 to 0.49 1295 | 1294,86,11,2023-06-11,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1296 | 1295,61,8,2025-09-16,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1297 | 1296,60,9,2025-10-26,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1298 | 1297,87,5,2024-08-14,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1299 | 1298,82,1,2024-08-13,4,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1300 | 1299,44,18,2025-07-02,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1301 | 1300,6,11,2024-04-14,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1302 | 1301,79,13,2025-05-28,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1303 | 1302,20,11,2023-11-29,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1304 | 1303,99,3,2024-03-22,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1305 | 1304,77,15,2024-05-09,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1306 | 1305,24,4,2025-01-26,1,The product arrived late.,0.0,Negative,0.0 to 0.49 1307 | 1306,89,1,2023-09-03,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1308 | 1307,36,13,2024-05-16,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1309 | 1308,46,5,2025-02-03,4,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1310 | 1309,53,8,2024-10-12,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1311 | 1310,96,17,2025-11-19,3,"Good quality, but could be cheaper.",0.2382,Mixed Positive,0.0 to 0.49 1312 | 1311,71,13,2023-01-29,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1313 | 1312,11,18,2023-05-16,4,"Good quality, but could be cheaper.",0.2382,Positive,0.0 to 0.49 1314 | 1313,2,2,2025-06-30,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1315 | 1314,63,2,2025-03-17,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1316 | 1315,85,14,2023-05-28,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1317 | 1316,40,20,2025-05-24,2,"The product is okay, but the instructions were unclear.",-0.2617,Negative,-0.49 to 0.0 1318 | 1317,24,8,2025-11-08,1,The product arrived late.,0.0,Negative,0.0 to 0.49 1319 | 1318,28,1,2024-02-13,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1320 | 1319,84,6,2024-07-20,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1321 | 1320,74,10,2024-11-26,1,I had a bad experience with this product.,-0.5423,Negative,-1.0 to -0.5 1322 | 1321,32,3,2025-02-25,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1323 | 1322,70,16,2024-04-15,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1324 | 1323,61,17,2025-10-27,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1325 | 1324,36,10,2025-12-27,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1326 | 1325,66,12,2024-08-07,3,"I love this product, will buy again!",0.6696,Mixed Positive,0.5 to 1.0 1327 | 1326,69,4,2024-06-09,5,"Great purchase, very satisfied.",0.8016,Positive,0.5 to 1.0 1328 | 1327,37,9,2025-05-20,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1329 | 1328,97,11,2025-12-23,4,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1330 | 1329,45,19,2024-01-03,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1331 | 1330,24,12,2025-05-31,2,Not worth the money.,-0.1695,Negative,-0.49 to 0.0 1332 | 1331,88,5,2025-06-02,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1333 | 1332,72,4,2024-06-15,5,Amazing value for the price.,0.7351,Positive,0.5 to 1.0 1334 | 1333,6,3,2023-12-06,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1335 | 1334,39,11,2025-04-03,4,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1336 | 1335,43,15,2025-03-06,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1337 | 1336,95,9,2023-11-27,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 1338 | 1337,89,4,2023-10-09,3,"Average experience, nothing special.",-0.3089,Mixed Negative,-0.49 to 0.0 1339 | 1338,44,13,2025-02-01,2,Disappointed with the performance.,-0.4767,Negative,-0.49 to 0.0 1340 | 1339,76,19,2024-11-01,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1341 | 1340,62,7,2025-07-10,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1342 | 1341,64,7,2023-06-21,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1343 | 1342,91,1,2025-06-03,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1344 | 1343,39,4,2025-04-10,5,The build quality is impressive.,0.5106,Positive,0.5 to 1.0 1345 | 1344,31,20,2025-05-16,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1346 | 1345,55,18,2023-10-14,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1347 | 1346,47,6,2024-10-14,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1348 | 1347,21,11,2025-07-16,4,Shipping was fast and the item was well-packaged.,0.0,Positive,0.0 to 0.49 1349 | 1348,45,19,2024-02-14,5,"I love this product, will buy again!",0.6696,Positive,0.5 to 1.0 1350 | 1349,22,10,2025-04-11,4,Five stars for the quick delivery.,0.0,Positive,0.0 to 0.49 1351 | 1350,69,9,2024-02-01,3,"The product is okay, but the instructions were unclear.",-0.2617,Mixed Negative,-0.49 to 0.0 1352 | 1351,30,20,2023-07-23,1,"Not satisfied, the product broke after a week.",-0.6288,Negative,-1.0 to -0.5 1353 | 1352,50,14,2025-06-25,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1354 | 1353,34,5,2024-06-30,5,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1355 | 1354,53,8,2024-05-08,5,"Excellent product, highly recommend!",0.7773,Positive,0.5 to 1.0 1356 | 1355,9,20,2025-05-29,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1357 | 1356,14,15,2025-04-18,4,The quality is top-notch.,0.0,Positive,0.0 to 0.49 1358 | 1357,23,17,2024-01-03,1,"Terrible customer service, would not buy again.",-0.4767,Negative,-0.49 to 0.0 1359 | 1358,90,10,2024-01-16,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1360 | 1359,28,4,2023-05-25,3,Not worth the money.,-0.1695,Mixed Negative,-0.49 to 0.0 1361 | 1360,58,12,2023-11-13,2,"Average experience, nothing special.",-0.3089,Negative,-0.49 to 0.0 1362 | 1361,96,15,2023-03-07,5,Customer support was very helpful.,0.6997,Positive,0.5 to 1.0 1363 | 1362,99,2,2025-12-03,1,Product did not meet my expectations.,0.0,Negative,0.0 to 0.49 1364 | 1363,16,4,2024-07-16,2,The product arrived late.,0.0,Negative,0.0 to 0.49 1365 | -------------------------------------------------------------------------------- /Episode 4 - Calendar DAX Script.txt: -------------------------------------------------------------------------------- 1 | Calendar = 2 | ADDCOLUMNS ( 3 | CALENDAR ( DATE ( 2023, 1, 1 ), DATE ( 2025, 12, 31 ) ), 4 | "DateAsInteger", FORMAT ( [Date], "YYYYMMDD" ), 5 | "Year", YEAR ( [Date] ), 6 | "Monthnumber", FORMAT ( [Date], "MM" ), 7 | "YearMonthnumber", FORMAT ( [Date], "YYYY/MM" ), 8 | "YearMonthShort", FORMAT ( [Date], "YYYY/mmm" ), 9 | "MonthNameShort", FORMAT ( [Date], "mmm" ), 10 | "MonthNameLong", FORMAT ( [Date], "mmmm" ), 11 | "DayOfWeekNumber", WEEKDAY ( [Date] ), 12 | "DayOfWeek", FORMAT ( [Date], "dddd" ), 13 | "DayOfWeekShort", FORMAT ( [Date], "ddd" ), 14 | "Quarter", "Q" & FORMAT ( [Date], "Q" ), 15 | "YearQuarter", 16 | FORMAT ( [Date], "YYYY" ) & "/Q" 17 | & FORMAT ( [Date], "Q" ) 18 | ) 19 | -------------------------------------------------------------------------------- /Episode 4 - Dashboard.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmad-1987/DataAnalystPortfolioProject_PBI_SQL_Python_MarketingAnalytics/a0fd4f8427b45c2fc1e6d5fdcf72c30c591c2962/Episode 4 - Dashboard.pbix -------------------------------------------------------------------------------- /Episode 5 - Presentation Example.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliahmad-1987/DataAnalystPortfolioProject_PBI_SQL_Python_MarketingAnalytics/a0fd4f8427b45c2fc1e6d5fdcf72c30c591c2962/Episode 5 - Presentation Example.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DataAnalystPortfolioProject_PBI_SQL_Python_MarketingAnalytics 2 | --------------------------------------------------------------------------------