> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vizly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Python and R Support

> Vizly makes it easy to perform advanced data analysis using Python and R, two of the most powerful tools for data professionals. 

## Key Features

* **Seamless Integration**: Write Python and R code directly within Vizly to process and analyze your data.
* **Real-Time Outputs**: Generate insights, visualizations, and computations with instant feedback.
* **Advanced Libraries**: Leverage libraries like Pandas, Matplotlib, ggplot2, and more for your analysis.
* **Customizable Workflows**: Combine Python and R scripts with AI-powered tools to create robust workflows.

## How to Use Python and R in Vizly

1. **Upload Your Data**: Start by uploading a CSV or connecting to a database.
2. **Switch to Python/R Mode**: Select the Python or R option in the analysis editor.
3. **Write Your Code**: Use the editor to input your script.
4. **Generate Insights**: Run your code to produce results instantly.

## Example

Here’s a simple Python example:

```python theme={null}
import pandas as pd

# Load your uploaded data
df = pd.read_csv("uploaded_file.csv")

# Perform basic analysis
summary = df.describe()

# Display results
print(summary)
```
