Posts
Showing posts from July, 2020
Using process builder to delete records via Invocable apex method
- Get link
- X
- Other Apps
Design Patterns - Façade Pattern
- Get link
- X
- Other Apps
Sample code public class IProduct { public static boolean CheckProductExists(string ProductName) { if (GetProductId(ProductName) ==0) { return false; } else return true; } Public static integer GetProductId(string ProductName) { Map<string, integer> Prod= iDataLoad.GetProduct(); if (prod.get(ProductName)== null) { return 0; } else {return prod.get(ProductName); } } } ---...
Einstein analytics and Machine learning
- Get link
- X
- Other Apps
I have created Einstein Analytics video series that will give you quick start with Einstein. I have also covered the basic Machine learning concept so that you guys are familiar with ML vocabulary in case if you encounter data scientist at client place. Following Topics are covered 1) Introduction to Einstein Analytics and Machine learning 2)Filters on Dashboard 3) Understanding DataFlow 4)Understanding Compute expressions 5)Understanding Recipes 6)Data bindings 7) Dashboard Json 8)Embed dashboard on lead object 9)Overview of SAQL 10)Connect to AWS S3 11) Creating Dashboard(Blank and from Template)
Introduction to Einstein analytics and Machine learning
- Get link
- X
- Other Apps
Above video, Tutorial will teach you the following things 1) Setup Einstein Org 2) Create App, Dashboard and Dataset 3) Difference between Supervised and unsupervised Machine learning Register Einstein Org 1) To register for Einstein free org, please visit https://developer.salesforce.com/promotions/orgs/analytics-de 2) Fill out the information and click Sign me up. You will receive a verification email. Create an App 1) Apps can be of two types Private and Shared App. Private app- Only You have access to it and cant is shared. Shared App- This one you can share. 1) Go to Analytics Studio 2)Click on create 3) Go to Dashboard and Create 4) Create Datasets You can create a dataset from CSV, Salesforce objects or external objects like for instance linking to AWS database, AZure db etc Here we will rely on Salesforce Lead object to keep the demo nice and easy. 5) Go to the Dashboard and add a chart and use the lead dataset Machine Learning Supervised and Supervised Algorithm In ...