Sha256: e74345daa97aee5dff915d3541223b14ac420d7733fa63b1687c0d329384d0cb

Contents?: true

Size: 1.18 KB

Versions: 16

Compression:

Stored size: 1.18 KB

Contents

# libsvm File Format

This file format is used by rumale.

We're choosing the "Adj Close" column as the one that we want to predict.

The libsvm file format is simple.  All values are numberic.

The first entry on a line is the thing that we want to predict.  In this case it is the adjusted closing price.  This is followed by a space.

What follows is a series of data pairs seperated by spaces in the form:

* index:value

where index is the column number and value is the value for that item.


```ruby
require 'csv'

# Read CSV file
data = CSV.read('input.csv', headers: true)

# Open output file
output_file = File.open('output.txt', 'w')

# Convert data into libsvm format and write to output file
data.each do |row|
  # Get the label (the "close" value)
  label = row['Adj Close']

  # Start building the libsvm formatted line
  libsvm_line = "#{label} "

  # Add feature indices and values
  row.each_with_index do |(column, value), index|
    next if column == 'Date' || column == 'Adj Close' # Skip irrelevant columns
    libsvm_line += "#{index}:#{value} "
  end

  # Write the libsvm formatted line to the output file
  output_file.puts(libsvm_line)
end

# Close files
output_file.close
```

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
sqa-0.0.24 docs/libsvm_file_format.md
sqa-0.0.22 docs/libsvm_file_format.md
sqa-0.0.21 docs/libsvm_file_format.md
sqa-0.0.20 docs/libsvm_file_format.md
sqa-0.0.19 docs/libsvm_file_format.md
sqa-0.0.18 docs/libsvm_file_format.md
sqa-0.0.17 docs/libsvm_file_format.md
sqa-0.0.15 docs/libsvm_file_format.md
sqa-0.0.14 docs/libsvm_file_format.md
sqa-0.0.13 docs/libsvm_file_format.md
sqa-0.0.12 docs/libsvm_file_format.md
sqa-0.0.11 docs/libsvm_file_format.md
sqa-0.0.10 docs/libsvm_file_format.md
sqa-0.0.9 docs/libsvm_file_format.md
sqa-0.0.8 docs/libsvm_file_format.md
sqa-0.0.7 docs/libsvm_file_format.md