Closed sandeepny441 closed 11 months ago
import pandas as pd
data = { 'Store_ID': [1001, 1002, 1003, 1004, 1005], 'Store_Name': ['Pet Paradise', 'Animal Kingdom', 'Furry Friends', 'Pet Pals', 'Fauna House'], 'Location': ['New York', 'Los Angeles', 'Chicago', 'Houston', 'Phoenix'], 'Speciality': ['Fish', 'Birds', 'Dogs', 'Cats', 'Reptiles'], 'Rating': [4.5, 4.2, 3.9, 4.7, 4.0] }
df_pet_stores = pd.DataFrame(data)
import pandas as pd
Sample DataFrame for pet stores in the US
data = { 'Store_ID': [1001, 1002, 1003, 1004, 1005], 'Store_Name': ['Pet Paradise', 'Animal Kingdom', 'Furry Friends', 'Pet Pals', 'Fauna House'], 'Location': ['New York', 'Los Angeles', 'Chicago', 'Houston', 'Phoenix'], 'Speciality': ['Fish', 'Birds', 'Dogs', 'Cats', 'Reptiles'], 'Rating': [4.5, 4.2, 3.9, 4.7, 4.0] }
df_pet_stores = pd.DataFrame(data)
reset_index_questions