7 datasets found
  1. Smart phone price index, monthly

    • www150.statcan.gc.ca
    • datasets.ai
    • +3more
    Updated Apr 28, 2021
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Government of Canada, Statistics Canada (2021). Smart phone price index, monthly [Dataset]. http://doi.org/10.25318/1810020901-eng
    Explore at:
    Dataset updated
    Apr 28, 2021
    Dataset provided by
    Statistics Canadahttps://statcan.gc.ca/en
    Area covered
    Canada
    Description

    Smart phone price index (CPPI) by North American Product Classification System (NAPCS). The table includes annual data for the most recent reference period and the last four periods. Data are available from January 2015. The base period for the index is (2015=100).

  2. Global smartphone sales to end users 2007-2023

    • statista.com
    Updated Oct 15, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2024). Global smartphone sales to end users 2007-2023 [Dataset]. https://www.statista.com/statistics/263437/global-smartphone-sales-to-end-users-since-2007/
    Explore at:
    Dataset updated
    Oct 15, 2024
    Dataset authored and provided by
    Statistahttp://statista.com/
    Area covered
    Worldwide
    Description

    In 2022, smartphone vendors sold around 1.39 billion smartphones were sold worldwide, with this number forecast to drop to 1.34 billion in 2023.

    Smartphone penetration rate still on the rise

    Less than half of the world’s total population owned a smart device in 2016, but the smartphone penetration rate has continued climbing, reaching 78.05 percent in 2020. By 2025, it is forecast that almost 87 percent of all mobile users in the United States will own a smartphone, an increase from the 27 percent of mobile users in 2010.

    Smartphone end user sales

    In the United States alone, sales of smartphones were projected to be worth around 73 billion U.S. dollars in 2021, an increase from 18 billion dollars in 2010. Global sales of smartphones are expected to increase from 2020 to 2021 in every major region, as the market starts to recover from the initial impact of the coronavirus (COVID-19) pandemic.

  3. Smartphone Feature Optimization (Marketing Mix)

    • kaggle.com
    Updated May 8, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Adi Thuse (2025). Smartphone Feature Optimization (Marketing Mix) [Dataset]. https://www.kaggle.com/datasets/adithuse/smartphone-feature-optimization-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    May 8, 2025
    Dataset provided by
    Kaggle
    Authors
    Adi Thuse
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Description

    This synthetic but realistic dataset contains 90+ customer reviews for 6 smartphone models (from Apple, Samsung, and Google), along with: - Product specifications (Price, Screen Size, Battery, Camera, RAM, Storage, 5G, Water Resistance) - Customer reviews (Star Ratings, Review Text, Verified Purchase Status) - Sales data (Units Sold per Model)

    Potential Use Cases: ✅ Feature importance analysis (Which specs drive ratings?) ✅ Sentiment analysis (NLP on reviews) ✅ Pricing strategy optimization ✅ Market research (Comparing Apple vs. Samsung vs. Google)

    Smartphone Customer Satisfaction Survey

    Objective: Understand how product features influence purchasing decisions and satisfaction.

    Section 1: Demographic & Purchase Behavior

    1. Which smartphone brand did you purchase?

      • ☐ Apple
      • ☐ Samsung
      • ☐ Google
      • Maps to brand column.
    2. Which model did you purchase?

      • Apple: ☐ iPhone 14 | ☐ iPhone 15
      • Samsung: ☐ Galaxy S22 | ☐ Galaxy S23
      • Google: ☐ Pixel 7 | ☐ Pixel 8
      • Maps to model_name column.
    3. Where did you purchase the phone?

      • ☐ Online (e.g., Amazon, Brand Website)
      • ☐ Physical Store
      • Justifies verified_purchase (assumed online = verified).

    Section 2: Product Feature Ratings

    1. How would you rate the following features? (1 = Poor, 5 = Excellent)

      • Battery Life: ⭐⭐⭐⭐⭐
      • Camera Quality: ⭐⭐⭐⭐⭐
      • Screen Size: ⭐⭐⭐⭐⭐
      • Performance (RAM/Processor): ⭐⭐⭐⭐⭐
      • Aggregates into star_rating (average of these).
    2. Which feature is MOST important to you?

      • ☐ Battery Life
      • ☐ Camera Quality
      • ☐ Screen Size
      • ☐ Performance
      • ☐ Price
      • Explains review_text keywords (e.g., "battery" mentions).

    Section 3: Price & Satisfaction

    1. How do you feel about the price of your phone?

      • ☐ Very Affordable
      • ☐ Fairly Priced
      • ☐ Slightly Expensive
      • ☐ Too Expensive
      • Maps to price vs. star_rating correlation.
    2. Would you recommend this phone to others?

      • ☐ Definitely Yes
      • ☐ Probably Yes
      • ☐ Neutral
      • ☐ Probably No
      • ☐ Definitely No
      • Linked to star_rating (5 = Definitely Yes).

    Column Details (Metadata)

    Column Name (Type) Description "Example"**

    model_id (Integer) Unique ID for each phone model 1 (iPhone 14)

    brand (String) Manufacturer (Apple, Samsung, Google) "Apple"

    model_name (String) Name of the phone model "iPhone 15"

    price (Integer) Price in USD 999

    screen_size (Float) Screen size in inches 6.1

    battery (Integer) Battery capacity in mAh 4000

    camera_main (String) Main camera resolution (MP) "48MP"

    ram (Integer) RAM in GB 8

    storage (Integer) Storage in GB 128

    has_5g (Boolean) Whether the phone supports 5G TRUE

    water_resistant (String) Water resistance rating (IP68 or None) "IP68"

    units_sold (Integer) Estimated units sold (for market analysis) 15000

    review_id (Integer) Unique ID for each review 1

    user_name (String) Randomly generated reviewer name "John"

    star_rating (Integer) Rating from 1 (worst) to 5 (best) 5

    verified_purchase (Boolean) Whether the reviewer bought the product TRUE

    review_date (Date) Date of the review (YYYY-MM-DD) "2023-05-10"

    review_text (String) Simulated review text based on features & rating "The 48MP camera is amazing!"

    Suggested Analysis Ideas to inspire data analysis: A. Feature Impact on Ratings Regression: star_rating ~ battery + camera_main + price Key drivers: Does battery life affect ratings more than camera quality?

    B. Sentiment Analysis (NLP) Use tidytext (R) or NLTK (Python) to extract most-loved/hated features. Example: r library(tidytext) reviews_tidy <- final_data %>% unnest_tokens(word, review_text)
    reviews_tidy %>% count(word, sort = TRUE) %>% filter(n > 5)

    C. Brand Comparison Apple vs. Samsung vs. Google: Which brand has higher average ratings? Price sensitivity: Do cheaper phones (e.g., Pixel) get better value ratings?

    D. Sales vs. Features Correlation: units_sold ~ price + brand Premium segment analysis: Do iPhones sell more despite higher prices?

  4. d

    Telemarketing Data | Global Coverage | +95% Email and Phone Data Accuracy

    • datarade.ai
    .json, .csv
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Forager.ai, Telemarketing Data | Global Coverage | +95% Email and Phone Data Accuracy [Dataset]. https://datarade.ai/data-products/global-telemarketing-data-90m-accurate-mobile-numbers-ap-forager-ai
    Explore at:
    .json, .csvAvailable download formats
    Dataset provided by
    Forager.ai
    Area covered
    Austria, Cook Islands, Swaziland, Isle of Man, Sint Eustatius and Saba, Cameroon, Nicaragua, Nigeria, Kazakhstan, Iraq
    Description

    Global Telemarketing Data | 95% Phone & Email Accuracy | 270M+ Verified Contacts Forager.ai redefines telemarketing success with the world’s most actionable contact database. We combine 100M+ mobile numbers and 170M+ verified emails with deep company insights – all updated every 14 days to maintain 95% accuracy rates that outperform legacy providers.

    Why Telemarketing Teams Choose Us ✅ Dual-Channel Verified Every record confirms both working mobile numbers AND valid Personal email or Work email addresses – critical for multi-touch campaigns.

    ✅ Decision-Maker Intel 41% of contacts hold budget authority (Director to C-Suite) with:

    Direct mobile numbers

    Verified corporate emails

    Department hierarchy mapping

    Purchase intent signals

    ✅ Freshness Engine Bi-weekly verification sweeps catch: ✖ Job changers (23% of database monthly) ✖ Company restructuring ✖ Number/email deactivations

    ✅ Compliance Built-In Automated opt-out management + full GDPR/CCPA documentation.

    Your Complete Telemarketing Toolkit Core Data Points: ✔ Direct dial mobile/work numbers ✔ Verified corporate email addresses ✔ Job title & decision-making authority ✔ Company size/revenue/tech stack ✔ Department structure & team size ✔ Location data (HQ/local offices) ✔ LinkedIn/Social media validation

    Proven Use Cases • Cold Calling 2.0: Target CROs with mobile numbers + know their tech stack before dialing • Email-to-Call Sequencing: Match verified emails to mobile numbers for 360° outreach • List Hygiene: Clean existing CRM contacts against our live database • Market Expansion: Target specific employee counts (50-200 person companies) • Event Follow-Ups: Re-engage webinar/trade show leads with updated contact info

    Enterprise-Grade Delivery

    Real-Time API: Connect to Five9/Aircall/Salesforce

    CRM-Ready Files: CSV with custom fields

    Compliance Hub: Automated opt-out tracking

    PostgreSQL Sync/ JSON files: 2-3 weeks updates for large datasets

    Why We Outperform Competitors → 62% Connect Rate: Actual client result vs. industry 38% average → 3:1 ROI Guarantee: We’ll prove value or extend your license → Free Audit: Upload 10K contacts – we’ll show % salvageable

    Need Convincing? Free API test account → Experience our accuracy firsthand. See why 89% of trial users convert to paid plans.

    Telemarketing Data | Verified Contact Database | Cold Calling Lists | Phone & Email Data | Decision-Maker Contacts | CRM Enrichment | GDPR-Compliant Leads | B2B Contact Data | Sales Prospecting | ABM Targeting

  5. N

    Mobile, AL Median Household Income Trends (2010-2021, in 2022...

    • neilsberg.com
    csv, json
    Updated Jan 11, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2024). Mobile, AL Median Household Income Trends (2010-2021, in 2022 inflation-adjusted dollars) [Dataset]. https://www.neilsberg.com/research/datasets/919161c7-73f0-11ee-949f-3860777c1fe6/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Jan 11, 2024
    Dataset authored and provided by
    Neilsberg Research
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Area covered
    Mobile, Alabama
    Variables measured
    Median Household Income, Median Household Income Year on Year Change, Median Household Income Year on Year Percent Change
    Measurement technique
    The data presented in this dataset is derived from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 5-Year Estimates. It presents the median household income from the years 2010 to 2021 following an initial analysis and categorization of the census data. Subsequently, we adjusted these figures for inflation using the Consumer Price Index retroactive series via current methods (R-CPI-U-RS). For additional information about these estimations, please contact us via email at research@neilsberg.com
    Dataset funded by
    Neilsberg Research
    Description
    About this dataset

    Context

    The dataset illustrates the median household income in Mobile, spanning the years from 2010 to 2021, with all figures adjusted to 2022 inflation-adjusted dollars. Based on the latest 2017-2021 5-Year Estimates from the American Community Survey, it displays how income varied over the last decade. The dataset can be utilized to gain insights into median household income trends and explore income variations.

    Key observations:

    From 2010 to 2021, the median household income for Mobile decreased by $1,596 (3.19%), as per the American Community Survey estimates. In comparison, median household income for the United States increased by $4,559 (6.51%) between 2010 and 2021.

    Analyzing the trend in median household income between the years 2010 and 2021, spanning 11 annual cycles, we observed that median household income, when adjusted for 2022 inflation using the Consumer Price Index retroactive series (R-CPI-U-RS), experienced growth year by year for 4 years and declined for 7 years.

    https://i.neilsberg.com/ch/mobile-al-median-household-income-trend.jpeg" alt="Mobile, AL median household income trend (2010-2021, in 2022 inflation-adjusted dollars)">

    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2017-2021 5-Year Estimates. All incomes have been adjusting for inflation and are presented in 2022-inflation-adjusted dollars.

    Years for which data is available:

    • 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021

    Variables / Data Columns

    • Year: This column presents the data year from 2010 to 2021
    • Median Household Income: Median household income, in 2022 inflation-adjusted dollars for the specific year
    • YOY Change($): Change in median household income between the current and the previous year, in 2022 inflation-adjusted dollars
    • YOY Change(%): Percent change in median household income between current and the previous year

    Good to know

    Margin of Error

    Data in the dataset are based on the estimates and are subject to sampling variability and thus a margin of error. Neilsberg Research recommends using caution when presening these estimates in your research.

    Custom data

    If you do need custom data for any of your research project, report or presentation, you can contact our research staff at research@neilsberg.com for a feasibility of a custom tabulation on a fee-for-service basis.

    Inspiration

    Neilsberg Research Team curates, analyze and publishes demographics and economic data from a variety of public and proprietary sources, each of which often includes multiple surveys and programs. The large majority of Neilsberg Research aggregated datasets and insights is made available for free download at https://www.neilsberg.com/research/.

    Recommended for further research

    This dataset is a part of the main dataset for Mobile median household income. You can refer the same here

  6. Auto mobile pricing

    • kaggle.com
    Updated Apr 2, 2018
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    kiran (2018). Auto mobile pricing [Dataset]. https://www.kaggle.com/kiran1995/auto-mobile-pricing/discussion
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Apr 2, 2018
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    kiran
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Description
    1. Title: 1985 Auto Imports Database

    2. Source Information: -- Creator/Donor: Jeffrey C. Schlimmer (Jeffrey.Schlimmer@a.gp.cs.cmu.edu) -- Date: 19 May 1987 -- Sources: 1) 1985 Model Import Car and Truck Specifications, 1985 Ward's Automotive Yearbook. 2) Personal Auto Manuals, Insurance Services Office, 160 Water Street, New York, NY 10038 3) Insurance Collision Report, Insurance Institute for Highway Safety, Watergate 600, Washington, DC 20037

    3. Past Usage: -- Kibler,~D., Aha,~D.~W., & Albert,~M. (1989). Instance-based prediction of real-valued attributes. {\it Computational Intelligence}, {\it 5}, 51--57. -- Predicted price of car using all numeric and Boolean attributes -- Method: an instance-based learning (IBL) algorithm derived from a localized k-nearest neighbor algorithm. Compared with a linear regression prediction...so all instances with missing attribute values were discarded. This resulted with a training set of 159 instances, which was also used as a test set (minus the actual instance during testing). -- Results: Percent Average Deviation Error of Prediction from Actual -- 11.84% for the IBL algorithm -- 14.12% for the resulting linear regression equation

    4. Relevant Information: -- Description This data set consists of three types of entities: (a) the specification of an auto in terms of various characteristics, (b) its assigned insurance risk rating, (c) its normalized losses in use as compared to other cars. The second rating corresponds to the degree to which the auto is more risky than its price indicates. Cars are initially assigned a risk factor symbol associated with its price. Then, if it is more risky (or less), this symbol is adjusted by moving it up (or down) the scale. Actuarians call this process "symboling". A value of +3 indicates that the auto is risky, -3 that it is probably pretty safe.

      The third factor is the relative average loss payment per insured vehicle year. This value is normalized for all autos within a particular size classification (two-door small, station wagons, sports/speciality, etc...), and represents the average loss per car per year.

      -- Note: Several of the attributes in the database could be used as a "class" attribute.

    5. Number of Instances: 205

    6. Number of Attributes: 26 total -- 15 continuous -- 1 integer -- 10 nominal

    7. Attribute Information:
      Attribute: Attribute Range:

      1. symboling: -3, -2, -1, 0, 1, 2, 3.
      2. normalized-losses: continuous from 65 to 256.
      3. make: alfa-romero, audi, bmw, chevrolet, dodge, honda, isuzu, jaguar, mazda, mercedes-benz, mercury, mitsubishi, nissan, peugot, plymouth, porsche, renault, saab, subaru, toyota, volkswagen, volvo
      4. fuel-type: diesel, gas.
      5. aspiration: std, turbo.
      6. num-of-doors: four, two.
      7. body-style: hardtop, wagon, sedan, hatchback, convertible.
      8. drive-wheels: 4wd, fwd, rwd.
      9. engine-location: front, rear.
      10. wheel-base: continuous from 86.6 120.9.
      11. length: continuous from 141.1 to 208.1.
      12. width: continuous from 60.3 to 72.3.
      13. height: continuous from 47.8 to 59.8.
      14. curb-weight: continuous from 1488 to 4066.
      15. engine-type: dohc, dohcv, l, ohc, ohcf, ohcv, rotor.
      16. num-of-cylinders: eight, five, four, six, three, twelve, two.
      17. engine-size: continuous from 61 to 326.
      18. fuel-system: 1bbl, 2bbl, 4bbl, idi, mfi, mpfi, spdi, spfi.
      19. bore: continuous from 2.54 to 3.94.
      20. stroke: continuous from 2.07 to 4.17.
      21. compression-ratio: continuous from 7 to 23.
      22. horsepower: continuous from 48 to 288.
      23. peak-rpm: continuous from 4150 to 6600.
      24. city-mpg: continuous from 13 to 49.
      25. highway-mpg: continuous from 16 to 54.
      26. price: continuous from 5118 to 45400.
    8. Missing Attribute Values: (denoted by "?") Attribute #: Number of instances missing a value:

      1. 41
      2. 2
      3. 4
      4. 4
      5. 2
      6. 2
      7. 4
  7. Global smartphone unit shipments of Samsung 2010-2024, by quarter

    • statista.com
    • ai-chatbox.pro
    Updated Jan 14, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2025). Global smartphone unit shipments of Samsung 2010-2024, by quarter [Dataset]. https://www.statista.com/statistics/299144/samsung-smartphone-shipments-worldwide/
    Explore at:
    Dataset updated
    Jan 14, 2025
    Dataset authored and provided by
    Statistahttp://statista.com/
    Area covered
    Worldwide
    Description

    In the fourth quarter of 2024, Samsung shipped around 52 million smartphones, a decrease from the both the previous quarter and the same quarter of the previous year. Samsung’s sales consistently place the smartphone giant among the top three smartphone vendors in the world, alongside Xiaomi and Apple. Samsung smartphone sales – how many phones does Samsung sell? Global smartphone sales reached over 1.2 billion units during 2024. While the global smartphone market is led by Samsung and Apple, Xiaomi has gained ground following the decline of Huawei. Together, these three companies hold more than 50 percent of the global smartphone market share.

  8. Not seeing a result you expected?
    Learn how you can add new datasets to our index.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Government of Canada, Statistics Canada (2021). Smart phone price index, monthly [Dataset]. http://doi.org/10.25318/1810020901-eng
Organization logo

Smart phone price index, monthly

1810020901

Explore at:
Dataset updated
Apr 28, 2021
Dataset provided by
Statistics Canadahttps://statcan.gc.ca/en
Area covered
Canada
Description

Smart phone price index (CPPI) by North American Product Classification System (NAPCS). The table includes annual data for the most recent reference period and the last four periods. Data are available from January 2015. The base period for the index is (2015=100).

Search
Clear search
Close search
Google apps
Main menu