Troubleshooting

Problem: R won’t read my code; it just says “NULL”

Check your code and make sure you are writing things exactly as it shows. For example, if you named your data file DATA and then tried to use the code names(data), it won’t read it because “data” is not the same as “DATA“; you would need to use names(DATA).