Hi Reader,
After a long summer break, Tuesday Tips is back! 🎉
If you’re new around here, you can find all of my past Data Science tips at tuesday.tips. (Yes, that’s a real URL!)
Next week, I’m going to start including a “link of the week” at the top of each issue. But for today, let’s just get right to the tip!
By the way, did you travel anywhere this summer? I spent some wonderful time in Iceland! 🧊🌋🥾
If you have a coding question in 2023, you have two main options for getting help:
Either way, you have a much better chance of getting a helpful answer if you know how to write a great question!
My guiding principle when writing a coding question is to tell the reader everything they need to know and nothing else. This makes it easier for the reader to be helpful, and (at least in the case of humans) increases the likelihood that you will get an answer!
(1) Write a brief introduction: Give a quick summary of what you’re trying to accomplish and the problem you’re having.
(2) Provide a self-contained code example: Write code that can be copied, pasted, and run by the reader so that they can try it out on their own machine.
(3) Detail the expected results: Explain your expected output to the reader so that they can validate whether they have actually solved your problem.
(4) Add any important notes: Tell the reader anything they need to know about the problem that wouldn’t be obvious from the code example. This helps to steer readers away from solutions that may appear to work but don’t actually solve your problem.
(5) Write a title that summarizes the question: Whether you’re emailing a discussion group or posting on Stack Overflow, you’ll have a better chance of the right person reading your question if you write a concise and accurate title. (I suggest doing this last rather than first!)
Finally, here are some things you can optionally include:
Want to see how I applied this process to an actual coding question? Check out my in-depth post:
🔗 How to write a great Stack Overflow question.
If you enjoyed this week’s tip, please forward it to a friend! Takes only a few seconds, and it really helps me out! 🙌
See you next Tuesday!
- Kevin
P.S. Never have I felt so close to another soul…
Did someone awesome forward you this email? Sign up here to receive Data Science tips every week!
Join 25,000+ intelligent readers and receive AI tips every Tuesday!
Hi Reader, Last week, I encouraged you to experiment with different LLMs, since there’s no one model that is superior across all use cases. Specifically, I suggested you try using Chatbot Arena, which allows you to chat with multiple models at once. It’s completely free, but has two significant disadvantages: Your chats are not private and may be used for research. It lacks the feature-rich interface provided by other LLMs. Today, I want to offer you a better method for experimenting with...
Hi Reader, Over the past 50 tips, I’ve touched on many different topics: Python, Jupyter, pandas, ML, data visualization, and so on. Going forward, I’m planning to focus mostly on Artificial Intelligence. I’m announcing this so you know what to expect, and I know what to deliver! 💌 I’ll also try to make the tips shorter, so that they're easier to digest on-the-go. Finally, I plan to include an “action item” each week, so that you can practice what you’re learning. I hope you like these...
Hi Reader, Next week, I’ll be offering a Black Friday sale on ALL of my courses. I’ll send you the details this Thursday! 🚨 👉 Tip #50: What is a "method" in Python? In Python, a method is a function that can be used on an object because of the object's type. For example, if you create a Python list, the "append" method can be used on that list. All lists have an "append" method simply because they are lists: If you create a Python string, the "upper" method can be used on that string simply...