Skip to content

Commit

Permalink
Made a mistake in the quickstart example...the labels-related argumen…
Browse files Browse the repository at this point in the history
…t is for the name of the column, not the labels themselves...
  • Loading branch information
Diane Napolitano committed May 18, 2016
1 parent 2b7be60 commit 7b874ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/quickstart.rst
Expand Up @@ -15,7 +15,7 @@ Or, work with an existing ``pandas`` ``DataFrame``::

from skll import FeatureSet

train_examples = FeatureSet.from_data_frame(my_data_frame, 'A Name for My Data', data_labels)
train_examples = FeatureSet.from_data_frame(my_data_frame, 'A Name for My Data', labels_column='name of the column containing the data labels')


Train a linear svm (assuming we have ``train_examples``)::
Expand Down

0 comments on commit 7b874ed

Please sign in to comment.