Created
          December 1, 2014 21:54 
        
      - 
      
 - 
        
Save timothyrenner/5770006a0bab79cae55b to your computer and use it in GitHub Desktop.  
    Comparison Between Python Pandas and Julia DataFrames GroupBy Operations
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using DataFrames | |
| keys = rand(1:100000, 500000); | |
| values = randn(length(keys)); | |
| df = DataFrame(); | |
| df[:KEY] = keys; | |
| df[:VALUE] = values; | |
| @time by(df, :KEY, x -> sum(x[:VALUE])); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import pandas as pd | |
| import numpy as np | |
| import timeit | |
| keys = np.random.randint(0, 100000, 500000) | |
| values = np.random.normal(size=len(keys)) | |
| df = pd.DataFrame() | |
| df["KEY"] = keys | |
| df["VALUE"] = values | |
| def group_func(): | |
| return df.groupby("KEY").sum() | |
| print timeit.timeit(group_func, number=1) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment