We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80f3741 commit a73c333Copy full SHA for a73c333
Spreadsheet_Automation/script.py
@@ -4,17 +4,17 @@
4
import plotly.express as px
5
6
# storing the dataset
7
-book_relative_path = input("Enter first dataset")
8
-book_prices = input("Enter second dataset")
+data1 = input("Enter first dataset")
+data2 = input("Enter second dataset")
9
10
# reading the data
11
-data_prices = pd.read_excel(book_prices)
12
-data_home_1 = pd.read_excel(book_relative_path)
+data_read_1 = pd.read_excel(data1)
+data_read_2 = pd.read_excel(data2)
13
14
#print(df_prices, df_home_1)
15
16
-item = input("What is the basis of merging? ")
17
-data_total = data_home_1.merge(data_prices, on=item)
+reference = input("What is the basis of merging? ")
+data_total = data_read_2.merge(data_read_1, on=reference)
18
19
20
#print(df_total)
0 commit comments