Assign incremental integers as Column headers - PythonCalling an external command in PythonWhat are metaclasses in Python?How can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Converting integer to string in Python?Does Python have a string 'contains' substring method?Renaming columns in pandasDelete column from pandas DataFrame by column nameSelect rows from a DataFrame based on values in a column in pandasGet list from pandas DataFrame column headers

Today is the Center

Can I use a neutral wire from another outlet to repair a broken neutral?

In a Spin are Both Wings Stalled?

Stopping power of mountain vs road bike

How do I write bicross product symbols in latex?

Why does Kotter return in Welcome Back Kotter

How can I tell someone that I want to be his or her friend?

Anagram holiday

What killed these X2 caps?

What mechanic is there to disable a threat instead of killing it?

Western buddy movie with a supernatural twist where a woman turns into an eagle at the end

What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?

How can saying a song's name be a copyright violation?

SSH "lag" in LAN on some machines, mixed distros

UK: Is there precedent for the governments e-petition site changing the direction of a government decision?

AES: Why is it a good practice to use only the first 16bytes of a hash for encryption?

Is "remove commented out code" correct English?

How badly should I try to prevent a user from XSSing themselves?

Should I tell management that I intend to leave due to bad software development practices?

How much of data wrangling is a data scientist's job?

Why is consensus so controversial in Britain?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

Can I ask the recruiters in my resume to put the reason why I am rejected?

Is it possible to download Internet Explorer on my Mac running OS X El Capitan?



Assign incremental integers as Column headers - Python


Calling an external command in PythonWhat are metaclasses in Python?How can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Converting integer to string in Python?Does Python have a string 'contains' substring method?Renaming columns in pandasDelete column from pandas DataFrame by column nameSelect rows from a DataFrame based on values in a column in pandasGet list from pandas DataFrame column headers






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am trying to automatically assign integers as column headers to a pandas df after a specific string. I can do this manually by reading and counting the amount of columns in any one df. e.g.



df.columns=['X',1,2,3...]


But I want to achieve this automatically without having to count the number of columns. The first column should be a string and then automatically assign incremental integers to the other columns..



I attempted to achieve this using a combination of @kudeh's suggestion.



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]


But this returns an error:



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]

TypeError: must be str, not list


Intended Output:



df.columns = ['X',1,2,3...]









share|improve this question
























  • I have to manually count the columns and insert df.columns['X',1,2,n]. I want to automatically assign the columns without having to count them.

    – jonboy
    Mar 8 at 0:31

















0















I am trying to automatically assign integers as column headers to a pandas df after a specific string. I can do this manually by reading and counting the amount of columns in any one df. e.g.



df.columns=['X',1,2,3...]


But I want to achieve this automatically without having to count the number of columns. The first column should be a string and then automatically assign incremental integers to the other columns..



I attempted to achieve this using a combination of @kudeh's suggestion.



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]


But this returns an error:



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]

TypeError: must be str, not list


Intended Output:



df.columns = ['X',1,2,3...]









share|improve this question
























  • I have to manually count the columns and insert df.columns['X',1,2,n]. I want to automatically assign the columns without having to count them.

    – jonboy
    Mar 8 at 0:31













0












0








0








I am trying to automatically assign integers as column headers to a pandas df after a specific string. I can do this manually by reading and counting the amount of columns in any one df. e.g.



df.columns=['X',1,2,3...]


But I want to achieve this automatically without having to count the number of columns. The first column should be a string and then automatically assign incremental integers to the other columns..



I attempted to achieve this using a combination of @kudeh's suggestion.



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]


But this returns an error:



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]

TypeError: must be str, not list


Intended Output:



df.columns = ['X',1,2,3...]









share|improve this question
















I am trying to automatically assign integers as column headers to a pandas df after a specific string. I can do this manually by reading and counting the amount of columns in any one df. e.g.



df.columns=['X',1,2,3...]


But I want to achieve this automatically without having to count the number of columns. The first column should be a string and then automatically assign incremental integers to the other columns..



I attempted to achieve this using a combination of @kudeh's suggestion.



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]


But this returns an error:



df.columns = 'X' + [i for i in range(1,len(df.columns)+1)]

TypeError: must be str, not list


Intended Output:



df.columns = ['X',1,2,3...]






python pandas dataframe int assign






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 0:29







jonboy

















asked Mar 7 at 23:54









jonboyjonboy

32112




32112












  • I have to manually count the columns and insert df.columns['X',1,2,n]. I want to automatically assign the columns without having to count them.

    – jonboy
    Mar 8 at 0:31

















  • I have to manually count the columns and insert df.columns['X',1,2,n]. I want to automatically assign the columns without having to count them.

    – jonboy
    Mar 8 at 0:31
















I have to manually count the columns and insert df.columns['X',1,2,n]. I want to automatically assign the columns without having to count them.

– jonboy
Mar 8 at 0:31





I have to manually count the columns and insert df.columns['X',1,2,n]. I want to automatically assign the columns without having to count them.

– jonboy
Mar 8 at 0:31












1 Answer
1






active

oldest

votes


















1














cols = ['X']
otherCols = [i for i in range(1,len(df.columns))]
cols.extend(otherCols)

df.columns = cols





share|improve this answer

























  • Sorry @kudeh. I didn't explain the question properly. I've amended it now

    – jonboy
    Mar 8 at 0:20











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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55054680%2fassign-incremental-integers-as-column-headers-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














cols = ['X']
otherCols = [i for i in range(1,len(df.columns))]
cols.extend(otherCols)

df.columns = cols





share|improve this answer

























  • Sorry @kudeh. I didn't explain the question properly. I've amended it now

    – jonboy
    Mar 8 at 0:20















1














cols = ['X']
otherCols = [i for i in range(1,len(df.columns))]
cols.extend(otherCols)

df.columns = cols





share|improve this answer

























  • Sorry @kudeh. I didn't explain the question properly. I've amended it now

    – jonboy
    Mar 8 at 0:20













1












1








1







cols = ['X']
otherCols = [i for i in range(1,len(df.columns))]
cols.extend(otherCols)

df.columns = cols





share|improve this answer















cols = ['X']
otherCols = [i for i in range(1,len(df.columns))]
cols.extend(otherCols)

df.columns = cols






share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 8 at 0:33

























answered Mar 8 at 0:09









kudehkudeh

350110




350110












  • Sorry @kudeh. I didn't explain the question properly. I've amended it now

    – jonboy
    Mar 8 at 0:20

















  • Sorry @kudeh. I didn't explain the question properly. I've amended it now

    – jonboy
    Mar 8 at 0:20
















Sorry @kudeh. I didn't explain the question properly. I've amended it now

– jonboy
Mar 8 at 0:20





Sorry @kudeh. I didn't explain the question properly. I've amended it now

– jonboy
Mar 8 at 0:20



















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55054680%2fassign-incremental-integers-as-column-headers-python%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

AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

Алба-Юлія

Захаров Федір Захарович