Tips on Spyder
Posted on May 22, 2015 in Software
Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.
** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **
http://www.southampton.ac.uk/~fangohr/blog/spyder-the-python-ide.html
-
if an opened script does not automatically refresh after being modified in another place, you can click on the editor tab at the bottom to manually refresh it.
-
the best way to run a block of code in spyder is to define cells using
#%%
, shift + enter. F9 runs current line or selection SpyDer does not goes to the next line automatically, so you have to press theDown
arrow key to go to the next line manually. -
it seems that you cannot define shortcuts by yourself in spyder
-
you cannot run definition of a function or a if/else code block line by line similar to what you can do in RStudio however, you can define cells to contain blocks of code to run.
ctrl + I gives help doc on object ... cursor has to be on a function
an open parenthesis pops up the argument hints, you can type in mutliple open parentheses ... and you can put mouse on the pop-up to make it stay
spyder run code not as convenient as rstudio, but you can use cells to help you, a little bit more work ... shift + enter
is it possible to customize hotkeys?