Why can't you replace integers with lists using `replace` method - pandas
So let's say i have a pandas data-frame as below:
df=pd.DataFrame({'a':[1,2,3,0]})
So my goal is to replace 0
value with (empty list) in this dataframe, but i did:
print(df.replace(0,))
But it gives me an error:
TypeError: Invalid "to_replace" type: 'int'
I tried everything that's possible i.e:
df[df==0]=
etc...
But nothing works.
Desired output (in case for confusion):
a
0 1
1 2
2 3
3
python pandas dataframe replace types
add a comment |
So let's say i have a pandas data-frame as below:
df=pd.DataFrame({'a':[1,2,3,0]})
So my goal is to replace 0
value with (empty list) in this dataframe, but i did:
print(df.replace(0,))
But it gives me an error:
TypeError: Invalid "to_replace" type: 'int'
I tried everything that's possible i.e:
df[df==0]=
etc...
But nothing works.
Desired output (in case for confusion):
a
0 1
1 2
2 3
3
python pandas dataframe replace types
add a comment |
So let's say i have a pandas data-frame as below:
df=pd.DataFrame({'a':[1,2,3,0]})
So my goal is to replace 0
value with (empty list) in this dataframe, but i did:
print(df.replace(0,))
But it gives me an error:
TypeError: Invalid "to_replace" type: 'int'
I tried everything that's possible i.e:
df[df==0]=
etc...
But nothing works.
Desired output (in case for confusion):
a
0 1
1 2
2 3
3
python pandas dataframe replace types
So let's say i have a pandas data-frame as below:
df=pd.DataFrame({'a':[1,2,3,0]})
So my goal is to replace 0
value with (empty list) in this dataframe, but i did:
print(df.replace(0,))
But it gives me an error:
TypeError: Invalid "to_replace" type: 'int'
I tried everything that's possible i.e:
df[df==0]=
etc...
But nothing works.
Desired output (in case for confusion):
a
0 1
1 2
2 3
3
python pandas dataframe replace types
python pandas dataframe replace types
edited Dec 19 '18 at 0:16
U9-Forward
asked Nov 21 '18 at 10:34


