22 datasets found
  1. Replication dataset and calculations for PIIE Briefing 25-2 The US Revenue...

    • piie.com
    Updated Apr 22, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Warwick J. McKibbin; Geoffrey Shuetrim (2025). Replication dataset and calculations for PIIE Briefing 25-2 The US Revenue Implications of President Trump’s 2025 Tariffs by Warwick McKibbin and Geoffrey Shuetrim (2025). [Dataset]. https://www.piie.com/publications/piie-briefings/2025/us-revenue-implications-president-trumps-2025-tariffs
    Explore at:
    Dataset updated
    Apr 22, 2025
    Dataset provided by
    Peterson Institute for International Economicshttp://www.piie.com/
    Authors
    Warwick J. McKibbin; Geoffrey Shuetrim
    Description

    This data package includes the underlying data to replicate the charts, tables, and calculations presented in The US Revenue Implications of President Trump’s 2025 Tariffs, PIIE Briefing 25-2.

    If you use the data, please cite as:

    McKibbin, Warwick, and Geoffrey Shuetrim. 2025. The US Revenue Implications of President Trump’s 2025 Tariffs. PIIE Briefing 25-2. Washington: Peterson Institute for International Economics.

  2. Replication dataset for PIIE PB 24-1, Why Trump’s tariff proposals would...

    • piie.com
    Updated May 20, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Kimberly Clausing; Mary E. Lovely (2024). Replication dataset for PIIE PB 24-1, Why Trump’s tariff proposals would harm working Americans by Kimberly Clausing and Mary E. Lovely (2024). [Dataset]. https://www.piie.com/publications/policy-briefs/2024/why-trumps-tariff-proposals-would-harm-working-americans
    Explore at:
    Dataset updated
    May 20, 2024
    Dataset provided by
    Peterson Institute for International Economicshttp://www.piie.com/
    Authors
    Kimberly Clausing; Mary E. Lovely
    Area covered
    United States
    Description

    This data package includes the underlying data files to replicate the data, tables, and charts presented in Why Trump’s tariff proposals would harm working Americans, PIIE Policy Brief 24-1.

    If you use the data, please cite as: Clausing, Kimberly, and Mary E. Lovely. 2024. Why Trump’s tariff proposals would harm working Americans. PIIE Policy Brief 24-1. Washington, DC: Peterson Institute for International Economics.

  3. Define Best Tariff for a Telecom Company

    • kaggle.com
    Updated Aug 9, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Roman Nikiforov (2024). Define Best Tariff for a Telecom Company [Dataset]. https://www.kaggle.com/datasets/romanniki/prospective-tariff-for-a-telecom-company/discussion
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Aug 9, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Roman Nikiforov
    License

    Apache License, v2.0https://www.apache.org/licenses/LICENSE-2.0
    License information was derived automatically

    Description

    Determining the Prospective Tariff for a Telecom Company

    Project Description

    You are an analyst at "Megaline," a federal mobile operator. The company offers two tariff plans to customers: "Smart" and "Ultra." To adjust the advertising budget, the commercial department wants to understand which tariff generates more revenue.

    You need to conduct a preliminary analysis of the tariffs on a small sample of customers. You have data on 500 users of "Megaline": who they are, where they are from, which tariff they use, how many calls and messages they sent in 2018. You need to analyze customer behavior and conclude which tariff is better.

    Tariff Descriptions

    "Smart" Tariff: - Monthly fee: 550 rubles - Included: 500 minutes of calls, 50 messages, and 15 GB of internet traffic - Cost of services beyond the tariff package: 1. Call minute: 3 rubles (Megaline always rounds up minutes and megabytes. If the user talked for just 1 second, it counts as a whole minute); 2. Message: 3 rubles; 3. 1 GB of internet traffic: 200 rubles.

    "Ultra" Tariff: - Monthly fee: 1950 rubles - Included: 3000 minutes of calls, 1000 messages, and 30 GB of internet traffic - Cost of services beyond the tariff package: 1. Call minute: 1 ruble; 2. Message: 1 ruble; 3. 1 GB of internet traffic: 150 rubles.

    Note: Megaline always rounds up seconds to minutes and megabytes to gigabytes. Each call is rounded up individually: even if it lasted just 1 second, it is counted as 1 minute. For web traffic, separate sessions are not counted. Instead, the total amount for the month is rounded up. If a subscriber uses 1025 megabytes in a month, they are charged for 2 gigabytes.

    Project Steps

    Step 1: Open the file with data and study the general information File paths: - /datasets/calls.csv - /datasets/internet.csv - /datasets/messages.csv - /datasets/tariffs.csv - /datasets/users.csv

    Step 2: Prepare the data - Convert data to the required types; - Find and fix errors in the data, if any. Explain what errors you found and how you fixed them. You will find calls with zero duration in the data. This is not an error: missed calls are indicated by zeros, so they do not need to be deleted.

    For each user, calculate: - Number of calls made and minutes spent per month; - Number of messages sent per month; - Amount of internet traffic used per month; - Monthly revenue from each user (subtract the free limit from the total number of calls, messages, and internet traffic; multiply the remainder by the value from the tariff plan; add the corresponding tariff plan's subscription fee).

    Step 3: Analyze the data Describe the behavior of the operator's customers based on the sample. How many minutes of calls, how many messages, and how much internet traffic do users of each tariff need per month? Calculate the average, variance, and standard deviation. Create histograms. Describe the distributions.

    Step 4: Test hypotheses - The average revenue of users of the "Ultra" and "Smart" tariffs is different; - The average revenue of users from Moscow differs from the revenue of users from other regions. Moscow is written as 'Москва'. You can put it in your value, when check the hypothesis

    Set the threshold alpha value yourself.

    Explain: - How you formulated the null and alternative hypotheses; - Which criterion you used to test the hypotheses and why.

    Step 5: Write a general conclusion

    Formatting: Perform the task in Jupyter Notebook. Fill the program code in the cells of type code, and the textual explanations in the cells of type markdown. Apply formatting and headers.

    Data Description

    Table users (user information): - user_id: unique user identifier - first_name: user's first name - last_name: user's last name - age: user's age (years) - reg_date: date of tariff connection (day, month, year) - churn_date: date of tariff discontinuation (if the value is missing, the tariff was still active at the time of data extraction) - city: user's city of residence - tariff: name of the tariff plan

    Table calls (call information): - id: unique call number - call_date: call date - duration: call duration in minutes - user_id: identifier of the user who made the call

    Table messages (message information): - id: unique message number - message_date: message date - user_id: identifier of the user who sent the message

    Table internet (internet session information): - id: unique session number - mb_used: amount of internet traffic used during the session (in megabytes) - session_date: internet session date - user_id: user identifier

    Table tariffs (tariff information): - tariff_name: tariff name - rub_monthly_fee: monthly subscription fee in rubles - minutes_included: number of call minutes included per month - `messages_included...

  4. Trade in Services Database

    • datacatalog.worldbank.org
    zip
    Updated Feb 3, 2015
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ssaez@worldbank.org (2015). Trade in Services Database [Dataset]. https://datacatalog.worldbank.org/dataset/trade-services-database
    Explore at:
    zipAvailable download formats
    Dataset updated
    Feb 3, 2015
    Dataset provided by
    World Bankhttp://topics.nytimes.com/top/reference/timestopics/organizations/w/world_bank/index.html
    License

    https://datacatalog.worldbank.org/public-licenses?fragment=cchttps://datacatalog.worldbank.org/public-licenses?fragment=cc

    Description

    The Trade in Services Database provides information on annual bilateral services trade flows in Mode 1 (cross-border trade) and Mode 2 (consumption abroad) for 199 countries across a multitude of sectors and years spanning 1985 and 2011. The collection of data on cross-border trade in services is notoriously difficult, in large part due to the intangible nature of services but also the high capacity needed to record such data. This is particularly true for developing countries. This database tries to fill this gap by consolidating multiple sources of bilateral trade data in services using mirror techniques, including the OECD, Eurostat, UN and IMF, as to provide a broader coverage of developed and developing countries over time. Mirror-technique is a method to retrieve export trade flows of a reporter by using information on imports of the partner country. As a word of caution it should be added that the quality of trade data in services is still far away from being comparable to trade data for merchandise goods. Due to the long tradition of tariff revenues, trade data for goods have been collected with quite high quality and accuracy. Due to intangibility and non-storability of services, at-the-border-duties cannot be applied to services, thus having resulted in much weaker compilation practices with considerably less accuracy. Thus, services statistics has ample space for improvement in terms of measurement. In particular with respect to modes 3 and 4, measurement is up to date difficult and incomplete. Ongoing revisions and refinements of the BOP classification work towards solving these issues. As such, the Trade in Services Database should be seen in this light as the best currently available approximation to a comprehensive picture of global trade flows in services.

  5. U.S. Government Revenue Collections

    • fiscaldata.treasury.gov
    csv, json, xml
    Updated Mar 13, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. DEPARTMENT OF THE TREASURY (2021). U.S. Government Revenue Collections [Dataset]. https://fiscaldata.treasury.gov/datasets/revenue-collections-management/
    Explore at:
    csv, xml, jsonAvailable download formats
    Dataset updated
    Mar 13, 2021
    Dataset provided by
    United States Department of the Treasuryhttps://treasury.gov/
    Authors
    U.S. DEPARTMENT OF THE TREASURY
    Time period covered
    Oct 1, 2004 - Aug 29, 2025
    Area covered
    United States
    Description

    Daily overview of federal revenue collections such as income tax deposits, customs duties, fees for government service, fines, and loan repayments.

  6. SLDC Parking Account - Dataset - data.gov.uk

    • ckan.publishing.service.gov.uk
    Updated Feb 2, 2015
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ckan.publishing.service.gov.uk (2015). SLDC Parking Account - Dataset - data.gov.uk [Dataset]. https://ckan.publishing.service.gov.uk/dataset/sldc-parking-account
    Explore at:
    Dataset updated
    Feb 2, 2015
    Dataset provided by
    CKANhttps://ckan.org/
    License

    Open Government Licence 3.0http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
    License information was derived automatically

    Description

    This dataset contains an annual summary of the car parking account from South Lakeland District Council. Please note; figures published in April are interim figures and will be updated later in the year once the final accounts have been audited. These include a breakdown of the income and expenditure on the parking account. SLDC’s car parking account only relates to the off-street car parks that it owns or manages; it does not collect for, or enforce any on-street parking. Expenditure includes cost for the provision and maintenance of designated off street parking places by the local authority. Surplus statement: There are strict rules established by Government that stipulate how surplus parking funds are spent, but there are differences between on and off-street parking Any surpluses from on-street parking and both on and off-street enforcement must be used in accordance with section 55 of the Road Traffic Regulation Act 1984. This means that any income remaining after enforcement costs must be used for transport. Income from off-street parking fees and charges can be for general use by the local authority. The Council only operates off-street car parks and enforcement of them. This authority has to balance the parking needs of residents plus a much-increased transient population visiting the area. We are always looking at ways of improving use of our car parks, such as increasing capacity of underused car parks. There has been no overall increase in tariffs since 2011-12 and lower charges or new tariffs have been established with the aim of making best use of resources and reducing congestion. For example, we have introduced an ‘Early Bird’ tariff in Westmorland Shopping Centre car park saving £3.80 on the daily rate, and set a tariff of £1.20 for all-day parking in a car park in Grange-over-Sands, saving £4.50. Any surplus funds raised from off-street parking facilities after expenditure including car park maintenance and improvement, are used to offset the costs to the Council of providing services to the public, which would otherwise have to be met through Council Tax. Further information about the council’s car parks including location, number of parking bays, number of disabled parking spaces and charges can be found in the Car Parks in South Lakeland dataset.

  7. k

    World Competitiveness Ranking based on Criteria

    • datasource.kapsarc.org
    Updated Mar 13, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). World Competitiveness Ranking based on Criteria [Dataset]. https://datasource.kapsarc.org/explore/dataset/world-competitiveness-ranking-based-on-criteria-2016/
    Explore at:
    Dataset updated
    Mar 13, 2024
    Description

    Explore the World Competitiveness Ranking dataset for 2016, including key indicators such as GDP per capita, fixed telephone tariffs, and pension funding. Discover insights on social cohesion, scientific research, and digital transformation in various countries.

    Social cohesion, The image abroad of your country encourages business development, Scientific articles published by origin of author, International Telecommunication Union, World Telecommunication/ICT Indicators database, Data reproduced with the kind permission of ITU, National sources, Fixed telephone tariffs, GDP (PPP) per capita, Overall, Exports of goods - growth, Pension funding is adequately addressed for the future, Companies are very good at using big data and analytics to support decision-making, Gross fixed capital formation - real growth, Economic Performance, Scientific research legislation, Percentage of GDP, Health infrastructure meets the needs of society, Estimates based on preliminary data for the most recent year., Singapore: including re-exports., Value, Laws relating to scientific research do encourage innovation, % of GDP, Gross Domestic Product (GDP), Health Infrastructure, Digital transformation in companies is generally well understood, Industrial disputes, EE, Female / male ratio, State ownership of enterprises, Total expenditure on R&D (%), Score, Colombia, Estimates for the most recent year., Percentage change, based on US$ values, Number of listed domestic companies, Tax evasion is not a threat to your economy, Scientific articles, Tax evasion, % change, Use of big data and analytics, National sources, Disposable Income, Equal opportunity, Listed domestic companies, Government budget surplus/deficit (%), Pension funding, US$ per capita at purchasing power parity, Estimates; US$ per capita at purchasing power parity, Image abroad or branding, Equal opportunity legislation in your economy encourages economic development, Number, Article counts are from a selection of journals, books, and conference proceedings in S&E from Scopus. Articles are classified by their year of publication and are assigned to a region/country/economy on the basis of the institutional address(es) listed in the article. Articles are credited on a fractional-count basis. The sum of the countries/economies may not add to the world total because of rounding. Some publications have incomplete address information for coauthored publications in the Scopus database. The unassigned category count is the sum of fractional counts for publications that cannot be assigned to a country or economy. Hong Kong: research output items by the higher education institutions funded by the University Grants Committee only., State ownership of enterprises is not a threat to business activities, Protectionism does not impair the conduct of your business, Digital transformation in companies, Total final energy consumption per capita, Social cohesion is high, Rank, MTOE per capita, Percentage change, based on constant prices, US$ billions, National sources, World Trade Organization Statistics database, Rank, Score, Value, World Rankings

    Argentina, Australia, Austria, Belgium, Brazil, Bulgaria, Canada, Chile, China, Colombia, Croatia, Cyprus, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Iceland, India, Indonesia, Ireland, Israel, Italy, Japan, Jordan, Kazakhstan, Latvia, Lithuania, Luxembourg, Malaysia, Mexico, Mongolia, Netherlands, New Zealand, Norway, Oman, Peru, Philippines, Poland, Portugal, Qatar, Romania, Russia, Saudi Arabia, Singapore, Slovenia, South Africa, Spain, Sweden, Switzerland, Thailand, Turkey, Ukraine, United Kingdom, Venezuela

    Follow data.kapsarc.org for timely data to advance energy economics research.

  8. t

    Summary of Receipts by Source, and Outlays by Function of the U.S....

    • fiscaldata.treasury.gov
    Updated Jul 13, 2020
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2020). Summary of Receipts by Source, and Outlays by Function of the U.S. Government [Dataset]. https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/
    Explore at:
    Dataset updated
    Jul 13, 2020
    Description

    This summary table shows, for Budget Receipts, the total amount of activity for the current month, the current fiscal year-to-date, the comparable prior period year-to-date and the budgeted amount estimated for the current fiscal year for various types of receipts (i.e. individual income tax, corporate income tax, etc.). The Budget Outlays section of the table shows the total amount of activity for the current month, the current fiscal year-to-date, the comparable prior period year-to-date and the budgeted amount estimated for the current fiscal year for functions of the federal government. The table also shows the amounts for the budget/surplus deficit categorized as listed above. This table includes total and subtotal rows that should be excluded when aggregating data. Some rows represent elements of the dataset's hierarchy, but are not assigned values. The classification_id for each of these elements can be used as the parent_id for underlying data elements to calculate their implied values. Subtotal rows are available to access this same information.

  9. T

    United States Government Budget

    • tradingeconomics.com
    • es.tradingeconomics.com
    • +13more
    csv, excel, json, xml
    Updated Aug 12, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    TRADING ECONOMICS (2025). United States Government Budget [Dataset]. https://tradingeconomics.com/united-states/government-budget-value
    Explore at:
    csv, excel, json, xmlAvailable download formats
    Dataset updated
    Aug 12, 2025
    Dataset authored and provided by
    TRADING ECONOMICS
    License

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

    Time period covered
    Jan 31, 1954 - Jul 31, 2025
    Area covered
    United States
    Description

    The United States recorded a government budget deficit of 291000 USD Million in July of 2025. This dataset provides - United States Government Budget Value - actual values, historical data, forecast, chart, statistics, economic calendar and news.

  10. t

    Income Tax Refunds Issued

    • fiscaldata.treasury.gov
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Income Tax Refunds Issued [Dataset]. https://fiscaldata.treasury.gov/datasets/daily-treasury-statement/
    Explore at:
    Description

    This table represents the breakdown of tax refunds by recipient (individual vs business) and type (check vs electronic funds transfer). Tax refunds are also represented as withdrawals in the Deposits and Withdrawals of Operating Cash table. All figures are rounded to the nearest million. As of February 14, 2023, Table VI Income Tax Refunds Issued was renamed to Table V Income Tax Refunds Issued within the published report.

  11. t

    Receipts and Outlays of the U.S. Government by Month

    • fiscaldata.treasury.gov
    Updated Jul 13, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2020). Receipts and Outlays of the U.S. Government by Month [Dataset]. https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/
    Explore at:
    Dataset updated
    Jul 13, 2020
    Description

    This table shows the receipts and outlays of the United States Government by month for the current fiscal year, up to and including the current accounting month. The table also shows the total receipts and outlays for the current fiscal year-to-date and the comparable prior fiscal year-to-date. This table includes total and subtotal rows that should be excluded when aggregating data. Some rows represent elements of the dataset's hierarchy, but are not assigned values. The classification_id for each of these elements can be used as the parent_id for underlying data elements to calculate their implied values. Subtotal rows are available to access this same information.

  12. t

    Federal Tax Deposits

    • fiscaldata.treasury.gov
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Federal Tax Deposits [Dataset]. https://fiscaldata.treasury.gov/datasets/daily-treasury-statement/
    Explore at:
    Description

    This table represents the breakdown of taxes that are received by the federal government. Federal taxes received are represented as deposits in the Deposits and Withdrawals of Operating Cash table. All figures are rounded to the nearest million.

  13. t

    Receipts of the U.S. Government

    • fiscaldata.treasury.gov
    Updated Jul 13, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2020). Receipts of the U.S. Government [Dataset]. https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/
    Explore at:
    Dataset updated
    Jul 13, 2020
    Description

    This table shows the gross receipts, refunds and net receipts for the current month, the current fiscal year-to-date and the prior fiscal year-to-date for the various receipts of the federal government. This table includes total and subtotal rows that should be excluded when aggregating data. Some rows represent elements of the dataset's hierarchy, but are not assigned values. The classification_id for each of these elements can be used as the parent_id for underlying data elements to calculate their implied values. Subtotal rows are available to access this same information.

  14. t

    Outlays of the U.S. Government

    • fiscaldata.treasury.gov
    Updated Jul 13, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2020). Outlays of the U.S. Government [Dataset]. https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/
    Explore at:
    Dataset updated
    Jul 13, 2020
    Description

    This table shows the gross outlays, applicable receipts and net outlays for the current month, current fiscal year-to-date and prior fiscal year-to-date by various agency programs accounted for in the budget of the federal government. This table includes total and subtotal rows that should be excluded when aggregating data. Some rows represent elements of the dataset's hierarchy, but are not assigned values. The classification_id for each of these elements can be used as the parent_id for underlying data elements to calculate their implied values. Subtotal rows are available to access this same information.

  15. t

    Analysis of Change in Excess of Liabilities of the U.S. Government

    • fiscaldata.treasury.gov
    Updated Jul 13, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2020). Analysis of Change in Excess of Liabilities of the U.S. Government [Dataset]. https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/
    Explore at:
    Dataset updated
    Jul 13, 2020
    Description

    This table is a subsidiary table for Means of Financing the Deficit or Disposition of Surplus by the U.S. Government providing a detailed view of the Change in Excess of Liabilities. This table includes total and subtotal rows that should be excluded when aggregating data. Some rows represent elements of the dataset's hierarchy, but are not assigned values. The classification_id for each of these elements can be used as the parent_id for underlying data elements to calculate their implied values. Subtotal rows are available to access this same information.

  16. t

    Debt Subject to Limit

    • fiscaldata.treasury.gov
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Debt Subject to Limit [Dataset]. https://fiscaldata.treasury.gov/datasets/daily-treasury-statement/
    Explore at:
    Description

    This table represents the breakdown of total public debt outstanding as it relates to the statutory debt limit. All figures are rounded to the nearest million.

  17. t

    Investments of Federal Government Accounts in Federal Securities

    • fiscaldata.treasury.gov
    Updated Jul 13, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2020). Investments of Federal Government Accounts in Federal Securities [Dataset]. https://fiscaldata.treasury.gov/datasets/monthly-treasury-statement/
    Explore at:
    Dataset updated
    Jul 13, 2020
    Description

    This table is a subsidiary table for Means of Financing the Deficit or Disposition of Surplus by the U.S. Government providing a detailed view of federal funds and trust funds that are invested in Government Account Series (GAS) securities. Federal funds include general funds, special funds, and revolving funds (public enterprise revolving funds, intragovernmental revolving funds, and credit financing accounts). A trust fund is a type of account, designated by law, for receipts or offsetting receipts dedicated to specific purposes and the expenditure of these receipts. This table includes total and subtotal rows that should be excluded when aggregating data. Some rows represent elements of the dataset's hierarchy, but are not assigned values. The classification_id for each of these elements can be used as the parent_id for underlying data elements to calculate their implied values. Subtotal rows are available to access this same information.

  18. t

    Public Debt Transactions

    • fiscaldata.treasury.gov
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Public Debt Transactions [Dataset]. https://fiscaldata.treasury.gov/datasets/daily-treasury-statement/
    Explore at:
    Description

    This table represents the issues and redemption of marketable and nonmarketable securities. All figures are rounded to the nearest million.

  19. Daily Treasury Statement (DTS)

    • fiscaldata.treasury.gov
    csv, json, xml
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. DEPARTMENT OF THE TREASURY, Daily Treasury Statement (DTS) [Dataset]. https://fiscaldata.treasury.gov/datasets/daily-treasury-statement/
    Explore at:
    csv, json, xmlAvailable download formats
    Dataset provided by
    United States Department of the Treasuryhttps://treasury.gov/
    Authors
    U.S. DEPARTMENT OF THE TREASURY
    Time period covered
    Oct 3, 2005 - Sep 2, 2025
    Description

    Get data on the daily cash and debt operations of the U.S. Treasury, including cash balance, deposits, and withdrawals; income tax refunds; and debt transactions.

  20. t

    Deposits and Withdrawals of Operating Cash

    • fiscaldata.treasury.gov
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Deposits and Withdrawals of Operating Cash [Dataset]. https://fiscaldata.treasury.gov/datasets/daily-treasury-statement/
    Explore at:
    Description

    This table represents deposits and withdrawals from the Treasury General Account. A summary of changes to the Treasury General Account can be found in the Operating Cash Balance table. All figures are rounded to the nearest million.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Warwick J. McKibbin; Geoffrey Shuetrim (2025). Replication dataset and calculations for PIIE Briefing 25-2 The US Revenue Implications of President Trump’s 2025 Tariffs by Warwick McKibbin and Geoffrey Shuetrim (2025). [Dataset]. https://www.piie.com/publications/piie-briefings/2025/us-revenue-implications-president-trumps-2025-tariffs
Organization logo

Replication dataset and calculations for PIIE Briefing 25-2 The US Revenue Implications of President Trump’s 2025 Tariffs by Warwick McKibbin and Geoffrey Shuetrim (2025).

Explore at:
Dataset updated
Apr 22, 2025
Dataset provided by
Peterson Institute for International Economicshttp://www.piie.com/
Authors
Warwick J. McKibbin; Geoffrey Shuetrim
Description

This data package includes the underlying data to replicate the charts, tables, and calculations presented in The US Revenue Implications of President Trump’s 2025 Tariffs, PIIE Briefing 25-2.

If you use the data, please cite as:

McKibbin, Warwick, and Geoffrey Shuetrim. 2025. The US Revenue Implications of President Trump’s 2025 Tariffs. PIIE Briefing 25-2. Washington: Peterson Institute for International Economics.

Search
Clear search
Close search
Google apps
Main menu