

==================== no code ====================

Create a pandas dataframe

==================== with code ====================

Create a pandas dataframe

<current-code>
df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})
</current-code>

==================== with code and other code ====================

Create a pandas dataframe

<code-from-other-cells>
import pandas as pd
import numpy as np
</code-from-other-cells>

<current-code>
df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})
</current-code>

==================== with just other code ====================

Create a pandas dataframe

<code-from-other-cells>
import pandas as pd
import numpy as np
</code-from-other-cells>

==================== with context ====================

Create a pandas dataframe

<code-from-other-cells>
import marimo as mo
</code-from-other-cells>

<current-code>
import pandas as pd
</current-code>