最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

dataframe - How to get the alignment in Python Codes accurately in Visual Studio - Stack Overflow

programmeradmin0浏览0评论

I am trying to write this code in Python in Visual Studio. For some reason I cant get the code to align automatically.

I wrote this code, based on Syntax, the code is not wrong but I cant get Python to create the Secondary_Key and based on my understanding its because the .assign doesnt align.

So can someone help with understand why this is happening and how to get this resolved.

The code I wrote this this.

Final_df_With_Key = (Final_df
                     .assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
                             "-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" +  df["B2B"]).assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
                .loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])

When I press enter before the .assign for the secondary key, the alignment becomes this.

Final_df_With_Key = (Final_df
                     .assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
                             "-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" +  df["B2B"])
                             .assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
                .loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])

I tried pressing tab and backspace but this wont automatically wont align, unless you press spacebar to get it to align.

Please let me know you opinion on this.

I am trying to write this code in Python in Visual Studio. For some reason I cant get the code to align automatically.

I wrote this code, based on Syntax, the code is not wrong but I cant get Python to create the Secondary_Key and based on my understanding its because the .assign doesnt align.

So can someone help with understand why this is happening and how to get this resolved.

The code I wrote this this.

Final_df_With_Key = (Final_df
                     .assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
                             "-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" +  df["B2B"]).assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
                .loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])

When I press enter before the .assign for the secondary key, the alignment becomes this.

Final_df_With_Key = (Final_df
                     .assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
                             "-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" +  df["B2B"])
                             .assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
                .loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])

I tried pressing tab and backspace but this wont automatically wont align, unless you press spacebar to get it to align.

Please let me know you opinion on this.

Share Improve this question asked Apr 1 at 10:06 Mr PoolMr Pool 3532 silver badges12 bronze badges 1
  • Why not pull those lamda out into proper methods for much greater readability? – JonSG Commented Apr 1 at 13:09
Add a comment  | 

1 Answer 1

Reset to default 0

Try this: align your .assign and .loc , should help readability. Also, I use https://marketplace.visualstudio/items?itemName=oderwat.indent-rainbow

To help proper indenting IAW the interpreter.

Final_df_With_Key = (Final_df
                .assign(Primary_Key = lambda df : df["Item-Color"] + "-" + df["DC"] +
                        "-" + df["Subsidiary"] + "-" + df["Year"].astype(str) + "-" + df["Month"].astype(str) + "-" +  df["B2B"])
                .assign(Secondary_Key = lambda df : df["Item-Color"] + "-" + df["DC"])
                .loc[:,['Primary_Key'] + [col for col in Final_df.columns if col != 'Primary_Key']])
发布评论

评论列表(0)

  1. 暂无评论