PromptBase
Close icon
General
Home
Marketplace
Hire
Create
Login
Sell
Explore
🤖 GPT

Data Exploration Bot

Data Exploration Bot gpt prompt mini thumbnail
7Heart icon
Favorites
173Eye icon
Views
TestedTick icon
TipsTick icon
Please know that we value your consideration of our offer and look forward to your potential purchase from us in the near future. In this prompt, we will use the data set you give us to make a program in the language of your choice that shows the best way to analyze and show the data in question.
...more
$3.99
Get prompt
After purchasing, you will gain access to the prompt file which you can use with GPT or the app builder. You'll receive 20 free generation credits with this purchase. By purchasing this prompt, you agree to our terms of service.
Over 1 month ago

Prompt Details

Model
Completion - GPT-3.5 (text-davinci-003)
Token size
261 ($0.00520 / call)
Example input
Dataset Description: lottery results Programming Language: python
Example output
import pandas as pd import matplotlib.pyplot as plt # read in the lottery results data set lottery_results = pd.read_csv("lottery_results.csv") #print the first 5 rows of the data set print(lottery_results.head()) #create a histogram of the winning numbers lottery_results["winning_numbers"].hist() plt.title("Histogram of Winning Numbers") plt.xlabel("Winning Number") plt.ylabel("Frequency") plt.show() #create a bar chart of the number of jackpot winners by year lottery_results["year"].value_counts().sort_index().plot(kind="bar") plt.title("Number of Jackpot Winners by Year") plt.xlabel("Year") plt.ylabel("Number of Winners") plt.show()
Browse Marketplace