From fa7adf58188160dd1e8d56e6475be8a995ef9185 Mon Sep 17 00:00:00 2001 From: Richard Iannone Date: Fri, 24 Jan 2025 13:13:09 -0500 Subject: [PATCH] Update dtype of year col in gtcars dataset --- great_tables/data/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/great_tables/data/__init__.py b/great_tables/data/__init__.py index e96f18112..9fd74688a 100644 --- a/great_tables/data/__init__.py +++ b/great_tables/data/__init__.py @@ -32,7 +32,7 @@ _gtcars_dtype = { "mfr": "object", "model": "object", - "year": "float64", + "year": "int64", "trim": "object", "bdy_style": "object", "hp": "float64",