-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41d26a4
commit 8650549
Showing
7 changed files
with
69 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Traceback (most recent call last): | ||
File "/home/brittny/.local/lib/python3.10/site-packages/jupyter_cache/executors/utils.py", line 58, in single_nb_execution | ||
executenb( | ||
File "/home/brittny/.local/lib/python3.10/site-packages/nbclient/client.py", line 1305, in execute | ||
return NotebookClient(nb=nb, resources=resources, km=km, **kwargs).execute() | ||
File "/home/brittny/.local/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 173, in wrapped | ||
return loop.run_until_complete(inner) | ||
File "/usr/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete | ||
return future.result() | ||
File "/home/brittny/.local/lib/python3.10/site-packages/nbclient/client.py", line 705, in async_execute | ||
await self.async_execute_cell( | ||
File "/home/brittny/.local/lib/python3.10/site-packages/nbclient/client.py", line 1058, in async_execute_cell | ||
await self._check_raise_for_error(cell, cell_index, exec_reply) | ||
File "/home/brittny/.local/lib/python3.10/site-packages/nbclient/client.py", line 914, in _check_raise_for_error | ||
raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content) | ||
nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell: | ||
------------------ | ||
from pandas.plotting import parallel_coordinates | ||
df = pd.read_csv('cleaned.csv') | ||
plt.figure() | ||
parallel_coordinates(data, "geo") | ||
------------------ | ||
|
||
|
||
[0;31m---------------------------------------------------------------------------[0m | ||
[0;31mNameError[0m Traceback (most recent call last) | ||
Cell [0;32mIn[2], line 4[0m | ||
[1;32m 2[0m df [38;5;241m=[39m pd[38;5;241m.[39mread_csv([38;5;124m'[39m[38;5;124mcleaned.csv[39m[38;5;124m'[39m) | ||
[1;32m 3[0m plt[38;5;241m.[39mfigure() | ||
[0;32m----> 4[0m parallel_coordinates([43mdata[49m, [38;5;124m"[39m[38;5;124mgeo[39m[38;5;124m"[39m) | ||
|
||
[0;31mNameError[0m: name 'data' is not defined | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.