1
I’m learning to use Jupiter Notebook to study Data Analysis, but I’m encountering a problem using it. In the lesson I am doing, we should read some data provided with the extension .csv. However, when running the program to read the files, I get the message that the modules were not found. I guess I didn’t put the files in the correct directory, so I would like to know which directory should actually be used. I use Pycharm 3.7 and Anaconda3.
[
[
You have to navigate to the folder. Probably the jp notebook that you opened, was opened pointing to a folder above. Look in the top corner of the top corner at the path your file is pointing to. For example if it is opening in the ANALYZE folder its command has to be enrollments = read_csv(/venv library root/share/enrollments.csv). Note: When posting a question in the stack, do not put images of your code but the code itself. It gets bad to give a Ctrl+c+V to fix it if needed.
– Marcos Marques
Is the past path correct? I believe you have to navigate to it. Example: read_csv(.. /enrollments.csv)
– rammonzito
I thought it was something automatic, and that I should not pass the path manually. After your explanation I managed to use. Thank you very much.
– Andressa Amaral
Marcos, this is the first time I’ve used Stack to ask questions, thanks for the tip!
– Andressa Amaral