I am using the python code :
dataReg=pd.DataFrame(data.loc[data['Store']=='1'])
to extract the data of store 1.
But following warning encountered.
C:\Users\hp\anaconda3\lib\site-packages\pandas\core\ops\array_ops.py:253: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
res_values = method(rvalues)
Can anyone suggest how to Resolve this?