Python Forum
Merging CSV Files in Jupyter - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Merging CSV Files in Jupyter (/thread-7365.html)



Merging CSV Files in Jupyter - RJ117 - Jan-07-2018

Whenever I attempt to merge CSV files I receive the following:



df = pd.read_csv('C:/Users/RJ/Documents/FGB/JulSept.csv', 'C:/Users/RJ/Documents/FGB/OctDec.csv')

[red]C:\Users\RJ\Anaconda3.1\lib\site-packages\ipykernel_launcher.py:1: ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support regex separators (separators > 1 char and different from '\s+' are interpreted as regex); you can avoid this warning by specifying engine='python'.
"""Entry point for launching an IPython kernel.

The goal is to use two different datasets so I can compare them.