Ever wonder how two friends can turn a simple spreadsheet into a powerful decision‑making engine?
Carlos and Dominique did just that. What started as a weekend hobby—tracking their favorite coffee shops, bike routes, and even the number of times their cat sneezed—has morphed into a full‑blown data‑collection project that other hobbyists keep asking about.
If you’ve ever stared at a blank Excel file and thought, “Where do I even begin?”, you’re in the right place. Below you’ll find the low‑down on what Carlos and Dominique actually gather, why it matters, and how you can replicate their system without needing a PhD in statistics.
What Is the Carlos & Dominique Data Set?
At its core, the “Carlos and Dominique data set” is a collection of everyday observations that both friends log on a shared Google Sheet. It’s not a fancy API dump or a corporate‑grade database—just rows of timestamps, categories, and notes. Think of it as a living journal that they can query, graph, and even feed into a simple Python script.
The Core Columns
| Column | What It Holds | Why It Helps |
|---|---|---|
Date |
ISO‑8601 date (2024‑05‑21) | Easy sorting and time‑series analysis |
Time |
24‑hour clock (14:30) | Pinpoints daily patterns |
Category |
“Coffee”, “Bike Ride”, “Cat Sneezes”, etc. g. | Groups data for quick insights |
Value |
Numeric (e., 3. |
That’s it. No hidden fields, no cryptic codes. The simplicity is the secret sauce: anyone can plug in a new row and instantly have a piece of the puzzle.
The Tools They Use
- Google Sheets – real‑time collaboration, version history, and built‑in charts.
- Zapier – automates entry from their phone’s “Quick Add” widget.
- Python (pandas) – for deeper analysis once a month.
- Google Data Studio – turns the sheet into a dashboard they can share with friends.
Why It Matters – The Real‑World Payoff
You might ask, “Why bother tracking the number of times a cat sneezes?” The answer isn’t about the sneezes themselves; it’s about the habit of consistent data capture. When you train yourself to log anything, you start seeing patterns that would otherwise stay hidden.
Decision‑Making on Steroids
Carlos uses the data to decide which coffee shop to work from on a rainy Tuesday. Consider this: dominique, a budding cyclist, looks at the “Bike Ride” rows to figure out the optimal departure time that avoids traffic and maximizes sunshine. In practice, a simple line chart that shows “Coffee spend per week” can tell you whether you’re overspending on caffeine.
Accountability & Motivation
Both friends set personal challenges—like “bike 100 km this month.” The sheet automatically tallies the total, giving a visual cue that says, “You’re 70 % there.” The dopamine hit from watching the numbers climb is real, and it keeps them on track That's the whole idea..
Community Building
Because the sheet lives in the cloud, they’ve invited a few other hobbyists to add their own rows. Even so, suddenly, the data set becomes a neighborhood pulse: which park is most popular for picnics? Which street gets the most stray‑dog sightings? The collective insight fuels a small but active online forum they run on Discord.
How It Works – Building Your Own Carlos & Dominique System
Ready to start? Below is a step‑by‑step guide that mirrors their workflow, from setting up the sheet to visualizing the results That's the part that actually makes a difference..
1. Set Up the Master Spreadsheet
- Open a new Google Sheet.
- In row 1, create the five columns listed above (
Date,Time,Category,Value,Notes). - Freeze the header row (View → Freeze → 1 row).
- Share the sheet with anyone who will contribute (Editor access).
2. Create a Quick‑Add Form (Optional but Handy)
- Go to Tools → Create a Form.
- Add the same five fields, but set
DateandTimeto auto‑populate with the current timestamp. - Embed the form link on your phone’s home screen. Now you can log a new entry in seconds.
3. Automate with Zapier (or IFTTT)
If you hate manual entry, set up a Zap:
- Trigger: New row in Google Form.
- Action: Append row to the master sheet (if you didn’t use the form directly).
- Optional: Send a Slack notification each time a “Bike Ride” entry exceeds 20 km.
4. Clean the Data Periodically
Every Sunday, spend ten minutes:
- Sort by
Dateand look for duplicates. - Ensure numeric entries in
Valueare really numbers (no stray commas). - Add missing categories to a separate “Category Dictionary” sheet for consistency.
5. Analyze with Python (Monthly Deep Dive)
import pandas as pd
# Load the sheet (publish to CSV first)
df = pd.read_csv('https://docs.google.com/spreadsheets/d/your_id/export?format=csv')
# Convert dates
df['Date'] = pd.to_datetime(df['Date'])
# Example: total coffee spend per month
coffee = df[df['Category'] == 'Coffee']
monthly = coffee.resample('M', on='Date')['Value'].sum()
print(monthly)
The script spits out a tidy series you can plot with matplotlib or feed back into Data Studio The details matter here..
6. Build a Dashboard in Data Studio
- Connect the Google Sheet as a data source.
- Create a time‑series chart for each category.
- Add a scorecard that shows “Total Bike km this month.”
- Share the public link with your friends; they’ll see the live numbers update as soon as a new row lands.
Common Mistakes – What Most People Get Wrong
-
Over‑complicating the schema – Adding ten extra columns for “weather,” “mood,” and “GPS coordinates” sounds thorough, but it slows down entry and creates analysis paralysis. Keep it lean, then expand only when a pattern demands it.
-
Skipping the cleaning step – A stray space in “Coffee ” versus “Coffee” splits your totals into two categories. A quick “Find & Replace” habit saves hours later.
-
Relying on memory for timestamps – If you type “yesterday” instead of the actual date, you lose the ability to do time‑series work. Let the form auto‑fill the timestamp Turns out it matters..
-
Not backing up – Google Sheets has version history, but a monthly CSV export to a personal drive is a safety net you’ll thank yourself for after a accidental delete.
-
Treating the data as a one‑off project – The power comes from continuous collection. If you stop for a week, the momentum fizzles, and the dashboard looks stale And that's really what it comes down to..
Practical Tips – What Actually Works
- Use dropdowns for
Category. In Data → Data validation, set a list of allowed values. This eliminates typos instantly. - Add a “Weight” column for subjective importance. If a coffee shop visit was a “business meeting,” give it a weight of 2; casual visits stay at 1. Then you can calculate weighted spend.
- use conditional formatting. Highlight rows where
Value> 10 € in red; you’ll spot outliers at a glance. - Batch edit with “Find & Replace.” When you decide to rename a category, do it in one go instead of editing each row.
- Set a weekly reminder. A calendar event titled “Log weekend data” nudges you before the habit dies.
FAQ
Q: Do I need to know any programming to use this system?
A: Not at all. The core workflow lives entirely in Google Sheets and optional Zapier automation. Python is only for the monthly deep dive, and you can skip it if you prefer Data Studio’s built‑in charts It's one of those things that adds up..
Q: How many categories is too many?
A: Aim for 5‑10 core categories that you actually use. If you find yourself adding a new one every other day, pause and think whether those entries could be grouped under an existing label.
Q: Can I keep the data private?
A: Absolutely. Share the sheet only with trusted collaborators, and don’t publish the Data Studio dashboard publicly unless you want to.
Q: What if I want to track location data?
A: Add a simple Location column and use a phone shortcut that copies your GPS coordinates to the clipboard before you paste them into the form. Keep it optional to avoid slowing down entry Worth keeping that in mind. Simple as that..
Q: Is this approach suitable for business use?
A: For small teams or freelancers, yes. The same principles—consistent logging, clean schema, periodic analysis—scale up, but larger operations usually migrate to dedicated BI tools after the data volume grows.
That’s the whole story, from the first row Carlos typed on a rainy Saturday to the sleek dashboard Dominique shows off on Sunday evenings. The magic isn’t in the tech; it’s in the habit of showing up, even with a tiny piece of data. Start with a single column, a single habit, and watch how the insights multiply.
Worth pausing on this one.
Happy logging! 🚲☕🐱