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
python csv
add a comment |
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
python csv
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
add a comment |
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
python csv
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
python csv
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
add a comment |
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
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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