Bonjour,
je viens de commencer les cours sur R mais j'aimerai savoir comment fait-on pour enregistrer ce que l'on a tapé pour le récupérer un autre jour pour pouvoir poursuivre.
je tien a préciser que je n'écrit pas dans le script (je sais pas si c'est important ou pas alors je le dit)
merci de vos réponses
J'aimerai avoir une vrai réponse s'il vous plait,
je vais former différemment ma question, j'ai installé le logiciel langage R.2.6.2 sur mon ordi et j'aimerai savoir comment f
Solution1 : si tu nous disais ce que tu utilises comme éditeur, ce serait plus simple.
Solution 2 : chercher par toi-même dans les sites qui traite du langage R me semble la meilleur des options avant de poser la question sur un forum généraliste. http://freshmeat.net/projects/r/?branch_id=8767&release... http://www.r-project.org/
Solution 3 : Essayer ça :
Citation :
1. Create a separate sub-directory, say work, to hold data files on which you will use R for this problem. This will be the working directory whenever you use R for this particular problem.
$ mkdir work
$ cd work
2. Start the R program with the command
$ R
3. At this point R commands may be issued (see later).
4. To quit the R program the command is
> q()
At this point you will be asked whether you want to save the data from your R session. On some systems this will bring up a dialog box, and on others you will receive a text prompt to which you can respond yes, no or cancel (a single letter abbreviation will do) to save the data before quitting, quit without saving, or return to the R session. Data which is saved will be available in future R sessions.