From 27d6d9d70761b438256c560d90b55e016d347990 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 May 2023 20:41:03 -0700 Subject: [PATCH 1/5] copy --- examples/census.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/census.md b/examples/census.md index c6abf3150..1cc0cdb6e 100644 --- a/examples/census.md +++ b/examples/census.md @@ -4,7 +4,9 @@ Inspired by [Ethan Mollick's recent blog article about ChatGPT plugins](https://www.oneusefulthing.org/p/it-is-starting-to-get-strange), I used `aider` and GPT-4 to do data analysis of some US Census data. -I had GPT-4 tell me how to download census data, suggest some hypotheses to test and then write the code to test one and provide a summary and plot of the results. +I ask GPT-4 how to download census data and to suggest some +hypotheses to test. I asked it to write the code to get the data, test one of the +hypotheses and provide a summary and plot of the results. ## Chat transcript @@ -238,12 +240,12 @@ After applying these changes, the code will print a summary table showing the co #### /run python3 new_file/getdata.py -> Add the output to the chat? y -> >``` >Summary Table: Correlation between population density and housing prices: 0.16020298445808737 >``` +> +> Add the output to the chat? y Great! The script seems to be working as expected. The correlation between population density and housing prices is 0.1602. If you need any further assistance or modifications to the code, please let me know. From 356a5413928211eceb4e5f23ef02946dbc71bb72 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 May 2023 20:41:46 -0700 Subject: [PATCH 2/5] copy --- examples/census.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/census.md b/examples/census.md index 1cc0cdb6e..bb1128967 100644 --- a/examples/census.md +++ b/examples/census.md @@ -240,10 +240,10 @@ After applying these changes, the code will print a summary table showing the co #### /run python3 new_file/getdata.py ->``` ->Summary Table: -Correlation between population density and housing prices: 0.16020298445808737 ->``` +>``` +>Summary Table: +Correlation between population density and housing prices: 0.16020298445808737 +>``` > > Add the output to the chat? y From 52d5236205c0d3a71e78811fd52d8d959e7162eb Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 May 2023 20:42:04 -0700 Subject: [PATCH 3/5] copy --- examples/census.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/census.md b/examples/census.md index bb1128967..38b845375 100644 --- a/examples/census.md +++ b/examples/census.md @@ -242,7 +242,7 @@ After applying these changes, the code will print a summary table showing the co #### /run python3 new_file/getdata.py >``` >Summary Table: -Correlation between population density and housing prices: 0.16020298445808737 +>Correlation between population density and housing prices: 0.16020298445808737 >``` > > Add the output to the chat? y From bb084103762df5c2b910ae9c8e17d17e49eb059f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 May 2023 20:44:20 -0700 Subject: [PATCH 4/5] copy --- examples/census.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/census.md b/examples/census.md index 38b845375..5ba5f0b13 100644 --- a/examples/census.md +++ b/examples/census.md @@ -4,7 +4,7 @@ Inspired by [Ethan Mollick's recent blog article about ChatGPT plugins](https://www.oneusefulthing.org/p/it-is-starting-to-get-strange), I used `aider` and GPT-4 to do data analysis of some US Census data. -I ask GPT-4 how to download census data and to suggest some +I asked GPT-4 how to download census data and to suggest some hypotheses to test. I asked it to write the code to get the data, test one of the hypotheses and provide a summary and plot of the results. From 38db2016bdb9100832e697176ea156b7dfd528e4 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 May 2023 20:45:11 -0700 Subject: [PATCH 5/5] copy --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6ac737c0..d2cc60727 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ `aider` is a command-line chat tool that allows you to write and edit code with GPT-4 in the terminal. You can ask GPT to help you start -a new project, or to add features to your existing code. +a new project, or add features to your existing code. `aider` is especially useful for working with code in a git repo, as it will automatically commit GPT's code changes with a descriptive commit message.