How do I remove name and dtype from pandas output The Next CEO of Stack OverflowHow to flush output of print function?How can I remove a trailing newline in Python?How to randomly select an item from a list?How do I remove an element from a list by index in Python?How to remove items from a list while iterating?How to remove a key from a Python dictionary?Delete column from pandas DataFrame by column nameHow to iterate over rows in a DataFrame in Pandas?Select rows from a DataFrame based on values in a column in pandasGet list from pandas DataFrame column headers

Lucky Feat: How can "more than one creature spend a luck point to influence the outcome of a roll"?

Redefining symbol midway through a document

What is the difference between "hamstring tendon" and "common hamstring tendon"?

Expectation in a stochastic differential equation

When "be it" is at the beginning of a sentence, what kind of structure do you call it?

Players Circumventing the limitations of Wish

Can Sneak Attack be used when hitting with an improvised weapon?

Can someone explain this formula for calculating Manhattan distance?

Computationally populating tables with probability data

Can you teleport closer to a creature you are Frightened of?

Is it convenient to ask the journal's editor for two additional days to complete a review?

How to avoid supervisors with prejudiced views?

Are the names of these months realistic?

(How) Could a medieval fantasy world survive a magic-induced "nuclear winter"?

What difference does it make using sed with/without whitespaces?

From jafe to El-Guest

Purpose of level-shifter with same in and out voltages

Yu-Gi-Oh cards in Python 3

How did Beeri the Hittite come up with naming his daughter Yehudit?

Is it okay to majorly distort historical facts while writing a fiction story?

Why the last AS PATH item always is `I` or `?`?

Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact

What would be the main consequences for a country leaving the WTO?

Defamation due to breach of confidentiality



How do I remove name and dtype from pandas output



The Next CEO of Stack OverflowHow to flush output of print function?How can I remove a trailing newline in Python?How to randomly select an item from a list?How do I remove an element from a list by index in Python?How to remove items from a list while iterating?How to remove a key from a Python dictionary?Delete column from pandas DataFrame by column nameHow to iterate over rows in a DataFrame in Pandas?Select rows from a DataFrame based on values in a column in pandasGet list from pandas DataFrame column headers










1















I have output that looks like this:



nutrition_info_256174499 = df1.loc[:"Salt" , "%Reference Intake*"]

print (nutrition_info_256174499)

Typical Values
Energy 5%
Fat 1%
of which saturates 1%
Carbohydrates 7%
of which sugars 2%
Fibre -
Protein 7%
Salt 6%
Name: %Reference Intake*, dtype: object


What must be done to remove both Name and dtype at end of output?










