New Release
Experience Gemini 3
The next generation of multimodal AI. Unmatched performance in reasoning, coding, and creative writing.
* Login required to access the full experience.
Lightning Fast
Experience near-instant responses with the new Flash architecture. Optimized for speed without compromising quality.
Advanced Coding
Gemini 3 excels at understanding and generating complex code across multiple languages and frameworks.
Creative Writing
Unlock new levels of creativity. From storytelling to marketing copy, Gemini 3 adapts to your unique style.
Gemini 3 Pro
U
Help me write a Python script to analyze CSV data using pandas.
Certainly! Here's a Python script using pandas to analyze your CSV data:
import pandas as pd
# Load the dataset
df = pd.read_csv('data.csv')
# Basic analysis
print(df.describe())
print(df.head())