TelcomRecommendation / general_recommendation.py
SoumyaJ's picture
Upload 5 files
d1c2c35 verified
raw
history blame contribute delete
220 Bytes
import pandas as pd
df = pd.read_csv('recommended_plan.csv')
def get_recommendations():
top_10_rows = df.sample(10)
recommendations = top_10_rows.to_dict(orient='records')
return recommendations