In an earlier blog How Well Are Your Incentives Working? I shared methods on how to calculate the various chances of success based on some campaign data (e.g. new sign-ups for membership) from various trials using Binomial distribution. In this post, I show how to determine if events occurred due to random chance or affected […]
Blog
Estimating reading time for any content (Python)
We occasionally see reading time estimates in online news, blog sites, and even in promotional contents. This estimate is important because it tells the reader upfront how much the content may take to read. There are several extensive studies done internationally (in English speaking countries) that demonstrate that people tend to read messages/contents up to […]
Waffle Charts (3 methods + bonus)
Certainly! Here’s a revised version of your paragraph: Waffle charts might be familiar to you. These charts are characterized by small squares within a grid, providing a straightforward representation of ratios. This concept is akin to that of pie charts, area charts, or treemaps—the choice ultimately hinges on the target audience and personal taste. Waffle […]
Counting words/elements correctly in Excel
In some of my previous posts, you’ve already seen my Python examples on how to count words accurately in a document or in blocks of text (search for: Wordcloud). It’s also possible to count the words in Excel, but we have some gotchas there to be aware of. In this blog, I demonstrate some of […]
User Stories and Wireframes
User stories or scenarios are the suggested and preferred way for most agile development teams to capture software features in bite-sized morsels. It helps to continuously focus on the feature from end-user perspective (targets user-experience, persona) and the situation (i.e. the need for that feature) and expected behavior (i.e. what the user is trying to […]
Analyses of Critical Words & Speeches!
In one of my earlier blogs, I shared the techniques and code to create Word Cloud using Python and Excel together in this article: Word Cloud III – Python & Excel Together Today, building on that, I’ll analyze some of the most historic speeches and/or documents that every kid should read and even memorize part […]
vCards to/from CSV/Excel (and more)
vCards. What are they? Here’s a blurb from wikipedia:vCard, also known as VCF, is a file format standard for electronic business cards. vCards are often attached to e-mail messages but can be exchanged in other ways, such as Multimedia Messaging Service, on the World Wide Web, instant messaging or through QR code. They can contain […]
Using Directions & Travel APIs With Excel, Python. 2/2
This is the second part of the getting directions and travel info using Bing Maps. The first part shows how to do it in Python (check it out here), and in this part, I’ll share some tips on how to get the same info from within Excel without writing any VBA code! To get the […]
Using Directions & Travel APIs with Excel, Python. 1/2
In this blog, I’ll share tips on how to consume RESTful APIs for maps. Specifically, getting a location point info, getting distance and travel times between two points, and even turn-by-turn driving directions. With the techniques, we can also get walking and transit mode of travel info. I’ll be leveraging Bing Maps APIs as they’re […]
Decomposing data in PowerBI
A decomposition tree visual or a widget is very helpful in understanding cause and effect of data. It gives an easy-to-view insight to the underlying data. Suppose we have a fact table of raw data of products sold, revenue, place and time of sale, etc. etc. etc. Every month, year, product, country repeat as they […]