Navigating the Autonomy Landscape: A Comparative Look at Autonomy in Product Management

Navigating the challenges of autonomy at workplace

As I have grown in my career, I have experienced different forms of autonomy. One which comes quite close to micromanagement and another, which gives ample freedom. Juxtaposing the two type of autonomies, a lot of people would prefer ample freedom and complete autonomy. But is that the right option, just when you’re starting your career? Or is there an option that creates a balance in the spectrum of autonomy – where you get the right amount of guidance as well as independence? Let’s find out more in this blog, wherein I will share my learnings derived based on my experience handling different type of autonomy as well as talking to and observing other colleagues.

Continue reading “Navigating the Autonomy Landscape: A Comparative Look at Autonomy in Product Management”

Driving Revenue Growth: How to Estimate Projected Revenue for New Features

As a Product Manager, I am responsible for estimating the revenue for the features and capabilities that I propose to be built. Over the last several months, I have been doing revenue estimation for the features and capabilities that I own in the app. I even talked about it in my last blog how I had to build up a hypothesis, estimate revenue to project the value of the feature, when I had recently joined as a product manager. In this blog, I will be talking about how I went from idea to an impact stage, and an actual example on how to estimate projected revenue for a new feature. So let’s dive in!

Continue reading “Driving Revenue Growth: How to Estimate Projected Revenue for New Features”

3 Months of Product Management – 7 Reflective Learnings!

In my last post reflecting on the year that went by, I shared that I got a new role of Data Product Manager in Citi. Well, it’s almost 4 months for me in this role and I thought of writing another post reflecting on my learnings and experience of first 90 days.

So I thought of breaking down this post and share 7 initial impressions, in the form of learnings. A point to note is that these are based on completely personal experience, subjective opinions derived from being in a Product Management role in a Banking & Financial Services company. Hence, these impressions and learnings that I accrued from my role could vary! So now let’s get into it the meat of the substance.

Continue reading “3 Months of Product Management – 7 Reflective Learnings!”

Reflecting on 2021 and What’s new in 2022!

Well you know how much someone procrastinates, when that person writes a reflection of the past year in April of the following year! But to be really honest, I was having a roller-coaster of a ride during the end of 2021 and beginning of 2022. Let’s start!

Continue reading “Reflecting on 2021 and What’s new in 2022!”

Re-Imagining Topic Modeling in NLP: A Break from Conventional Approach

I recently spoke about Contextual Topic Modeling in NLP, at Google’s La Kopi event for developers. The feedback I received made my talk, a special one. So many folks reached out and mentioned that they found the topic, content and the technique, quite intriguing and helped them approach Topic Modeling in NLP from a different angle. So, I decided to post the talk here and I have also added the transcript below.

Continue reading “Re-Imagining Topic Modeling in NLP: A Break from Conventional Approach”

Become a Story Telling Ninja: Present Data Science Models to Stakeholders

Story Telling Ninja
A Data Science Ninja

Over the last few years, I have presented a lot of projects involving Data Science models, Natural Language Processing to be more precise, to various stakeholders and leadership teams. While it’s super important to convey your technicalities, results and all the hard work you have put in building the Data Science models, visualizations, etc., what’s more important is how you convey those things! In this blog, we will talk about the art of story telling!

Continue reading “Become a Story Telling Ninja: Present Data Science Models to Stakeholders”

Machine Learning Roadmap: An Effective Guidebook for Learning Machine Learning

Sometime back, I wrote about why I have started mentoring and the scope of fields in which I am interested in mentoring. Not long ago, I broadened my horizon further to include Machine Learning in the scope. Hence, I have prepared a Machine Learning Roadmap which is quite hands-on, will nudge you to pursue your curiosity and, is supposedly less boring and more intriguing – which reduces the overall probability of dropping off in comparison to video lecture courses out there. The roadmap is designed for you to learn Machine Learning in a step-wise manner. It would equip you to learn and gain hands-on experience in streams like data cleaning, data visualization, exploratory data analysis, data modeling, etc.

In the blog, I will give you a walkthrough of the Machine Learning Roadmap, how to download it and would encourage you to write or talk to me if you need help. In the end, you can give me a feedback on how did the Machine Learning Roadmap helped you, and how can it be further improved!

Continue reading “Machine Learning Roadmap: An Effective Guidebook for Learning Machine Learning”

Evaluating Effectiveness of Mentorship: Open Sourcing My Framework

A while ago, I wrote about opening up my calendar for mentorship. Soon, quite a few people talked to me about career switches, interviews for university admissions, life in & career opportunities in Singapore, etc. I eventually asked all of them to score my mentoring. While the conversations are definitely very subjective, I decided that the scoring could be objective. I have decided to open source the evaluation criteria that I use for gauging how effective I am as a mentor. Besides, I will also put up and be very transparent about the scores that I receive, where am I lagging and where I am doing good.

Disclaimer: Even though I realize that feedback is very important, it’s voluntary and optional exercise for the mentees and I do not nudge anyone repeatedly to fill up my evaluation. Thus, I will keep on updating the chart as and when I get more responses.

You will find the evaluation criteria structured in the following way:

  1. Whether I answered all the questions satisfactorily, to-the-point, and in a structured way?
  2. Questions around:
    • Ease of approach
    • Content Expertise
    • Clear and comprehensive speaking
    • Any bias or prejudice while mentoring
    • Professional integrity
  3. Did I refer any 3rd party material or a subject-matter-expert?
  4. Whether I am worthy of being referred?
  5. Overall score and my ROTI (KPI)
  6. Subjective Feedback
Continue reading “Evaluating Effectiveness of Mentorship: Open Sourcing My Framework”

Become a Web Analytics Ninja: Analyze Bounce Rate Across Different Visitor Segments

Web analytics
Web Analytics

This post is a digression from the other data science blogs that I have written in the past and more so, from the work that I do in my day-to-day job. Well, I don’t mean digression in a negative connotation. I enjoyed and learnt so much that I implemented many of the strategies in my own website. In this post, I will be discussing how I did a deep dive on a 1 liner problem statement by my client, “The bounce rate has gone up since last few months from what it was before, Why?” That may seem trivial to investigate and analyze, but the lack of details and granularity, made the problem statement very broad and open ended. Not enough clarity also makes it pretty easy to hit a roadblock very early in the process, especially when you don’t know where to start. फ़िक्र न करें (Fear not)! You will see a structured way to approach such kind of problem statement.

Continue reading “Become a Web Analytics Ninja: Analyze Bounce Rate Across Different Visitor Segments”

Speed Up Pandas Dataframe Apply Function to Create a New Column

pandas
Pandas Library

Data cleaning is an essential step to prepare your data for the analysis. While cleaning the data, every now and then, there’s a need to create a new column in the Pandas dataframe. It’s usually conditioned on a function which manipulates an existing column. A strategic way to achieve that is by using Apply function. I want to address a couple of bottlenecks here:

  • Pandas: The Pandas library runs on a single thread and it doesn’t parallelize the task. Thus, if you are doing lots of computation or data manipulation on your Pandas dataframe, it can be pretty slow and can quickly become a bottleneck.
  • Apply(): The Pandas apply() function is slow! It does not take the advantage of vectorization and it acts as just another loop. It returns a new Series or dataframe object, which carries significant overhead.

So now, you may ask, what to do and what to use? I am going to share 4 techniques that are alternative to Apply function and are going to improve the performance of operation in Pandas dataframe.

Continue reading “Speed Up Pandas Dataframe Apply Function to Create a New Column”