All Report¶

1. Import Jupyter Module¶

  • After making changes to the DataFrameMaker
In [1]:
# Import Jupyter Module
import import_ipynb

import pandas as pd
import os
import numpy as np

# Plotly
import plotly.express as px
import plotly.graph_objs as go
from plotly.subplots import make_subplots
import plotly.io as pio


import jupymodule.DataFrameMaker as JupyData
import jupymodule.Visualiser as JupyVisualiser
importing Jupyter notebook from /Users/minjoo/Development/PythonProjects/pydata/exploration/jupymodule/DataFrameMaker.ipynb
importing Jupyter notebook from /Users/minjoo/Development/PythonProjects/pydata/exploration/jupymodule/Visualiser.ipynb
In [2]:
ev_data = JupyData.df

📈 Distance to the charging station (km)¶

In [3]:
JupyVisualiser.distace_histogram(ev_data, "Distance to the charging station (km)")
There are 1065 missing values
<string>:6: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
<string>:7: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

Charging facility types¶

In [4]:
JupyVisualiser.facility_pie_chart(ev_data, "Charging Facility Type")