Maven Analytics published the data about 2015 New Year’s Eve resolutions tweets. The data can be
found here: https://www.mavenanalytics.io/data-playground?page=1&pageSize=5 . Thanks for Maven Analytics for providing the data.
Also sample questions were included.
- What is the most popular resolution category? Least popular?
- Which resolution category was retweeted the most? Least?
- Using the tweet_created field, and rounding to the nearest hour, what was the most popular hour of day to tweet? How many resolutions were tweeted?
- Using a map visual, what U.S. State tweeted the highest number of NYE resolutions?

The first, I downloaded the data to MS Access. Decimal symbol was changed to dot.

Reporting was done in Power BI. To add the hours in Power Query, activate the tweed_created column and select add column – time – hour. Hour information is needed in question number three.

Now the hour column appeared.
Let’s create the needed measurements.

Cat = count(New_years_resolutions[tweet_category])
The cat measure counts simply the number of tweet_category items.

FullHour = count(New_years_resolutions[Hour])
This measure counts the full hours.

Retw = count(New_years_resolutions[retweet_count])
The measure counting retweets.

States = count(New_years_resolutions[tweet_state])
This measure counts where tweets are coming from.
To double-check the values in Access.

SELECT COUNT(tweet_state), tweet_state
FROM New_years_resolutions
GROUP BY tweet_state
ORDER BY COUNT(tweet_state) DESC
;

California is leading, New York is the second.

Map used here is GlobeMap. The field tweet_state and measure states were selected.
- What is the most popular resolution category? Least popular?
Personal growth, philantrophic.
2. Which resolution category was retweeted the most? Least?
Personal growth, time management.
3. Using the tweet_created field, and rounding to the nearest hour, what was the most popular hour of day to tweet? How many resolutions were tweeted?
9, 505.
4. Using a map visual, what U.S. State tweeted the highest number of NYE resolutions?
California.






























