Coming up with a plan
We can ask Copilot about the steps we need to take to create a model. We type these prompts as comments:
If you want to ask Copilot to come up with text answers about something else other than code, you can type the text as a comment in a code file or inside of a Markdown file. It also helps to place yourself on the next row after the comment and start the row with “a:” for answer. You can also ask questions using Copilot Chat:
[Prompt]
Tell me the answer of life, the universe and everything.
[End of prompt]
[Prompt response]
a: 42
[End of response]
The above reference is from the book Hitchhikers guide to the Galaxy by Douglas Adams.
Next, let’s ask Copilot to help us with the steps to create a model.
[Prompt]
What are the steps to create a model in Python given a CSV file?
[End of prompt]
Output:
- import pandas and scikit-learn
- read the CSV file
- create...