share|improve this question




























    1















    I have output that looks like this:



    nutrition_info_256174499 = df1.loc[:"Salt" , "%Reference Intake*"]

    print (nutrition_info_256174499)

    Typical Values
    Energy 5%
    Fat 1%
    of which saturates 1%
    Carbohydrates 7%
    of which sugars 2%
    Fibre -
    Protein 7%
    Salt 6%
    Name: %Reference Intake*, dtype: object


    What must be done to remove both Name and dtype at end of output?










    share|improve this question


























      1












      1








      1








      I have output that looks like this:



      nutrition_info_256174499 = df1.loc[:"Salt" , "%Reference Intake*"]

      print (nutrition_info_256174499)

      Typical Values
      Energy 5%
      Fat 1%
      of which saturates 1%
      Carbohydrates 7%
      of which sugars 2%
      Fibre -
      Protein 7%
      Salt 6%
      Name: %Reference Intake*, dtype: object


      What must be done to remove both Name and dtype at end of output?










      share|improve this question
















      I have output that looks like this:



      nutrition_info_256174499 = df1.loc[:"Salt" , "%Reference Intake*"]

      print (nutrition_info_256174499)

      Typical Values
      Energy 5%
      Fat 1%
      of which saturates 1%
      Carbohydrates 7%
      of which sugars 2%
      Fibre -
      Protein 7%
      Salt 6%
      Name: %Reference Intake*, dtype: object


      What must be done to remove both Name and dtype at end of output?







      python pandas






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 7 at 17:57









      Darkonaut

      4,79921429




      4,79921429










      asked Oct 27 '18 at 18:48









      NabihNabih

      82




      82






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Use the .values attribute.



          Example:



          s = pd.Series(['race','gender'],index=[1,2])
          print(s)
          Out[159]:
          1 race
          2 gender
          dtype: object


          s.values
          array(['race', 'gender'], dtype=object)


          You can convert to a list or access each value:



          list(s)
          ['race', 'gender']





          share|improve this answer






























            0














            For printing with preserving index you can use .to_string():



            df = pd.DataFrame('a': [1,2,3], 'b': [2.23, 0.23, 2.3], index=['x1', 'x2', 'x3'])

            print(df.loc[:'x2', 'b'].to_string())
            # Out:
            x1 2.23
            x2 0.23





            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%2f53025207%2fhow-do-i-remove-name-and-dtype-from-pandas-output%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









              0














              Use the .values attribute.



              Example:



              s = pd.Series(['race','gender'],index=[1,2])
              print(s)
              Out[159]:
              1 race
              2 gender
              dtype: object


              s.values
              array(['race', 'gender'], dtype=object)


              You can convert to a list or access each value:



              list(s)
              ['race', 'gender']





              share|improve this answer



























                0














                Use the .values attribute.



                Example:



                s = pd.Series(['race','gender'],index=[1,2])
                print(s)
                Out[159]:
                1 race
                2 gender
                dtype: object


                s.values
                array(['race', 'gender'], dtype=object)


                You can convert to a list or access each value:



                list(s)
                ['race', 'gender']





                share|improve this answer

























                  0












                  0








                  0







                  Use the .values attribute.



                  Example:



                  s = pd.Series(['race','gender'],index=[1,2])
                  print(s)
                  Out[159]:
                  1 race
                  2 gender
                  dtype: object


                  s.values
                  array(['race', 'gender'], dtype=object)


                  You can convert to a list or access each value:



                  list(s)
                  ['race', 'gender']





                  share|improve this answer













                  Use the .values attribute.



                  Example:



                  s = pd.Series(['race','gender'],index=[1,2])
                  print(s)
                  Out[159]:
                  1 race
                  2 gender
                  dtype: object


                  s.values
                  array(['race', 'gender'], dtype=object)


                  You can convert to a list or access each value:



                  list(s)
                  ['race', 'gender']






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Oct 27 '18 at 18:53









                  makarosmakaros

                  6,57122547




                  6,57122547























                      0














                      For printing with preserving index you can use .to_string():



                      df = pd.DataFrame('a': [1,2,3], 'b': [2.23, 0.23, 2.3], index=['x1', 'x2', 'x3'])

                      print(df.loc[:'x2', 'b'].to_string())
                      # Out:
                      x1 2.23
                      x2 0.23





                      share|improve this answer



























                        0














                        For printing with preserving index you can use .to_string():



                        df = pd.DataFrame('a': [1,2,3], 'b': [2.23, 0.23, 2.3], index=['x1', 'x2', 'x3'])

                        print(df.loc[:'x2', 'b'].to_string())
                        # Out:
                        x1 2.23
                        x2 0.23





                        share|improve this answer

























                          0












                          0








                          0







                          For printing with preserving index you can use .to_string():



                          df = pd.DataFrame('a': [1,2,3], 'b': [2.23, 0.23, 2.3], index=['x1', 'x2', 'x3'])

                          print(df.loc[:'x2', 'b'].to_string())
                          # Out:
                          x1 2.23
                          x2 0.23





                          share|improve this answer













                          For printing with preserving index you can use .to_string():



                          df = pd.DataFrame('a': [1,2,3], 'b': [2.23, 0.23, 2.3], index=['x1', 'x2', 'x3'])

                          print(df.loc[:'x2', 'b'].to_string())
                          # Out:
                          x1 2.23
                          x2 0.23






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Oct 27 '18 at 19:23









                          DarkonautDarkonaut

                          4,79921429




                          4,79921429



























                              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%2f53025207%2fhow-do-i-remove-name-and-dtype-from-pandas-output%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

                              Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                              Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                              Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved