• Eli Bach
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 2
    Replies

Hi - I am trying to change the values in a toggle by binding their values to a selection in a second toggle. I am working on dashboard with two datasets which have different field names. I want to be able to select the dataset in one toggle, and use a second toggle to change the grouping in a chart lens. Because each dataset has different field names, the second toggle would need to have its values updated depending on which dataset is selected.

If using the example below, when "Selection 1" is selected in Toggle_1, I would like the "Selection 1a" in Toggle_2 to have its value ("Output_1") repalced by value2 in Toggle_1 ("Grouping_1") . It would essentially be binding the results from Toggle_1 into Toggle_2.

Thanks for any ideas! 

"Toggle_1": {
  "broadcastFacet": true,
                "isGlobal": false,
                "selectMode": "singlerequired",
                "start": {
                    "display": [
                        "Selection 1"
                    ]
                },
                "type": "staticflex",
                "useGlobal": true,
                "values": [
                    {
                        "display": "Selection 1",
                        "value": "Source_1",
                        "value2": "Grouping_1"
                        
                    },
                    {
                        "display": "Selection 2",
                        "value": "Source_2",
                        "value2": "Grouping_2"
                    }
                    }
                ],
                "numbers": [],
                "strings": [],
                "groups": []
},
"Toggle_2": {
  "broadcastFacet": true,
                "isGlobal": false,
                "selectMode": "singlerequired",
                "start": {
                    "display": [
                        "Selection 1"
                    ]
                },
                "type": "staticflex",
                "useGlobal": true,
                "values": [
                    {
                        "display": "Selection 1a",
                        "value": "Output1"
                    },
                    {
                        "display": "Selection 1b",
                        "value": "Output2"
                    }
                    }
                ],
                "numbers": [],
                "strings": [],
                "groups": []
}

Hi,

I would like to create a test custom text classification model using the test Einstein AI API using our own internal data. Is there any documentation on the data security for the data used to create the model? Is it stored and deleted after the model is created?

Thanks

I am trying to join a dataset which has multiple matches, see below for an example:

Dataset A
Org Id
Org1
Org2
Org3

Dataset B
EA IdOrg IdDate
EA1, Org1, 1/1/2016
EA2, Org1, 1/1/2017
EA3, Org2, 6/6/2017
EA4, Org3, 8/1/2017

In this example, I would like to join EA Id and Date in Dataset B to Dataset A by Org Id. However, there are multiple matches for Org1. I would like to only join either the earliest or smallest value from Dataset B (EA1, 1/1/2016) to Dataset A. The resulting dataset should be:

Dataset A
Org IdEA IdDate
Org1, EA1, 1/1/2016
Org2, EA3, 6/6/2017
Org3, EA4, 8/1/2017

Is this possible? 
Thanks
Hi all,

I am dealing with an issue connected to the fact columns with all null values are not created in the update dataset during an augment transformation. I understand that the solution during a digest transformation is to include a defaultValue parameter. Is it possible to either do this in an augment transformation (for specific fields) or is there another work around to avoid columns with null values being deleted from the update dataset?

Thanks,
Eli
I am now trying to finish the challenge in module - Quick Start: Einstein Prediction Builder: Create a Formula Field to Predict.
https://trailhead.salesforce.com/projects/prediction_builder/steps/prediction_builder_formula_field?trailmix_creator_id=00550000006yDdKAAU&trailmix_id=admin-keynote-dreamforce-2017

I've created the Einstein Prediction Builder trailhead playground but could not find the custom object: Candidate.

Please advise. thanks.