In [ ]:
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
import warnings
warnings.filterwarnings('ignore')
In [ ]:
sns.palplot(sns.color_palette())
In [ ]:
import networkx as nx
In [ ]:
G = nx.erdos_renyi_graph(30,0.3)
In [ ]:
nx.draw_circular(G)
In [ ]:
import graphviz as gv
In [ ]:
g1 = gv.Graph(format='svg')
g1.node('A')
g1.node('B')
g1.edge('A', 'B')
print(g1.source)
In [ ]:
import cartopy.crs as ccrs
import matplotlib.pyplot as plt
ax = plt.axes(projection=ccrs.PlateCarree())
ax.coastlines();
In [ ]:
import pandas as pd
pd.read_excel('../data/scimagojr-3.xlsx').head()
In [ ]:
print("Looks good!")