im trying some excercises using python pandas module and map and np.argmap functions with a data base . this is my code :
import pandas as pd
pd.set_option('max_rows', 5)
import numpy as np
from learntools.advanced_pandas.summary_functions_maps import *
reviews = pd.read_csv("../input/wine-reviews/winemag-data-130k-v2.csv",
index_col=0)
and i want to find which wine has the highest points using thw map and np.argmax function but i keep on getting stuck on how to use this 2 functions thanks for the help :)