You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nobody like to do things twice. So once you have crafted an awesome function you will want to store it in some way so that you don't have to type it in every time you need it. In R you use scripts for this. They are simple text files with the code that you want to run. You could put simple commands in there, but you shouldn't. It is better to only store functions in scripts and then call those functions.