Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 411 Bytes

Python_Comparison_with_R.md

File metadata and controls

5 lines (5 loc) · 411 Bytes
R commands python commands
library(dplyr) import pandas as pd
data={'apples':[5,2,1],'oranges':[2,3,6]}
pd.DataFrame(data, index=['Fede', 'Ani', 'Gautham'])