Loading...

verticapy.datasets.gen_dataset

verticapy.datasets.gen_dataset(features_ranges: dict, nrows: int = 1000) vDataFrame

Generates a dataset using the input parameters.

Parameters

features_ranges: dict

Dictionary including the features types and ranges.

  • For str:

    The subdictionary must include two keys: “type” must be set to ‘str’ and ‘value’ must include the feature categories.

  • For int:

    The subdictionary must include two keys: “type” must be set to ‘int’ and ‘range’ must include two integers that represent the lower and the upper bounds.

  • For float:

    The subdictionary must include two keys: “type” must be set to’float’ and ‘range’ must include two floats that represent the lower and the upper bounds.

  • For date:

    The subdictionary must include two keys: “type” must be set to ‘date’ and ‘range’ must include the start date and the number of days after.

  • For datetime:

    The subdictionary must include two keys: “type” must be set to ‘date’ and ‘range’ must include the start date and the number of days after.

nrows: int, optional

The maximum number of rows in the dataset.

Returns

vDataFrame

Generated dataset.

Examples

import datetime

from verticapy.datasets import gen_dataset

gen_dataset(
    features_ranges = {
        "name": {"type": str, "values": ["Badr", "Badr", "Raghu", "Waqas",]},
        "age": {"type": int, "range": [20, 40]},
        "distance": {"type": float, "range": [1000, 4000]},
        "date": {"type": datetime.date, "range": ["1993-11-03", 365]},
        "datetime": {"type": datetime.datetime, "range": ["1993-11-03", 365]},
    },
)
Abc
name
Varchar(5)
123
age
Integer
123
distance
Float(22)
📅
date
Date
📅
datetime
Timestamp(29)
1Waqas372895.077285123991994-06-241994-04-03 19:56:30.625470
2Badr201376.041339710351994-08-091994-09-27 07:38:54.951675
3Badr222589.45953636431994-04-201994-08-07 06:57:40.675335
4Badr353006.047471426431993-12-011994-01-09 04:17:07.285825
5Badr351717.080407775941993-12-241994-01-11 12:53:15.841507
6Raghu312126.600012416021994-01-311994-06-15 21:54:08.875096
7Badr291273.941579740491994-08-281994-08-28 17:24:45.653391
8Waqas323956.774743273851994-08-071994-05-26 21:58:17.609413
9Raghu201532.904092222451994-03-151994-04-11 04:00:22.632513
10Waqas271207.891352241861994-04-291994-01-17 15:31:24.944715
11Badr321618.867767974731994-07-251994-06-27 18:05:45.007523
12Badr283376.324270386251994-04-131994-07-31 02:19:53.928923
13Badr271080.30955260621994-02-151993-11-13 17:30:25.532920
14Waqas213991.325411945581994-05-221994-08-17 18:28:44.231062
15Waqas342481.048829155041994-10-231993-12-06 01:32:23.148107
16Waqas393219.214826589451994-04-141994-07-13 02:04:55.057073
17Badr402876.357364002621994-09-091994-08-02 20:02:33.154866
18Waqas392886.307619744911994-03-061994-09-10 04:40:19.287448
19Waqas231312.368266750131994-10-291994-09-07 04:26:27.568221
20Waqas303096.71236877331994-08-161993-11-16 08:24:39.585651
21Waqas383219.279219862071993-12-301994-08-01 12:54:46.713535
22Raghu393895.101051079111994-06-271994-02-27 01:57:26.923234
23Badr331741.731607355181994-05-011994-10-31 10:56:08.983564
24Badr222281.983305234461994-08-011994-09-22 04:48:19.877337
25Waqas232947.578758466991993-12-101994-10-21 12:00:24.253137
26Badr371853.755636373531994-04-281994-10-26 08:21:51.929168
27Raghu211681.126208277421994-03-311993-12-26 00:28:48.792112
28Raghu233119.735577842221994-06-021994-03-02 05:12:53.095438
29Badr323380.059181479741994-10-301994-10-12 03:46:44.323755
30Badr253792.684118496251993-11-051994-07-22 18:45:24.777053
31Raghu323723.410047590731994-10-121994-10-01 07:00:42.448740
32Badr281192.880215821791994-06-301994-10-01 02:00:05.760614
33Waqas261511.494650272651994-01-151994-05-14 22:34:08.794024
34Raghu372048.357840860261994-03-271994-08-31 16:25:01.792364
35Badr282809.703904204071994-07-171994-03-30 00:32:18.666773
36Raghu372542.053979355841994-06-151994-06-23 12:09:31.643852
37Badr333335.781430825591994-06-061994-01-08 21:33:59.532993
38Raghu381270.635848632081994-04-101994-10-11 17:34:37.526886
39Waqas222099.785030120981994-04-281994-03-21 20:22:31.980972
40Raghu293783.039367059251994-07-151994-10-24 14:04:50.360237
41Badr323290.010727010671994-05-061994-05-12 16:20:28.094009
42Badr401559.03397616931994-02-061994-07-21 07:03:27.843377
43Raghu282510.312332306061994-01-011994-01-01 16:57:40.485964
44Badr392142.512300517411994-06-191994-01-02 20:13:53.609171
45Waqas262865.860508987681994-02-281994-06-29 21:09:52.380975
46Badr212354.918996570631994-04-231993-11-09 15:07:21.366526
47Raghu373460.542243672531994-02-071994-10-09 06:58:17.840935
48Waqas212819.331036880611994-04-151993-12-02 20:20:17.802943
49Badr241905.883051222191994-04-071994-02-01 08:24:49.043214
50Badr302893.547749845311994-08-121994-08-14 10:05:07.336984
51Badr291079.113288782541993-12-061994-10-14 19:06:56.303462
52Raghu213685.25540642441994-08-081994-03-26 07:52:17.743337
53Badr252598.303658189251993-11-221994-06-03 22:19:16.749777
54Badr232173.545337282121994-07-301994-06-04 22:06:47.658065
55Badr251218.198413727811994-10-131994-01-21 16:08:02.012882
56Badr293870.546290883791993-12-061993-11-16 18:22:26.988771
57Waqas402239.905918715521994-03-301993-11-14 17:38:20.568645
58Raghu222635.432379553091994-05-071994-10-20 18:04:26.522433
59Waqas293847.287569195031994-07-311994-01-28 23:22:45.421857
60Waqas351269.633910153061994-01-231994-10-20 14:35:45.056453
61Waqas383574.758835369721994-05-171994-09-19 13:03:54.102660
62Badr283449.376164237041994-08-151994-07-17 19:34:56.176949
63Badr211486.775711644441994-05-201994-04-30 06:25:09.768476
64Badr242938.647350296381994-07-151994-09-24 14:47:09.300197
65Badr342774.616982322191994-09-121993-12-25 17:03:09.056240
66Raghu241679.030433529991993-11-051994-09-12 06:49:12.844535
67Raghu221745.436891214921994-09-011994-02-24 00:04:21.213268
68Waqas293070.364366751161993-12-091994-08-30 13:22:40.873454
69Badr383451.659060781821994-07-191994-10-29 23:16:29.127901
70Badr281561.689625028521994-03-221994-09-18 23:21:14.078900
71Badr402519.304336747151994-08-201994-01-09 04:14:06.725247
72Badr271177.099077962341994-04-051993-11-09 16:07:07.870408
73Badr201855.322097428141994-02-081994-01-08 08:46:25.608581
74Raghu332451.763225020841994-08-081994-08-24 08:27:03.395050
75Badr273257.458292180671994-09-211993-11-06 08:19:50.560061
76Badr351620.641025248911994-03-111993-12-17 03:31:14.299208
77Raghu371079.3656706811994-09-111994-10-10 09:09:47.711216
78Badr282047.149938764051994-05-241994-05-19 18:28:29.376284
79Raghu313425.252010347321994-10-251994-09-04 21:56:31.153825
80Badr373251.539374934511994-10-071994-01-21 20:22:57.977794
81Badr273987.178334034981994-01-161994-03-04 17:21:26.771087
82Waqas201851.210178807381994-03-261994-03-16 21:05:38.792932
83Badr371357.152194250381994-09-071994-05-29 13:43:07.049121
84Waqas231740.030145272611994-04-231994-08-13 03:11:14.671255
85Waqas373947.398629738021993-11-161993-11-22 17:25:35.655112
86Waqas323219.299481716011994-05-241994-04-08 17:40:38.192119
87Waqas302058.038864983251994-07-291994-07-20 07:15:06.499133
88Waqas221836.615646723661994-04-171994-02-06 18:57:38.614372
89Raghu341317.934289807451994-08-181994-08-01 20:36:14.247424
90Waqas372900.432812748481994-01-201994-09-09 09:42:05.551258
91Raghu323854.191664606331994-01-101994-02-27 13:16:26.767235
92Raghu351015.474481740971993-11-291994-04-13 06:53:17.920594
93Raghu232655.858380487191994-07-081994-04-05 09:22:14.692640
94Badr343294.951469171791993-12-281994-05-18 07:44:27.758299
95Badr362363.00445697271994-02-121993-12-22 06:31:48.422600
96Badr271497.238112846391994-09-061994-06-03 19:08:14.615107
97Raghu353863.907404476781993-12-101994-03-25 14:44:04.780840
98Waqas371201.025880640371994-07-171994-06-12 12:41:27.913301
99Waqas223060.093210544441994-07-261994-05-12 03:03:25.122364
100Raghu371223.106079502031994-10-181994-05-07 13:42:46.711210
Rows: 1-100 | Columns: 5