Create Table with pay grades










-2















Having trouble coding for the following question:



"Create a table that has 15 pay grades (rows) and within each pay grade are 10 steps (columns). Grade 1 step 1 starts at $21,885. Each step in a pay grade increases by 1.4 percent from the previous step. Each pay grade increases by 4.3 percent from step 1 in the previous grade. Label each row and column appropriately. Print the table and write to a file. Use integer values only."



Any help is greatly appreciated!










share|improve this question

















  • 2





    Please include the code you have written already, and any error messages.

    – Kingsley
    Nov 11 '18 at 21:41















-2















Having trouble coding for the following question:



"Create a table that has 15 pay grades (rows) and within each pay grade are 10 steps (columns). Grade 1 step 1 starts at $21,885. Each step in a pay grade increases by 1.4 percent from the previous step. Each pay grade increases by 4.3 percent from step 1 in the previous grade. Label each row and column appropriately. Print the table and write to a file. Use integer values only."



Any help is greatly appreciated!










share|improve this question

















  • 2





    Please include the code you have written already, and any error messages.

    – Kingsley
    Nov 11 '18 at 21:41













-2












-2








-2








Having trouble coding for the following question:



"Create a table that has 15 pay grades (rows) and within each pay grade are 10 steps (columns). Grade 1 step 1 starts at $21,885. Each step in a pay grade increases by 1.4 percent from the previous step. Each pay grade increases by 4.3 percent from step 1 in the previous grade. Label each row and column appropriately. Print the table and write to a file. Use integer values only."



Any help is greatly appreciated!










share|improve this question














Having trouble coding for the following question:



"Create a table that has 15 pay grades (rows) and within each pay grade are 10 steps (columns). Grade 1 step 1 starts at $21,885. Each step in a pay grade increases by 1.4 percent from the previous step. Each pay grade increases by 4.3 percent from step 1 in the previous grade. Label each row and column appropriately. Print the table and write to a file. Use integer values only."



Any help is greatly appreciated!







python python-2.7 jupyter-notebook






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 '18 at 21:39









Blake McCarthyBlake McCarthy

1




1







  • 2





    Please include the code you have written already, and any error messages.

    – Kingsley
    Nov 11 '18 at 21:41












  • 2





    Please include the code you have written already, and any error messages.

    – Kingsley
    Nov 11 '18 at 21:41







2




2





Please include the code you have written already, and any error messages.

– Kingsley
Nov 11 '18 at 21:41





Please include the code you have written already, and any error messages.

– Kingsley
Nov 11 '18 at 21:41












1 Answer
1






active

oldest

votes


















0














I'm not going to do your homework for you, but I'll give you some ideas to point you in the right direction. I assume you can use numpy so you can create and use arrays (perfect for this application).



  1. Create a numpy ndarray, dimension: 15 rows (pay grades) by 10 columns
    (steps)

  2. Assign the starting pay for Grade 1, Step 1 to cell [0,0]

  3. Step/Column values increase by 1.4% so the next column value iscol_i+1 = 1.014*col_i

  4. Grade/Rows values increase by 4.3% so the next row value is row_i+1 = 1.043*row_i

These can be calculated with 2 loops over the row/column indices.
If you're clever, you can create values for one row (or column) then calculate each row/comun in one shot.

ndarray won't handle mixed data types for titles, but printing should be simple enough with formatted strings.



"Use integer values only" leads to an interesting question:

Do you use integer math, or retain accuracy with floats, then print integer values?

Also, you need to decide if you want to truncate or round.






share|improve this answer






















    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%2f53253496%2fcreate-table-with-pay-grades%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









    0














    I'm not going to do your homework for you, but I'll give you some ideas to point you in the right direction. I assume you can use numpy so you can create and use arrays (perfect for this application).



    1. Create a numpy ndarray, dimension: 15 rows (pay grades) by 10 columns
      (steps)

    2. Assign the starting pay for Grade 1, Step 1 to cell [0,0]

    3. Step/Column values increase by 1.4% so the next column value iscol_i+1 = 1.014*col_i

    4. Grade/Rows values increase by 4.3% so the next row value is row_i+1 = 1.043*row_i

    These can be calculated with 2 loops over the row/column indices.
    If you're clever, you can create values for one row (or column) then calculate each row/comun in one shot.

    ndarray won't handle mixed data types for titles, but printing should be simple enough with formatted strings.



    "Use integer values only" leads to an interesting question:

    Do you use integer math, or retain accuracy with floats, then print integer values?

    Also, you need to decide if you want to truncate or round.






    share|improve this answer



























      0














      I'm not going to do your homework for you, but I'll give you some ideas to point you in the right direction. I assume you can use numpy so you can create and use arrays (perfect for this application).



      1. Create a numpy ndarray, dimension: 15 rows (pay grades) by 10 columns
        (steps)

      2. Assign the starting pay for Grade 1, Step 1 to cell [0,0]

      3. Step/Column values increase by 1.4% so the next column value iscol_i+1 = 1.014*col_i

      4. Grade/Rows values increase by 4.3% so the next row value is row_i+1 = 1.043*row_i

      These can be calculated with 2 loops over the row/column indices.
      If you're clever, you can create values for one row (or column) then calculate each row/comun in one shot.

      ndarray won't handle mixed data types for titles, but printing should be simple enough with formatted strings.



      "Use integer values only" leads to an interesting question:

      Do you use integer math, or retain accuracy with floats, then print integer values?

      Also, you need to decide if you want to truncate or round.






      share|improve this answer

























        0












        0








        0







        I'm not going to do your homework for you, but I'll give you some ideas to point you in the right direction. I assume you can use numpy so you can create and use arrays (perfect for this application).



        1. Create a numpy ndarray, dimension: 15 rows (pay grades) by 10 columns
          (steps)

        2. Assign the starting pay for Grade 1, Step 1 to cell [0,0]

        3. Step/Column values increase by 1.4% so the next column value iscol_i+1 = 1.014*col_i

        4. Grade/Rows values increase by 4.3% so the next row value is row_i+1 = 1.043*row_i

        These can be calculated with 2 loops over the row/column indices.
        If you're clever, you can create values for one row (or column) then calculate each row/comun in one shot.

        ndarray won't handle mixed data types for titles, but printing should be simple enough with formatted strings.



        "Use integer values only" leads to an interesting question:

        Do you use integer math, or retain accuracy with floats, then print integer values?

        Also, you need to decide if you want to truncate or round.






        share|improve this answer













        I'm not going to do your homework for you, but I'll give you some ideas to point you in the right direction. I assume you can use numpy so you can create and use arrays (perfect for this application).



        1. Create a numpy ndarray, dimension: 15 rows (pay grades) by 10 columns
          (steps)

        2. Assign the starting pay for Grade 1, Step 1 to cell [0,0]

        3. Step/Column values increase by 1.4% so the next column value iscol_i+1 = 1.014*col_i

        4. Grade/Rows values increase by 4.3% so the next row value is row_i+1 = 1.043*row_i

        These can be calculated with 2 loops over the row/column indices.
        If you're clever, you can create values for one row (or column) then calculate each row/comun in one shot.

        ndarray won't handle mixed data types for titles, but printing should be simple enough with formatted strings.



        "Use integer values only" leads to an interesting question:

        Do you use integer math, or retain accuracy with floats, then print integer values?

        Also, you need to decide if you want to truncate or round.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 12 '18 at 3:08









        kcw78kcw78

        345210




        345210





























            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%2f53253496%2fcreate-table-with-pay-grades%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

            𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

            Edmonton

            Crossroads (UK TV series)