Skip to content

Commit

Permalink
Fixed issue #8975: R data exported without a header
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 17, 2014
1 parent b17ade0 commit 1976cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/core/plugins/ExportR/RDataWriter.php
Expand Up @@ -17,7 +17,7 @@ public function init(\SurveyObj $survey, $sLanguageCode, \FormattingOptions $oOp
// Change filename
$this->csvFilename = 'survey_' . $survey->id .'_R_data_file.csv';
// Skip the first line with headers
$this->doHeaders = false;
$this->doHeaders = true;

$oOptions->answerFormat = "short"; // force answer codes

Expand Down

0 comments on commit 1976cf7

Please sign in to comment.