You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Long: `A longer description that spans multiple lines and likely contains examples
18
-
and usage of using your command. For example:
16
+
Short: "Runs data quality checks defined in a configuration file against a datasource",
17
+
Long: `The 'check' command executes a series of data quality tests or checks as defined in a specified configuration file against a target dataset. This command reads the configuration file,
18
+
which outlines the rules and constraints that the data within the dataset should adhere to. For each defined check, the command analyzes the dataset and reports any violations or inconsistencies found.
19
19
20
-
Cobra is a CLI library for Go that empowers applications.
21
-
This application is a tool to generate the needed files
22
-
to quickly create a Cobra application.`,
20
+
By automating these checks, you can proactively identify and address data quality issues, ensuring that your datasets meet the required standards for analysis and decision-making.
Long: `A longer description that spans multiple lines and likely contains examples
19
-
and usage of using your command. For example:
17
+
Short: "Connects to a data source and imports all available tables as datasets",
18
+
Long: `The 'import' command establishes a connection to the specified data source using the provided connection parameters. It retrieves a list of all available tables within the data source and transforms them into datasets within dbq.
20
19
21
-
Cobra is a CLI library for Go that empowers applications.
22
-
This application is a tool to generate the needed files
23
-
to quickly create a Cobra application.`,
20
+
This command is useful for quickly onboarding data from external systems, allowing you to easily access and work with already existing data.
Long: `A longer description that spans multiple lines and likely contains examples
18
-
and usage of using your command. For example:
16
+
Short: "Collects dataset's information and generates column statistics",
17
+
Long: `The 'profile' command connects to the specified data source and analyzes a given dataset. It gathers essential information about the table, such as the total number of rows.
18
+
Additionally, for each column within the table, it calculates and reports various statistical metrics. These metrics may include the minimum value, maximum value, the count of null or missing values, the data type,
19
+
and other relevant statistics depending on the data type and the capabilities of the underlying data source.
19
20
20
-
Cobra is a CLI library for Go that empowers applications.
21
-
This application is a tool to generate the needed files
22
-
to quickly create a Cobra application.`,
21
+
This command is useful for understanding the characteristics and quality of your data. It provides a quick overview of the data distribution, identifies potential data quality issues like missing values,
22
+
and helps in making better decisions about data processing and analysis.
0 commit comments