Search is not available for this dataset
repo_id stringlengths 12 110 | file_path stringlengths 24 164 | content stringlengths 3 89.3M | __index_level_0__ int64 0 0 |
|---|---|---|---|
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_console.py | import locale
import pytest
from pandas._config import detect_console_encoding
class MockEncoding:
"""
Used to add a side effect when accessing the 'encoding' property. If the
side effect is a str in nature, the value will be returned. Otherwise, the
side effect should be an exception that will be r... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_to_csv.py | import io
import os
import sys
from zipfile import ZipFile
from _csv import Error
import numpy as np
import pytest
import pandas as pd
from pandas import (
DataFrame,
compat,
)
import pandas._testing as tm
class TestToCSV:
def test_to_csv_with_single_column(self):
# see gh-18676, https://bugs.py... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_printing.py | # Note! This file is aimed specifically at pandas.io.formats.printing utility
# functions, not the general printing of pandas objects.
import string
import pandas._config.config as cf
from pandas.io.formats import printing
def test_adjoin():
data = [["a", "b", "c"], ["dd", "ee", "ff"], ["ggg", "hhh", "iii"]]
... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_eng_formatting.py | import numpy as np
from pandas import DataFrame
import pandas._testing as tm
import pandas.io.formats.format as fmt
class TestEngFormatter:
def test_eng_float_formatter2(self, float_frame):
df = float_frame
df.loc[5] = 0
fmt.set_eng_float_format()
repr(df)
fmt.set_eng_f... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_css.py | import pytest
from pandas.errors import CSSWarning
import pandas._testing as tm
from pandas.io.formats.css import CSSResolver
def assert_resolves(css, props, inherited=None):
resolve = CSSResolver()
actual = resolve(css, inherited=inherited)
assert props == actual
def assert_same_resolution(css1, css... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_to_html.py | from datetime import datetime
from io import StringIO
import itertools
import re
import textwrap
import numpy as np
import pytest
import pandas as pd
from pandas import (
DataFrame,
Index,
MultiIndex,
get_option,
option_context,
)
import pandas._testing as tm
import pandas.io.formats.format as fm... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_ipython_compat.py | import numpy as np
import pandas._config.config as cf
from pandas import (
DataFrame,
MultiIndex,
)
class TestTableSchemaRepr:
def test_publishes(self, ip):
ipython = ip.instance(config=ip.config)
df = DataFrame({"A": [1, 2]})
objects = [df["A"], df] # dataframe / series
... | 0 |
public_repos/pandas/pandas/tests/io | public_repos/pandas/pandas/tests/io/formats/test_to_latex.py | import codecs
from datetime import datetime
from textwrap import dedent
import pytest
import pandas as pd
from pandas import (
DataFrame,
Series,
)
import pandas._testing as tm
pytest.importorskip("jinja2")
def _dedent(string):
"""Dedent without new line in the beginning.
Built-in textwrap.dedent ... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh22579_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr>
<th colspan="2" halign="left">a</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th>c</th>
<th>d</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>10</td>
<td>10</td... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_multi_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th></th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
<th colspan="2" halign="left">c</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_multi_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th></th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
<th colspan="2" halign="left">c</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/truncate.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>18</th>
<th>19</th>
</tr>
</thead>
<tbody>
<tr>
<th>2001-01-01</th>
<td>NaN</td>
<td>NaN</td>
<td>...</td>
<td... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_standard_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
<tr>
<th>index.name</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_4.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">foo</th>
<th>car</th>
<td>1</td>
<td>1.2</td>
<td>one</... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/justify.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: {justify};">
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>6</td>
<td>1</td>
<td>223442</td>
</tr>
<tr>
<th>1</th>
<td>30000</... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_standard_columns_none.html | <table border="1" class="dataframe">
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</td>
<td>7</td>
</tr>
<tr>
<th>1</th>
<td>8</td>
<td>9</td>
<td>...</td>
<td>14</td>
<td>15</td>
</tr>
<tr>
<th>...</t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_standard_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/html_repr_max_rows_12_min_rows_None.html | <div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_none_columns_none.html | <table border="1" class="dataframe">
<tbody>
<tr>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/escaped.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>co<l1</th>
<th>co>l2</th>
</tr>
</thead>
<tbody>
<tr>
<th>str<ing1 &amp;</th>
<td><type 'str'></td>
<td><type 'str'></td>
</tr>
<tr>
<th... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/render_links_true.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>foo</th>
<th>bar</th>
<th>None</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td><a href="https://pandas.pydata.org/?q1=a&q2=b" target="_blank">https://pandas.p... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh22783_named_columns_index.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>3</th>
<th>4</th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<td>1.764052</td>
<td>0.400157</td>
<td>...</td>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_3.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<th>idx</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>foo</th>
<td>1</td>
<t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_multi_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>columns.name</th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th>index.name.0</th>
<th>index.name.1</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th ro... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh21625_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>x</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0.200</td>
</tr>
</tbody>
</table> | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_none_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</td>
<td>7</td>
</tr>
<tr>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/truncate_multi_index_sparse_off.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th>bar</th>
<th>bar</th>
<th>baz</th>
<th>...</th>
<th>foo</th>
<th>qux</th>
<th>qux</th>
</tr>
<tr>
<th></th>
<th></th>
<th>one</th>
<th>two</th>
<th>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/truncate_multi_index.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th colspan="2" halign="left">bar</th>
<th>baz</th>
<th>...</th>
<th>foo</th>
<th colspan="2" halign="left">qux</th>
</tr>
<tr>
<th></th>
<th></th>
<th>one</th>
<th>two</... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_standard_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>columns.name.0</th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th>columns.name.1</th>
<th>b</th>
<th>c</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_multi_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th></th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th rowspan="2... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_standard_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>foo</th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th colspan="2" halign="left">c</th>
<th>...</th>
<th colspan="2" halign="left">d</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_standard_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>1</th>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</tab... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_standard_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th></th>
<th>b</th>
<th>c</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>1</th>
<td... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh12031_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>6,0</td>
</tr>
<tr>
<th>1</th>
<td>3,1</td>
</tr>
<tr>
<th>2</th>
<td>2,2</td>
</tr>
</tbod... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh14998_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_standard_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th>index.name</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_standard_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
<tr>
<th>index.name</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_multi_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th>columns.name.0</th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th></th>
<th>columns.name.1</th>
<th>b</th>
<th>c</th>
</tr>
<tr>
<th>index.name.0</th>
<th>index.name.1</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_none_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>columns.name.0</th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th>columns.name.1</th>
<th>b</th>
<th>c</th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<td>0</td>
<td>0</td>
</tr>
<tr>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_standard_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</td>
<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/truncate_formatter.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>A</th>
<th>...</th>
<th>D</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>1_mod</td>
<td>...</td>
<td>4</td>
</tr>
<tr>
<th>1</th>
<td>5_mod</t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_standard_columns_none.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>index.name</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>1</th>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_none_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th>b</th>
<th>c</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_standard_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>columns.name.0</th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th>columns.name.1</th>
<th>b</th>
<th>c</th>
</tr>
<tr>
<th>index.name</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/multiindex_sparsify_1.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th>foo</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">0</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_standard_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th>index.name</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh14882_expected_output_1.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th></th>
<th>n</th>
</tr>
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="21" valign="top">100</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_multi_columns_none.html | <table border="1" class="dataframe">
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th rowspan="2" valign="top">c</th>
<th>e</th>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</td>
<td>7</td>
</tr>
<tr>
<th>f</th>
<td>8</td>
<td>9</td>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/multiindex_sparsify_false_multi_sparse_2.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th>foo</th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th></th>
<th></th>
<th>0</th>
<th>0</th>
</tr>
<tr>
<th>foo</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_none_columns_none.html | <table border="1" class="dataframe">
<tbody>
<tr>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</td>
<td>7</td>
</tr>
<tr>
<td>8</td>
<td>9</td>
<td>...</td>
<td>14</td>
<td>15</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td>..... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/multiindex_1.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>CL0</th>
<th colspan="2" halign="left">0</th>
<th colspan="2" halign="left">1</th>
</tr>
<tr>
<th>CL1</th>
<th>0</th>
<th>1</th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/multiindex_2.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th>0</th>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
<tr>
<th></th>
<th>0</th>
<th>1</th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>a</td>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/html_repr_max_rows_10_min_rows_12.html | <div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_none_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>foo</th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th colspan="2" halign="left">c</th>
<th>...</th>
<th colspan="2" halign="left">d</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_standard_columns_none.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>index.name</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</td>
<td>7</td>
</tr>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/html_repr_max_rows_None_min_rows_12.html | <div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_none_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<td>0</td>
<td>1</td>
<td>...</td>
<td>6</... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_2.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>1.2</td>
<td>one</td>
</tr>
<tr>
<td>2</td>
<td>3.4</td>
<td>two</td>
</tr>
<tr... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_multi_columns_none.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>index.name.0</th>
<th>index.name.1</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th>b</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>c</th>
<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_1.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr>
<th>foo</th>
<td>1</td>
<td>1.2</td>
<td>one</td>
</tr>
<tr>
<th>bar</th>
<td>2</td>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/html_repr_min_rows_default_no_truncation.html | <div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh47103_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>a</th>
<th>b</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>1</td>
<td>[1, 2, 3]</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_multi_columns_none.html | <table border="1" class="dataframe">
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th>b</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>c</th>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_multi_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th></th>
<th></th>
<th>b</th>
<th>c</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th>b</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh22783_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
<th>...</th>
<th>3</th>
<th>4</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.764052</td>
<td>0.400157</td>
<td>...</td>
<td>2.240893</td>
<td>1.867558<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_multi_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>columns.name</th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th>b</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_standard_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th colspan="2" halign="left">c</th>
<th>...</th>
<th colspan="2" halign="left">d</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/multiindex_sparsify_false_multi_sparse_1.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th>foo</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<th>0</th>
<td>0... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_none_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th></th>
<td>0</td>
<td>0</td>
</tr>
</tb... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_none_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th colspan="2" halign="left">c</th>
<th>...</th>
<th colspan="2" halign="left">d</th>
</tr>
<tr>
<th>e</th>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_standard_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>columns.name</th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>1</th>
<td>0</td>
<td>0</td>
</tr>
</... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_multi_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th>foo</th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
<th colspan="2" halign="left">c</th... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_multi_columns_none.html | <table border="1" class="dataframe">
<thead>
<tr>
<th>foo</th>
<th></th>
<th>baz</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th rowspan="2" valign="top">c</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/various_dtypes_formatted.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>i</th>
<th>f</th>
<th>I</th>
<th>s</th>
<th>b</th>
<th>c</th>
<th>o</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>formatted</td>
<td>formatted<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_standard_columns_none.html | <table border="1" class="dataframe">
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>1</th>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_standard_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th></th>
<th>b</th>
<th>c</th>
</tr>
<tr>
<th>index.name</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh6131_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th colspan="3" halign="left">d</th>
</tr>
<tr>
<th></th>
<th>a</th>
<th>aa</th>
<th>...</th>
<th>ac</th>
</tr>
<tr>
<th>b</th>
<th>c</th>
<th></th>
<th></t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh14882_expected_output_2.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th></th>
<th>n</th>
</tr>
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="21" valign="top">100</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/html_repr_max_rows_10_min_rows_4.html | <div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_multi_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th>foo</th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
<th colspan="2" halign="left">c</th... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_multi_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th></th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
<tr>
<th>foo</th>
<th></th>
<th>baz</th>
<th></th>
<th></t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/html_repr_min_rows_default_truncated.html | <div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/unicode_1.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>Ο</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0.0</td>
</tr>
<tr>
<th>1</th>
<td>1.0</td>
</tr>
<tr>
<th>2</th>
<td>2.0</td>
</tr>
<tr>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_unnamed_multi_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>columns.name</th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_multi_columns_named_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>columns.name</th>
<th>0</th>
<th>1</th>
<th>...</th>
<th>6</th>
<th>7</th>
</tr>
<tr>
<th>foo</th>
<th></th>
<th>baz</th>
<th></th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_none_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_formatter.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>foo</th>
<th>None</th>
</tr>
</thead>
<tbody>
<tr>
<th>a</th>
<td>0</td>
<td>1</td>
</tr>
<tr>
<th>b</th>
<td>2</td>
<td>3</td>
</tr>
<tr>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/with_classes.html | <table border="1" class="dataframe sortable draggable">
<thead>
<tr style="text-align: right;">
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh15019_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.764052</td>
<td>0.400157</td>
</tr>
<tr>
<td>0.978738</td>
<td>2.240893</td>
</tr>
<tr>
<td>...</td>
<td>... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/datetime64_hourformatter.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>hod</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>10:10</td>
</tr>
<tr>
<th>1</th>
<td>12:12</td>
</tr>
</tbody>
</table>
| 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_5.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<th>idx1</th>
<th>idx2</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_multi_columns_named_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th>columns.name.0</th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th></th>
<th>columns.name.1</th>
<th>b</th>
<th>c</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_multi_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th></th>
<th colspan="2" halign="left">a</th>
</tr>
<tr>
<th></th>
<th></th>
<th>b</th>
<th>c</th>
</tr>
<tr>
<th>index.name.0</th>
<th>index.name.1</th>
<th></th>
<th></t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/escape_disabled.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>co<l1</th>
<th>co>l2</th>
</tr>
</thead>
<tbody>
<tr>
<th>str<ing1 &</th>
<td><b>bold</b></td>
<td><b>bold</b></td>
</tr>
<tr>
<th>stri>ng2 &</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/trunc_df_index_named_standard_columns_unnamed_multi.html | <table border="1" class="dataframe">
<thead>
<tr>
<th></th>
<th colspan="2" halign="left">a</th>
<th>...</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th></th>
<th colspan="2" halign="left">c</th>
<th>...</th>
<th colspan="2" halign="left">d</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh8452_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr>
<th colspan="2" halign="left">a</th>
<th colspan="2" halign="left">b</th>
</tr>
<tr>
<th>c</th>
<th>d</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>3</td>
<td>5</td>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_unnamed_multi_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" valign="top">a</th>
<th>b</th>
<td>0</td>
<td>0</td>
</tr>
<tr>
<th>c</th>
... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/gh22270_expected_output.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>x</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>100</td>
</tr>
</tbody>
</table> | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/render_links_false.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>foo</th>
<th>bar</th>
<th>None</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>https://pandas.pydata.org/?q1=a&q2=b</td>
<td>pydata.org</td>
</t... | 0 |
public_repos/pandas/pandas/tests/io/formats/data | public_repos/pandas/pandas/tests/io/formats/data/html/index_named_multi_columns_unnamed_standard.html | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th></th>
<th>0</th>
<th>1</th>
</tr>
<tr>
<th>index.name.0</th>
<th>index.name.1</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2" va... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.