== Data Frame This is a general data frame. Load arrays and labels into it, and you will have a very powerful set of tools on your data set. ==Usage df = DataFrame.from_csv('http://archive.ics.uci.edu/ml/machine-learning-databases/forest-fires/forestfires.csv') df.labels # => [:x, :y, :month, :day, :ffmc, :dmc, :dc, :isi, :temp, :rh, :wind, :rain, :area] df.dmc # => [26.2, 35.4, 43.7, 33.3, 51.3, 85.3,...] df.dmc.max # => 291.3 df.dmc.min # => 1.1 df.dmc.mean # => 110.872340425532 df.dmc.std # => 64.0464822492543 df = DataFrame.new(:list, :of, :things) # => # df.labels # => [:list, :of, :things] df << [1,2,3] # => [[1, 2, 3]] df.import([[2,3,4],[5,6,7]]) # => [[2, 3, 4], [5, 6, 7]] df.items # => [[1, 2, 3], [2, 3, 4], [5, 6, 7]] df.list # => [1, 2, 5] df.list.correlation(df.things) # => 1.0 df.list # => [1, 2, 5] df.things # => [3, 4, 7] There are a few important features to know: * DataFrame.from_csv works for a string, a filename, or a URL. * FasterCSV parsing parameters can be passed to DataFrame.from_csv * DataFrame looks for operations first on the column labels, then on the row labels, then on the items table. So don't name things :mean, :standard_deviation, :min, and that sort of thing. * CallbackArray allows you to set a callback anytime an array is tainted or untainted (taint, shift, pop, clear, map!, that sort of thing). This is generally useful and will probably be copied into the Repositories gem. * TransposableArray is a subclass of CallbackArray, demonstrating how to use it. It creates a very simple approach to memoization. It caches the transpose of the table and resets it whenever it is tainted. To get your feet wet, you may want to play with data sets found here: http://www.liaad.up.pt/~ltorgo/Regression/DataSets.html == Transformations A lot of the work in the data frame is to transform the actual table. You may need to drop columns, filter results, replace values in a column or create a new data frame based on the existing one. Here's how to do that: > df = DataFrame.from_csv('http://archive.ics.uci.edu/ml/machine-learning-databases/forest-fires/forestfires.csv') # => DataFrame rows: 517 labels: [:x, :y, :month, :day, :ffmc, :dmc, :dc, :isi, :temp, :rh, :wind, :rain, :area] > df.drop!(:ffmc) # => DataFrame rows: 517 labels: [:x, :y, :month, :day, :dmc, :dc, :isi, :temp, :rh, :wind, :rain, :area] > df.drop!(:dmc, :dc, :isi, :rh) # => DataFrame rows: 517 labels: [:x, :y, :month, :day, :temp, :wind, :rain, :area] > df.x # => [7, 7, 7, 8, 8, 8, 8, 8, 8, 7, 7, 7, 6, 6, 6,...] > df.replace!(:x) {|e| e * 3} # => DataFrame rows: 517 labels: [:x, :y, :month, :day, :temp, :wind, :rain, :area] > df.x # => [21, 21, 21, 24, 24, 24, 24, 24, 24, 21, 21, 21, 18, 18, 18,...] > df.filter!(:open_struct) {|row| row.x == 24} # => DataFrame rows: 61 labels: [:x, :y, :month, :day, :temp, :wind, :rain, :area] > df.x # => [24, 24, 24, 24, 24, 24, 24, 24, 24,...] > new_data_frame = df.subset_from_columns(:x, :y) # => DataFrame rows: 61 labels: [:x, :y] > new_data_frame.items # => [[24, 6], [24, 6], [24, 6], [24, 6], ...] Note: most of these transformations are not optimized. I'll work with things for a while before I try to optimize this library. However, I should say that I've used some fairly large data sets (thousands of rows) and have been fine with things so far. ==Installation sudo gem install davidrichards-data_frame === Dependencies * ActiveSupport: sudo gem install activesupport * JustEnumerableStats: sudo gem install davidrichards-just_enumerable_stats * FasterCSV: sudo gem install fastercsv ==COPYRIGHT Copyright (c) 2009 David Richards. See LICENSE for details.