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
Alternatively, you can also save objects in R memory to a file by
207
-
specifying the name of the object, in this case the `iris` data frame,
208
-
and passing a filename to the `file=` argument.
209
-
210
-
!!! r-project "r"
211
-
212
-
```r
213
-
saveRDS(iris, file="iris.rds")
214
-
215
-
# By convention, we use the .rds file extension
216
-
```
217
173
218
174
219
175
## Using AI
220
176
221
-
AI tools such as ChatGPT can be very useful for getting help with R
222
-
programming. The best way to learn how to use these tools is to play around with them. Try asking how to make a nice boxplot in R using your favourite colours, how to import a csv table from your local computer into RStudio, or how to calculate summary statistics for a dataframe in R. You can also ask for help with specific error messages you encounter while coding in R.
177
+
AI tools such as ChatGPT and Claude can be very useful for getting help with R
178
+
programming. The best way to learn how to use these tools is to play around with them. Try asking how to make a nice boxplot in R using your favourite colours, how to import a csv table from your local computer into RStudio, or how to calculate summary statistics for a dataframe in R. You can also ask for help with specific error messages you encounter while coding in R.
223
179
224
180
> Note: Be cautious and always verify the information provided by AI, as it may not always be accurate or reliable. Use AI as a starting point, but don't rely on it exclusively for critical tasks. Be very cautious about sharing sensitive or personal information with AI tools.
0 commit comments