Add test data for first practice

main
Aleksey Zubakov 2 years ago
parent bf6be1ce4e
commit e1bcb311c7
  1. 18186
      data/clean_rice_class.csv
  2. 18185
      data/clean_without_header.csv
  3. 19
      data/scheme.sql

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -0,0 +1,19 @@
-- BE CAREFUL THIS FILE IS AUTOGENERATED
-- Table: public.rice_data
-- DROP TABLE IF EXISTS public.rice_data;
CREATE TABLE IF NOT EXISTS public.rice_data
(
id integer NOT NULL,
"Area" bigint,
"Roundness" numeric,
"AspectRation" numeric,
"Class" integer,
CONSTRAINT rice_data_pkey PRIMARY KEY (id)
)
TABLESPACE pg_default;
ALTER TABLE IF EXISTS public.rice_data
OWNER to pgadmin;
Loading…
Cancel
Save