Error: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?











up vote
-2
down vote

favorite












with open('ICCBR17_3.csv', 'r') as f1:
f1_reader = csv.reader(f1, delimiter=',')

for row in f1_reader:
total = total + line[5]
i=i+1
mae = 1/i*total
rmse = sqrt(mae)

print ('MAE = ' %mae)
print ('rmse = '%rmse)


I have this result saved in csv file and I want to calculate the mean absolute error and root mean squared error.



userid,itemid,predicted_rating,real_rating,error,

45431,3.7,3.5,10,27,0.2

46976,3.7,4.5,10,27,0.8

51937,3.125,4,4,27,0.875

44191,3.3,4,10,27,0.7

54286,4.05,3.174347598,10,3,1.325652402

54001,3,4.5,10,27,1.5

55253,3.2,2,5,27,1.2

60126,3.35,4,10,27,0.65

46578,3.45,4,10,27,0.55

56152,3.6,3.5,10,27,0.1

54001,2.95,4,10,68,1.05









share|improve this question
























  • Could you give more details about your code? Like the variables declaration and libraries you are using
    – Helena Martins
    Nov 19 at 11:52






  • 1




    Edit your question instead of just commenting it. It makes easier for people to read, understand and further help you ;)
    – Helena Martins
    Nov 19 at 11:58










  • This has nothing to do with sklearn, stop adding the tag.
    – Matthieu Brucher
    2 days ago










  • Do you have an unpaired double quote in the input file?
    – tripleee
    2 days ago















up vote
-2
down vote

favorite












with open('ICCBR17_3.csv', 'r') as f1:
f1_reader = csv.reader(f1, delimiter=',')

for row in f1_reader:
total = total + line[5]
i=i+1
mae = 1/i*total
rmse = sqrt(mae)

print ('MAE = ' %mae)
print ('rmse = '%rmse)


I have this result saved in csv file and I want to calculate the mean absolute error and root mean squared error.



userid,itemid,predicted_rating,real_rating,error,

45431,3.7,3.5,10,27,0.2

46976,3.7,4.5,10,27,0.8

51937,3.125,4,4,27,0.875

44191,3.3,4,10,27,0.7

54286,4.05,3.174347598,10,3,1.325652402

54001,3,4.5,10,27,1.5

55253,3.2,2,5,27,1.2

60126,3.35,4,10,27,0.65

46578,3.45,4,10,27,0.55

56152,3.6,3.5,10,27,0.1

54001,2.95,4,10,68,1.05









share|improve this question
























  • Could you give more details about your code? Like the variables declaration and libraries you are using
    – Helena Martins
    Nov 19 at 11:52






  • 1




    Edit your question instead of just commenting it. It makes easier for people to read, understand and further help you ;)
    – Helena Martins
    Nov 19 at 11:58










  • This has nothing to do with sklearn, stop adding the tag.
    – Matthieu Brucher
    2 days ago










  • Do you have an unpaired double quote in the input file?
    – tripleee
    2 days ago













up vote
-2
down vote

favorite









up vote
-2
down vote

favorite











with open('ICCBR17_3.csv', 'r') as f1:
f1_reader = csv.reader(f1, delimiter=',')

for row in f1_reader:
total = total + line[5]
i=i+1
mae = 1/i*total
rmse = sqrt(mae)

print ('MAE = ' %mae)
print ('rmse = '%rmse)


I have this result saved in csv file and I want to calculate the mean absolute error and root mean squared error.



userid,itemid,predicted_rating,real_rating,error,

45431,3.7,3.5,10,27,0.2

46976,3.7,4.5,10,27,0.8

51937,3.125,4,4,27,0.875

44191,3.3,4,10,27,0.7

54286,4.05,3.174347598,10,3,1.325652402

54001,3,4.5,10,27,1.5

55253,3.2,2,5,27,1.2

60126,3.35,4,10,27,0.65

46578,3.45,4,10,27,0.55

56152,3.6,3.5,10,27,0.1

54001,2.95,4,10,68,1.05









share|improve this question















with open('ICCBR17_3.csv', 'r') as f1:
f1_reader = csv.reader(f1, delimiter=',')

for row in f1_reader:
total = total + line[5]
i=i+1
mae = 1/i*total
rmse = sqrt(mae)

print ('MAE = ' %mae)
print ('rmse = '%rmse)


I have this result saved in csv file and I want to calculate the mean absolute error and root mean squared error.



userid,itemid,predicted_rating,real_rating,error,

45431,3.7,3.5,10,27,0.2

46976,3.7,4.5,10,27,0.8

51937,3.125,4,4,27,0.875

44191,3.3,4,10,27,0.7

54286,4.05,3.174347598,10,3,1.325652402

54001,3,4.5,10,27,1.5

55253,3.2,2,5,27,1.2

60126,3.35,4,10,27,0.65

46578,3.45,4,10,27,0.55

56152,3.6,3.5,10,27,0.1

54001,2.95,4,10,68,1.05






python csv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago









Matthieu Brucher

6,7241331




6,7241331










asked Nov 19 at 11:34









G.alshammari

44




44












  • Could you give more details about your code? Like the variables declaration and libraries you are using
    – Helena Martins
    Nov 19 at 11:52






  • 1




    Edit your question instead of just commenting it. It makes easier for people to read, understand and further help you ;)
    – Helena Martins
    Nov 19 at 11:58










  • This has nothing to do with sklearn, stop adding the tag.
    – Matthieu Brucher
    2 days ago










  • Do you have an unpaired double quote in the input file?
    – tripleee
    2 days ago


















  • Could you give more details about your code? Like the variables declaration and libraries you are using
    – Helena Martins
    Nov 19 at 11:52






  • 1




    Edit your question instead of just commenting it. It makes easier for people to read, understand and further help you ;)
    – Helena Martins
    Nov 19 at 11:58










  • This has nothing to do with sklearn, stop adding the tag.
    – Matthieu Brucher
    2 days ago










  • Do you have an unpaired double quote in the input file?
    – tripleee
    2 days ago
















Could you give more details about your code? Like the variables declaration and libraries you are using
– Helena Martins
Nov 19 at 11:52




Could you give more details about your code? Like the variables declaration and libraries you are using
– Helena Martins
Nov 19 at 11:52




1




1




Edit your question instead of just commenting it. It makes easier for people to read, understand and further help you ;)
– Helena Martins
Nov 19 at 11:58




Edit your question instead of just commenting it. It makes easier for people to read, understand and further help you ;)
– Helena Martins
Nov 19 at 11:58












This has nothing to do with sklearn, stop adding the tag.
– Matthieu Brucher
2 days ago




This has nothing to do with sklearn, stop adding the tag.
– Matthieu Brucher
2 days ago












Do you have an unpaired double quote in the input file?
– tripleee
2 days ago




Do you have an unpaired double quote in the input file?
– tripleee
2 days ago

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373771%2ferror-new-line-character-seen-in-unquoted-field-do-you-need-to-open-the-file%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373771%2ferror-new-line-character-seen-in-unquoted-field-do-you-need-to-open-the-file%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith