Loading...

verticapy.datasets.gen_meshgrid#

verticapy.datasets.gen_meshgrid(features_ranges: dict) vDataFrame#

Generates a dataset using regular steps.

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.

Numerical and date-like features must have an extra key in the dictionary named ‘nbins’, which corresponds to the number of bins used to compute the different categories.

Returns#

vDataFrame

Generated dataset.

Examples#

import datetime

from verticapy.datasets import gen_meshgrid

gen_meshgrid(
    features_ranges = {
        "name": {"type": str, "values": ["Badr", "Raghu", "Waqas",]},
        "age": {"type": int, "range": [20, 40]},
        "distance": {"type": float, "range": [1000, 4000]},
        "date": {"type": datetime.date, "range": ["1993-11-03", 365]},
    },
)
Abc
name
Varchar(5)
123
age
Integer
123
distance
Float(22)
📅
datetime
Timestamp(29)
1Raghu201000.01993-11-03 00:00:00
2Raghu201000.01993-11-06 15:36:00
3Raghu201000.01993-11-10 07:12:00
4Raghu201000.01993-11-13 22:48:00
5Raghu201000.01993-11-17 14:24:00
6Raghu201000.01993-11-21 06:00:00
7Raghu201000.01993-11-24 21:36:00
8Raghu201000.01993-11-28 13:12:00
9Raghu201000.01993-12-02 04:48:00
10Raghu201000.01993-12-05 20:24:00
11Raghu201000.01993-12-09 12:00:00
12Raghu201000.01993-12-13 03:36:00
13Raghu201000.01993-12-16 19:12:00
14Raghu201000.01993-12-20 10:48:00
15Raghu201000.01993-12-24 02:24:00
16Raghu201000.01993-12-27 18:00:00
17Raghu201000.01993-12-31 09:36:00
18Raghu201000.01994-01-04 01:12:00
19Raghu201000.01994-01-07 16:48:00
20Raghu201000.01994-01-11 08:24:00
21Raghu201000.01994-01-15 00:00:00
22Raghu201000.01994-01-18 15:36:00
23Raghu201000.01994-01-22 07:12:00
24Raghu201000.01994-01-25 22:48:00
25Raghu201000.01994-01-29 14:24:00
26Raghu201000.01994-02-02 06:00:00
27Raghu201000.01994-02-05 21:36:00
28Raghu201000.01994-02-09 13:12:00
29Raghu201000.01994-02-13 04:48:00
30Raghu201000.01994-02-16 20:24:00
31Raghu201000.01994-02-20 12:00:00
32Raghu201000.01994-02-24 03:36:00
33Raghu201000.01994-02-27 19:12:00
34Raghu201000.01994-03-03 10:48:00
35Raghu201000.01994-03-07 02:24:00
36Raghu201000.01994-03-10 18:00:00
37Raghu201000.01994-03-14 09:36:00
38Raghu201000.01994-03-18 01:12:00
39Raghu201000.01994-03-21 16:48:00
40Raghu201000.01994-03-25 08:24:00
41Raghu201000.01994-03-29 00:00:00
42Raghu201000.01994-04-01 15:36:00
43Raghu201000.01994-04-05 07:12:00
44Raghu201000.01994-04-08 22:48:00
45Raghu201000.01994-04-12 14:24:00
46Raghu201000.01994-04-16 06:00:00
47Raghu201000.01994-04-19 21:36:00
48Raghu201000.01994-04-23 13:12:00
49Raghu201000.01994-04-27 04:48:00
50Raghu201000.01994-04-30 20:24:00
51Raghu201000.01994-05-04 12:00:00
52Raghu201000.01994-05-08 03:36:00
53Raghu201000.01994-05-11 19:12:00
54Raghu201000.01994-05-15 10:48:00
55Raghu201000.01994-05-19 02:24:00
56Raghu201000.01994-05-22 18:00:00
57Raghu201000.01994-05-26 09:36:00
58Raghu201000.01994-05-30 01:12:00
59Raghu201000.01994-06-02 16:48:00
60Raghu201000.01994-06-06 08:24:00
61Raghu201000.01994-06-10 00:00:00
62Raghu201000.01994-06-13 15:36:00
63Raghu201000.01994-06-17 07:12:00
64Raghu201000.01994-06-20 22:48:00
65Raghu201000.01994-06-24 14:24:00
66Raghu201000.01994-06-28 06:00:00
67Raghu201000.01994-07-01 21:36:00
68Raghu201000.01994-07-05 13:12:00
69Raghu201000.01994-07-09 04:48:00
70Raghu201000.01994-07-12 20:24:00
71Raghu201000.01994-07-16 12:00:00
72Raghu201000.01994-07-20 03:36:00
73Raghu201000.01994-07-23 19:12:00
74Raghu201000.01994-07-27 10:48:00
75Raghu201000.01994-07-31 02:24:00
76Raghu201000.01994-08-03 18:00:00
77Raghu201000.01994-08-07 09:36:00
78Raghu201000.01994-08-11 01:12:00
79Raghu201000.01994-08-14 16:48:00
80Raghu201000.01994-08-18 08:24:00
81Raghu201000.01994-08-22 00:00:00
82Raghu201000.01994-08-25 15:36:00
83Raghu201000.01994-08-29 07:12:00
84Raghu201000.01994-09-01 22:48:00
85Raghu201000.01994-09-05 14:24:00
86Raghu201000.01994-09-09 06:00:00
87Raghu201000.01994-09-12 21:36:00
88Raghu201000.01994-09-16 13:12:00
89Raghu201000.01994-09-20 04:48:00
90Raghu201000.01994-09-23 20:24:00
91Raghu201000.01994-09-27 12:00:00
92Raghu201000.01994-10-01 03:36:00
93Raghu201000.01994-10-04 19:12:00
94Raghu201000.01994-10-08 10:48:00
95Raghu201000.01994-10-12 02:24:00
96Raghu201000.01994-10-15 18:00:00
97Raghu201000.01994-10-19 09:36:00
98Raghu201000.01994-10-23 01:12:00
99Raghu201000.01994-10-26 16:48:00
100Raghu201000.01994-10-30 08:24:00
Rows: 1-100 | Columns: 4