access csv files in python
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)
It is working properly, but the following code getting this error:
import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)
UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)
python pandas csv
add a comment |
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)
It is working properly, but the following code getting this error:
import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)
UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)
python pandas csv
You have a folder like/r files/
in yourcsv_path
. Thatr
might be creating issues. You can try re-naming that folder to something else. It should work.
– Mayank Porwal
Nov 23 '18 at 9:47
add a comment |
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)
It is working properly, but the following code getting this error:
import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)
UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)
python pandas csv
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)
It is working properly, but the following code getting this error:
import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)
UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)
python pandas csv
python pandas csv
edited Nov 23 '18 at 15:51
Paul Hodges
3,2311422
3,2311422
asked Nov 23 '18 at 9:34
arunarun
134
134
You have a folder like/r files/
in yourcsv_path
. Thatr
might be creating issues. You can try re-naming that folder to something else. It should work.
– Mayank Porwal
Nov 23 '18 at 9:47
add a comment |
You have a folder like/r files/
in yourcsv_path
. Thatr
might be creating issues. You can try re-naming that folder to something else. It should work.
– Mayank Porwal
Nov 23 '18 at 9:47
You have a folder like
/r files/
in your csv_path
. That r
might be creating issues. You can try re-naming that folder to something else. It should work.– Mayank Porwal
Nov 23 '18 at 9:47
You have a folder like
/r files/
in your csv_path
. That r
might be creating issues. You can try re-naming that folder to something else. It should work.– Mayank Porwal
Nov 23 '18 at 9:47
add a comment |
2 Answers
2
active
oldest
votes
It is an encoding error. I hope utf8
can handle that.
Try
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path,encoding='utf-8')
add a comment |
Try this:
data = pd.read_csv(csv_path, encoding = "ISO-8859-1")
Or
data = pd.read_csv(csv_path, encoding = "utf-8")
1
thank you,its working
– arun
Dec 31 '18 at 10:17
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
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%2f53443975%2faccess-csv-files-in-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
It is an encoding error. I hope utf8
can handle that.
Try
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path,encoding='utf-8')
add a comment |
It is an encoding error. I hope utf8
can handle that.
Try
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path,encoding='utf-8')
add a comment |
It is an encoding error. I hope utf8
can handle that.
Try
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path,encoding='utf-8')
It is an encoding error. I hope utf8
can handle that.
Try
import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path,encoding='utf-8')
answered Nov 23 '18 at 9:41
HayatHayat
558516
558516
add a comment |
add a comment |
Try this:
data = pd.read_csv(csv_path, encoding = "ISO-8859-1")
Or
data = pd.read_csv(csv_path, encoding = "utf-8")
1
thank you,its working
– arun
Dec 31 '18 at 10:17
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
add a comment |
Try this:
data = pd.read_csv(csv_path, encoding = "ISO-8859-1")
Or
data = pd.read_csv(csv_path, encoding = "utf-8")
1
thank you,its working
– arun
Dec 31 '18 at 10:17
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
add a comment |
Try this:
data = pd.read_csv(csv_path, encoding = "ISO-8859-1")
Or
data = pd.read_csv(csv_path, encoding = "utf-8")
Try this:
data = pd.read_csv(csv_path, encoding = "ISO-8859-1")
Or
data = pd.read_csv(csv_path, encoding = "utf-8")
answered Nov 23 '18 at 9:42
Rahul AgarwalRahul Agarwal
2,19351027
2,19351027
1
thank you,its working
– arun
Dec 31 '18 at 10:17
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
add a comment |
1
thank you,its working
– arun
Dec 31 '18 at 10:17
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
1
1
thank you,its working
– arun
Dec 31 '18 at 10:17
thank you,its working
– arun
Dec 31 '18 at 10:17
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
You can't accept both answers, you can accept one and upvote both
– Rahul Agarwal
Dec 31 '18 at 10:18
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f53443975%2faccess-csv-files-in-python%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
You have a folder like
/r files/
in yourcsv_path
. Thatr
might be creating issues. You can try re-naming that folder to something else. It should work.– Mayank Porwal
Nov 23 '18 at 9:47