Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 81,238
» Latest member: LonAnton0
» Forum threads: 389
» Forum posts: 395

Full Statistics

Latest Threads
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,011
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,182
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,225
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,175
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,232
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,250
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,229
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,203
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,084

 
  How to get current date and time in dashboard designer?
Posted by: archana - 12-23-2022, 11:09 AM - Forum: BDB Designer Q & A - No Replies

var today = new Date();

var today1=today.getHours()+':'+today.getMinutes()+':'+today.getSeconds();

Print this item

  How to add leaflet CSS file in custom map ?
Posted by: shreekantgosavi - 12-23-2022, 11:08 AM - Forum: BDB Designer Q & A - No Replies

Drag custom chart component.
In the source path section>> CSS
Paste below link in path
https://unpkg.com/leaflet@1.9.3/dist/leaflet.css

Print this item

  how to interpret confusion matrix in classification problems
Posted by: manjunath - 12-23-2022, 11:08 AM - Forum: DS- Lab Q&A - No Replies

A confusion matrix is a table that is used to evaluate the performance of a classification model. It is often used to visualize the results of a classification model and to understand how well the model is performing.
 
To interpret a confusion matrix in a classification problem, you should consider the following:
 

  • True positives (TP): These are the cases where the model correctly predicted the positive class. For example, in a binary classification problem where the positive class is "disease," the true positives would be the cases where the model correctly predicted "disease."
  • True negatives (TN): These are the cases where the model correctly predicted the negative class. For example, in a binary classification problem where the negative class is "no disease," the true negatives would be the cases where the model correctly predicted "no disease."
     
  • False positives (FP): These are the cases where the model incorrectly predicted the positive class. For example, in a binary classification problem where the positive class is "disease," the false positives would be the cases where the model incorrectly predicted "disease."
  • False negatives (FN): These are the cases where the model incorrectly predicted the negative class. For example, in a binary classification problem where the negative class is "no disease," the false negatives would be the cases where the model incorrectly predicted "no disease."
To interpret the confusion matrix, you can use the values in the matrix to calculate various performance metrics, such as precision, recall, and accuracy. You can also compare the values in the matrix to understand the trade-offs between different types of errors, and to identify areas where the model may be performing poorly.
 
Overall, to interpret a confusion matrix in a classification problem, you should consider the true positives, true negatives, false positives, and false negatives, and use these values to evaluate the performance of the model and to identify areas for improvement.

Print this item

  What is Data Sandbox and where can it be used?
Posted by: gnanashri - 12-23-2022, 11:08 AM - Forum: BDB Platform Q & A - No Replies

You can upload files from your computer, such as a csv file, to Data Sandbox, and then use those files for analysis in your Data Science lab. 

Print this item

  Search on Multiple data store
Posted by: manirathinavelu.m - 12-23-2022, 11:07 AM - Forum: BDB Search Q & A - No Replies

i am unable to get results from multiple data store when using search, please provide any solution for the same.

Print this item

  what is the use of a slicer?
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:07 AM - Forum: BDB Business Story Q & A - No Replies

Slicer helps in displaying layers in a large volumed of  based on the selected dimension.
The slices get displayed in the created view based on the second-dimension value via a Mixed chart (by default) where the users can choose the styles accordingly to meet the requirement.

Print this item

  Provide data to chart components from the dashboard
Posted by: harshabalan - 12-23-2022, 11:06 AM - Forum: BDB Designer Q & A - No Replies

Can we provide  data to the chart components from the designer without using a dataset service ?


(12-23-2022, 11:06 AM)harshabalan Wrote: Can we provide  data to the chart components from the designer without using a dataset service ?

Ans: Yes . we can provide the data to charts as a json structure  ; 
In the below example we are getting dynamic informations from the dashboard which we are formulatiing into a json structure and providing the same to a datagrid.

var f1 = sdk.getValue( 'label744');   //// value : "Document: Revenue"
var f2 = sdk.getValue( 'label748');   /// value : "Applied filter : Last 7 Day"
var f3 = sdk.getValue( 'label756');  /// value : "Section : Quarterly report"
var info  = [f1,f2,f3];
var info_val =[];
 for (var i = 0; i <= info.length; i++)
{
info_val.push({"info":info[i]});   //////
}
var ch = sdk.getWidget('datagrid770' );
ch.setDataProvider(info_val);
ch.draw();

Print this item

  Voice search in BDB Platform
Posted by: manirathinavelu.m - 12-23-2022, 11:06 AM - Forum: BDB Search Q & A - No Replies

Can I do a voice search on the BDB platform? how can I do it?

Print this item

  What is true or false in update global variable?
Posted by: jeevitha - 12-23-2022, 11:06 AM - Forum: BDB Designer Q & A - No Replies

 When given true It enters  inside the component and executes the script ,Else only executes the script.

Print this item

  How to format the text box to get the input value and fetch in the script?
Posted by: archana - 12-23-2022, 11:06 AM - Forum: BDB Designer Q & A - No Replies

In text box component, under properties in display content need to add this script:

<style>input:focus {outline:none;}::placeholder</style><input id="Target_filter_search01" autocomplete="off" placeholder="Enter Your Name"
style = "width: 100%; height : 100%; padding :0px 0px 0px 10px;border : 0px; border-radius: 0px; background : #f2f0f0;"/> 
<style> input:focus { outline:none; } </style> <script>

To get the value, in scripting side:

var a = $('#Target_filter_search01').val();

Print this item