How can I go to a function's definition in Jupyter notebook?





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







0















How can i go to a function definition in Jupyter?



I want something like Visual studio's f12, or eclipse's ctrl+click.



I find it hard to believe this does not exist, yet couldn't find it










share|improve this question































    0















    How can i go to a function definition in Jupyter?



    I want something like Visual studio's f12, or eclipse's ctrl+click.



    I find it hard to believe this does not exist, yet couldn't find it










    share|improve this question



























      0












      0








      0








      How can i go to a function definition in Jupyter?



      I want something like Visual studio's f12, or eclipse's ctrl+click.



      I find it hard to believe this does not exist, yet couldn't find it










      share|improve this question
















      How can i go to a function definition in Jupyter?



      I want something like Visual studio's f12, or eclipse's ctrl+click.



      I find it hard to believe this does not exist, yet couldn't find it







      jupyter-notebook






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 23 '18 at 23:02







      Gulzar

















      asked Nov 23 '18 at 17:45









      GulzarGulzar

      1,05211223




      1,05211223
























          1 Answer
          1






          active

          oldest

          votes


















          1














          I'm not aware of such feature that will work for all kernels.



          If you are using a Python kernel and have ipython installed you can use inspection functions:






          • %pdoc <object>: Print (or run through a pager if too long) the docstring for an object. If the given object is a class, it will print
            both the class and theconstructor docstrings.


          • %pdef <object>: Print the call signature for any callable object. If the object is a class, print the constructor information.


          • %psource <object>: Print (or run through a pager if too long) the source code for an object.


          • %pfile <object>: Show the entire source file where an object was defined via a pager, opening it at the line where the object
            definition begins.


          • %who/%whos: These functions give information about identifiers you have defined interactively (not things you loaded or defined in
            your configuration files). %who just prints a list of identifiers and
            %whos prints a table with some basic details about each identifier.


          Typing ??word or word?? gives access to the full information,
          including the source code where possible. Long strings are not
          snipped.




          Usage Example



          In [4]: pd.DataFrame?

          In [5]: pd.DataFrame??

          In [6]: %pdef pd.Dataframe
          Object `pd.Dataframe` not found.

          In [7]: %pdef pd.DataFrame
          Class constructor information:
          pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False)

          In [8]: %pdoc pd.DataFrame

          In [9]: %pfile pd.DataFrame


          Resources



          Dynamic object information






          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%2f53451028%2fhow-can-i-go-to-a-functions-definition-in-jupyter-notebook%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














            I'm not aware of such feature that will work for all kernels.



            If you are using a Python kernel and have ipython installed you can use inspection functions:






            • %pdoc <object>: Print (or run through a pager if too long) the docstring for an object. If the given object is a class, it will print
              both the class and theconstructor docstrings.


            • %pdef <object>: Print the call signature for any callable object. If the object is a class, print the constructor information.


            • %psource <object>: Print (or run through a pager if too long) the source code for an object.


            • %pfile <object>: Show the entire source file where an object was defined via a pager, opening it at the line where the object
              definition begins.


            • %who/%whos: These functions give information about identifiers you have defined interactively (not things you loaded or defined in
              your configuration files). %who just prints a list of identifiers and
              %whos prints a table with some basic details about each identifier.


            Typing ??word or word?? gives access to the full information,
            including the source code where possible. Long strings are not
            snipped.




            Usage Example



            In [4]: pd.DataFrame?

            In [5]: pd.DataFrame??

            In [6]: %pdef pd.Dataframe
            Object `pd.Dataframe` not found.

            In [7]: %pdef pd.DataFrame
            Class constructor information:
            pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False)

            In [8]: %pdoc pd.DataFrame

            In [9]: %pfile pd.DataFrame


            Resources



            Dynamic object information






            share|improve this answer




























              1














              I'm not aware of such feature that will work for all kernels.



              If you are using a Python kernel and have ipython installed you can use inspection functions:






              • %pdoc <object>: Print (or run through a pager if too long) the docstring for an object. If the given object is a class, it will print
                both the class and theconstructor docstrings.


              • %pdef <object>: Print the call signature for any callable object. If the object is a class, print the constructor information.


              • %psource <object>: Print (or run through a pager if too long) the source code for an object.


              • %pfile <object>: Show the entire source file where an object was defined via a pager, opening it at the line where the object
                definition begins.


              • %who/%whos: These functions give information about identifiers you have defined interactively (not things you loaded or defined in
                your configuration files). %who just prints a list of identifiers and
                %whos prints a table with some basic details about each identifier.


              Typing ??word or word?? gives access to the full information,
              including the source code where possible. Long strings are not
              snipped.




              Usage Example



              In [4]: pd.DataFrame?

              In [5]: pd.DataFrame??

              In [6]: %pdef pd.Dataframe
              Object `pd.Dataframe` not found.

              In [7]: %pdef pd.DataFrame
              Class constructor information:
              pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False)

              In [8]: %pdoc pd.DataFrame

              In [9]: %pfile pd.DataFrame


              Resources



              Dynamic object information






              share|improve this answer


























                1












                1








                1







                I'm not aware of such feature that will work for all kernels.



                If you are using a Python kernel and have ipython installed you can use inspection functions:






                • %pdoc <object>: Print (or run through a pager if too long) the docstring for an object. If the given object is a class, it will print
                  both the class and theconstructor docstrings.


                • %pdef <object>: Print the call signature for any callable object. If the object is a class, print the constructor information.


                • %psource <object>: Print (or run through a pager if too long) the source code for an object.


                • %pfile <object>: Show the entire source file where an object was defined via a pager, opening it at the line where the object
                  definition begins.


                • %who/%whos: These functions give information about identifiers you have defined interactively (not things you loaded or defined in
                  your configuration files). %who just prints a list of identifiers and
                  %whos prints a table with some basic details about each identifier.


                Typing ??word or word?? gives access to the full information,
                including the source code where possible. Long strings are not
                snipped.




                Usage Example



                In [4]: pd.DataFrame?

                In [5]: pd.DataFrame??

                In [6]: %pdef pd.Dataframe
                Object `pd.Dataframe` not found.

                In [7]: %pdef pd.DataFrame
                Class constructor information:
                pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False)

                In [8]: %pdoc pd.DataFrame

                In [9]: %pfile pd.DataFrame


                Resources



                Dynamic object information






                share|improve this answer













                I'm not aware of such feature that will work for all kernels.



                If you are using a Python kernel and have ipython installed you can use inspection functions:






                • %pdoc <object>: Print (or run through a pager if too long) the docstring for an object. If the given object is a class, it will print
                  both the class and theconstructor docstrings.


                • %pdef <object>: Print the call signature for any callable object. If the object is a class, print the constructor information.


                • %psource <object>: Print (or run through a pager if too long) the source code for an object.


                • %pfile <object>: Show the entire source file where an object was defined via a pager, opening it at the line where the object
                  definition begins.


                • %who/%whos: These functions give information about identifiers you have defined interactively (not things you loaded or defined in
                  your configuration files). %who just prints a list of identifiers and
                  %whos prints a table with some basic details about each identifier.


                Typing ??word or word?? gives access to the full information,
                including the source code where possible. Long strings are not
                snipped.




                Usage Example



                In [4]: pd.DataFrame?

                In [5]: pd.DataFrame??

                In [6]: %pdef pd.Dataframe
                Object `pd.Dataframe` not found.

                In [7]: %pdef pd.DataFrame
                Class constructor information:
                pd.DataFrame(data=None, index=None, columns=None, dtype=None, copy=False)

                In [8]: %pdoc pd.DataFrame

                In [9]: %pfile pd.DataFrame


                Resources



                Dynamic object information







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 24 '18 at 11:33









                Kamil NiskiKamil Niski

                2,6891315




                2,6891315
































                    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%2f53451028%2fhow-can-i-go-to-a-functions-definition-in-jupyter-notebook%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

                    If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                    Alcedinidae

                    Can an atomic nucleus contain both particles and antiparticles? [duplicate]