U9-ForwardU9-Forward
15.2k41438
15.2k41438
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
It is possible by list comprehension, but because mixed content - numeric with list it is not recommended:
df['a'] = [ if x == 0 else x for x in df.a]
print (df)
a
0 1
1 2
2 3
3
And replace all values in all columns:
df = df.applymap(lambda x: if x == 0 else x)
print (df)
a
0 1
1 2
2 3
3
1
Note that[] * len(df)
may not work iflen(df) > 1
. It will create a list containing the same instance of empty list rather thanlen(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.
– Lie Ryan
Nov 21 '18 at 13:59
1
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
1
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
add a comment |
There are two issues here. First is pandas' quirkiness when dealing with lists. To replace values in a DataFrame with list you need to do something like this;
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
This creates n
empty list based on the number of items that matches the criteria (df == 0
)
The second issue is that your column is of integer type, and you can't store a list in an integer column. So before you can assign the list, you would first need to convert the column type to object first.
df = df.astype(object)
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
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%2f53410163%2fwhy-cant-you-replace-integers-with-lists-using-replace-method-pandas%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 possible by list comprehension, but because mixed content - numeric with list it is not recommended:
df['a'] = [ if x == 0 else x for x in df.a]
print (df)
a
0 1
1 2
2 3
3
And replace all values in all columns:
df = df.applymap(lambda x: if x == 0 else x)
print (df)
a
0 1
1 2
2 3
3
1
Note that[] * len(df)
may not work iflen(df) > 1
. It will create a list containing the same instance of empty list rather thanlen(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.
– Lie Ryan
Nov 21 '18 at 13:59
1
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
1
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
add a comment |
It is possible by list comprehension, but because mixed content - numeric with list it is not recommended:
df['a'] = [ if x == 0 else x for x in df.a]
print (df)
a
0 1
1 2
2 3
3
And replace all values in all columns:
df = df.applymap(lambda x: if x == 0 else x)
print (df)
a
0 1
1 2
2 3
3
1
Note that[] * len(df)
may not work iflen(df) > 1
. It will create a list containing the same instance of empty list rather thanlen(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.
– Lie Ryan
Nov 21 '18 at 13:59
1
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
1
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
add a comment |
It is possible by list comprehension, but because mixed content - numeric with list it is not recommended:
df['a'] = [ if x == 0 else x for x in df.a]
print (df)
a
0 1
1 2
2 3
3
And replace all values in all columns:
df = df.applymap(lambda x: if x == 0 else x)
print (df)
a
0 1
1 2
2 3
3
It is possible by list comprehension, but because mixed content - numeric with list it is not recommended:
df['a'] = [ if x == 0 else x for x in df.a]
print (df)
a
0 1
1 2
2 3
3
And replace all values in all columns:
df = df.applymap(lambda x: if x == 0 else x)
print (df)
a
0 1
1 2
2 3
3
edited Nov 21 '18 at 14:00
answered Nov 21 '18 at 11:17


jezraeljezrael
334k25277352
334k25277352
1
Note that[] * len(df)
may not work iflen(df) > 1
. It will create a list containing the same instance of empty list rather thanlen(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.
– Lie Ryan
Nov 21 '18 at 13:59
1
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
1
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
add a comment |
1
Note that[] * len(df)
may not work iflen(df) > 1
. It will create a list containing the same instance of empty list rather thanlen(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.
– Lie Ryan
Nov 21 '18 at 13:59
1
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
1
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
1
1
Note that
[] * len(df)
may not work if len(df) > 1
. It will create a list containing the same instance of empty list rather than len(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.– Lie Ryan
Nov 21 '18 at 13:59
Note that
[] * len(df)
may not work if len(df) > 1
. It will create a list containing the same instance of empty list rather than len(df)
unique empty lists, which is probably not what you wanted. You'll need to use list comprehension to create new lists.– Lie Ryan
Nov 21 '18 at 13:59
1
1
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
Thanks so much, i appreciate it, came back and accepted this!!!
– U9-Forward
Nov 22 '18 at 8:10
1
1
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
@U9-Forward - Thank you very much!
– jezrael
Nov 22 '18 at 8:10
add a comment |
There are two issues here. First is pandas' quirkiness when dealing with lists. To replace values in a DataFrame with list you need to do something like this;
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
This creates n
empty list based on the number of items that matches the criteria (df == 0
)
The second issue is that your column is of integer type, and you can't store a list in an integer column. So before you can assign the list, you would first need to convert the column type to object first.
df = df.astype(object)
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
add a comment |
There are two issues here. First is pandas' quirkiness when dealing with lists. To replace values in a DataFrame with list you need to do something like this;
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
This creates n
empty list based on the number of items that matches the criteria (df == 0
)
The second issue is that your column is of integer type, and you can't store a list in an integer column. So before you can assign the list, you would first need to convert the column type to object first.
df = df.astype(object)
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
add a comment |
There are two issues here. First is pandas' quirkiness when dealing with lists. To replace values in a DataFrame with list you need to do something like this;
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
This creates n
empty list based on the number of items that matches the criteria (df == 0
)
The second issue is that your column is of integer type, and you can't store a list in an integer column. So before you can assign the list, you would first need to convert the column type to object first.
df = df.astype(object)
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
There are two issues here. First is pandas' quirkiness when dealing with lists. To replace values in a DataFrame with list you need to do something like this;
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
This creates n
empty list based on the number of items that matches the criteria (df == 0
)
The second issue is that your column is of integer type, and you can't store a list in an integer column. So before you can assign the list, you would first need to convert the column type to object first.
df = df.astype(object)
df.loc[df.a == 0, "a"] = [ for _ in df[df.a == 0]]
answered Nov 21 '18 at 13:50
Lie RyanLie Ryan
45k968122
45k968122
add a comment |
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%2f53410163%2fwhy-cant-you-replace-integers-with-lists-using-replace-method-pandas%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