Quiz 2

Data Visualization Lab

68 words
1 min read
Python Week 1: the first filter for runtime behavior
Visual companion
Python
Type and operator map

Python Week 1: the first filter for runtime behavior

View
Revision summary

What this note is really saying

Short form

# Data Visualization Lab [Join Discord](https://discord.gg/gE2m4Qrdqv) [Previous**RAG & Agents**](/notes/04-degree-electives-bsda4001-ds-ai-lab-week07-07-rag-agents)[Next**Time Series**](/notes/04-degree-electives-bsda4001-ds-ai-lab-week09-09-time-series)

Data Visualization Lab

python
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
import numpy as np
# Sample data
df = pd.DataFrame(np.random.randn(100, 4), columns=['A', 'B', 'C', 'D'])
# Pairplot
sns.pairplot(df)
plt.show()
# Correlation heatmap
sns.heatmap(df.corr(), annot=True, cmap='coolwarm')
plt.title('Correlation Matrix')
plt.show()
# Interactive with plotly
import plotly.express as px
fig = px.scatter(df, x='A', y='B', size='C', color='D')
fig.show()
Document outline

Keep your place and jump directly to a heading.

Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.