{"id":19325,"date":"2024-04-02T00:00:00","date_gmt":"2024-04-02T04:00:00","guid":{"rendered":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/"},"modified":"2024-09-17T06:37:16","modified_gmt":"2024-09-17T10:37:16","slug":"data-deduplication-getting-smarter-with-ai","status":"publish","type":"whitepaper","link":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/","title":{"rendered":"Data deduplication \u2014 Getting smarter with AI"},"content":{"rendered":"\r\n<h2 class=\"wp-block-heading\">Doing the Data Preparation Heavy Lifting<\/h2>\r\n\r\n\r\n\r\n<p>Every resource that humans seek to use for an advanced purpose (oil, metal, etc.) must be processed in some way before it can be transformed into a new, more valuable form. The newest precious resource, data, is no different. Entire IT departments and teams of skilled data engineers are charged with this important duty every day, spending hours of their time (another precious resource) assembling <a href=\"\/solutions\/technology\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"data pipelines (opens in a new tab)\">data pipelines<\/a> to bring data into BI and data science platforms where it can be used to make decisions. That involves cleaning the data and getting it ready for analysts, business users, developers, data scientists, and even customers accessing their own data through internal <a href=\"\/ai-analytics-platform\/embeddable-analytics\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"embedded analytics (opens in a new tab)\">embedded analytics<\/a>.<\/p>\r\n\r\n\r\n\r\n<p>Every advanced manufacturing process develops specialized tools, and in the analytics realm, the most advanced tools available are machine learning (ML) and artificial intelligence. These powerful systems can be used to help data engineers and anyone else involved in data preparation simplify their lives by automating large-scale, repetitive tasks. One of the biggest opportunities for AI, ML, and <a href=\"\/whitepapers\/augmented-analytics-the-future-of-business-intelligence\/\">augmented analytics<\/a> to help is in the realm of data deduplication.<\/p>\r\n\r\n\r\n\r\n<p class=\"form-marker\">As the name implies, data deduplication is the act of removing redundant data from a dataset, which can help build a more coherent dataset or reduce dimensionality. A data deduplication tool has a lot of moving parts and can bring a complex array of computing power and assistance to a basic-sounding task. In this paper, we\u2019ll delve into why data deduplication is important, some ways it can work, and a sampling of some other ways AI can assist with data prep.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Why Is Deduplication Important?<\/h2>\r\n\r\n\r\n\r\n<p>According to <a href=\"https:\/\/www.forbes.com\/sites\/gilpress\/2016\/03\/23\/data-preparation-most-time-consuming-least-enjoyable-data-science-task-survey-says\/#1e7862116f63\" target=\"_blank\" rel=\"noopener\">Forbes<\/a>, 80% of data scientists\u2019 work is data preparation, and 76% of those polled reported that it was their least favorite task! These reasons would be sufficient to do whatever it takes to automate these processes. The data experts (engineers, scientists, IT teams, etc.) who are in charge of <a href=\"\/blog\/6-questions-to-ask-when-preparing-data-analysis\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"data preparation (opens in a new tab)\">data preparation<\/a> are most interested in connecting to data sources, building stable pipelines, and other more complex tasks. Forcing them to deal with rote, annoying tasks like data preparation reduces morale and takes data experts away from the higher-value work that they could be doing to benefit the company.<\/p>\r\n\r\n\r\n\r\n<p>Proper deduplication can have a huge impact on a company\u2019s bottom line. While the rise of countless cloud sources has coincided with a lowering of costs per unit of stored data, there are still costs associated with maintaining data volumes, and having duplicate data drives those costs up. The extra data can also slow down query response times, delaying the time it takes to make decisions. Additionally, duplicate data can return false results that lead to incorrect business decisions. In today\u2019s fast-paced modern business environment, delays and errors like these are costly. The proliferation of data storage types and locations introduces a new range of accompanying errors.\u00a0<\/p>\r\n\r\n\r\n\r\n<p>To mitigate that risk, deduplication is a vital step in the data-cleansing process. Removing duplicate information, either inside an individual database or as part of a data model (with a deduplication scrubber or other tool) is key to ensuring accurate, timely results from analyses. Next, let\u2019s go into performing deduplication with a machine learning algorithm.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Deduplication via ML Algorithm<\/h2>\r\n\r\n\r\n\r\n<p>One of the most common ways to deploy a deduplication tool in a BI tool is by aggregating data along a certain dimension in order to perform analytics. In many cases, data is coming from various platforms (different cloud databases, software systems like Salesforce, etc.) and the same information can be represented differently, which produces misleading data aggregations that could lead to false conclusions. Deduplication detects different instances of the same information and automatically applies logic to ensure uniform entry as part of the data transformation.<\/p>\r\n\r\n\r\n\r\n<p><a href=\"https:\/\/en.wikipedia.org\/wiki\/String-to-string_correction_problem\" target=\"_blank\" rel=\"noopener\">String correction<\/a> is part of many data onboarding processes. BI support personnel spend large amounts of time manually grouping and replacing redundant data, sometimes using lookup with predefined dictionaries accumulated from their personal experience. Another option is using custom SQL CASE statements, like so:<\/p>\r\n\r\n<pre class=\"wp-block-code\"><code>case [Name]\r\nwhen 'John Smith' then 'J. Smith'\r\ncase [Country]\r\nwhen 'Afrika' then 'Africa'<\/code><\/pre>\r\n\r\n<p>The manual process of correcting these duplication opportunities can be slow, frustrating, and error-prone! However, a superior option for accelerating and automating this process is to use ML. The right algorithm can handle these tasks quickly and help construct a clean dataset, ready for dashboard production. Let\u2019s look at how that works:<\/p>\r\n\r\n\r\n\r\n<p>When executing deduplication with an algorithm, the system takes a given data column and divides it to a group of information (clusters) that relate to a single attribute (an attribute that has the same meaning\u2060 \u2014 this can be phonetic properties, distance, etc.). Then the algorithm allows the user to define the desired attribute per group (frequency of appearance in the cluster, etc.). The first time the system analyzes a column, the human user chooses how it behaves and how inclusive the results should be. Once the algorithm has done its work, the final information can be used in the dashboard for analytics as a regular field. Easy!<\/p>\r\n\r\n\r\n\r\n<p>BI systems with this kind of functionality are able to analyze and group data from a data model at the column level. This means that the model looks at each column, identifies similar strings, and groups them together into a single value, like so:<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img decoding=\"async\" class=\"wp-image-70289\" src=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/dedup1.png\" alt=\"\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Three methods for analyzing data (similarity functions) include:<\/p>\r\n\r\n\r\n\r\n<p><strong>Similarity:<\/strong> The system applies a soft TFIDF (term frequency-inverse document frequency) algorithm where similar strings are grouped together by rank. Terms that appear too often, such as \u201ccompany\u201d and \u201cinc\u201d are scored lower since they are less unique strings.<\/p>\r\n\r\n\r\n\r\n<p><strong>Spelling:<\/strong> Grouping strings similar in spelling.<\/p>\r\n\r\n\r\n\r\n<p><strong>Phonetic Similarity:<\/strong> Groups strings terms that sound similar, for example, strings that use \u2018f\u2019 or \u201cph.\u201d<\/p>\r\n\r\n\r\n\r\n<p>When using a BI tool with AI deduplication features, also test each method to find the results that work best for you, adjusting the level of inclusiveness or granularity until you create a dataset that fits your needs. Most systems are set at a default level that is less inclusive, meaning results are more precise. The more inclusive the results, the less precision there is. If your results are too inclusive, you may need to spend time editing the results that don\u2019t match your needs. No deduplication tool is perfect, especially not the first time you\u2019re using it.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">AI and Data: Possibilities<\/h2>\r\n\r\n\r\n\r\n<p>Machine learning and AI have broader capabilities to clean data beyond just acting as a fancy deduplication scrubber. Again: any rote human task can be performed by a trained algorithm in an AI system. They can clean and standardize data as it\u2019s being moved, extracted, and loaded, even spot outliers in the dataset and alert human users.<\/p>\r\n\r\n\r\n\r\n<p>First off: standardizing data. It\u2019s easier to analyze and work with data that\u2019s all in a similar format. For instance, an AI system can be trained to sift through a dataset and convert every entry to lowercase (often the preferred format for writing queries). Eliminating errant spaces before or after entries is another useful standardization practice, since BI tools can be very literal when responding to query requests. For example, \u201cusers\u201d is not the same as \u201c users\u201d to a computer, so analysis of those two entires will return incorrect results. Rather than spending hours of human time to comb through data, AI can handle these repetitive tasks with ease and deliver a cleaner dataset.<\/p>\r\n\r\n\r\n\r\n<p>Today\u2019s organizations deal with data in a wide array of locations and cloud databases, so loading it all into a central BI tool is a must. This is another place that AI can help, scanning and suggesting cleansing actions while the data is being moved. In addition to acting as a deduplication tool, AI can also fill in blank values and ensure that the end product is ready to be analyzed. Depending on the training dataset, the AI can also give human users additional options to improve the quality of the new dataset.<\/p>\r\n\r\n\r\n\r\n<p>Outlier detection is a classic AI task. Since algorithms are good at pattern recognition, they\u2019re also good at spotting values that fall outside the expected results. As a system scans the dataset, it\u2019s essentially asking \u201cDoes this column look okay?\u201d and checking for things like accepted values, null values, numerical outliers, uniqueness (e.g. every user should have their own user_id, etc.), and referential integrity (for values that are keys to different tables). When an AI comes up against a value that doesn\u2019t make sense with what it\u2019s been trained to expect, it can surface that rogue result to human users, who can take action.<\/p>\r\n\r\n\r\n\r\n<p>These are just a few ways that AI systems could one day help <a href=\"\/solutions\/technology\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"data engineers (opens in a new tab)\">data engineers<\/a> and all users get more out of their data and spend less time on the manual (but necessary) processes of data cleansing.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">AI and Engineers: Partners in Building the Future<\/h2>\r\n\r\n\r\n\r\n<p>The future is being built on data <em>right now<\/em>! That future will bring together countless datasets from the cloud, apps, and anywhere else that builders collect and store data. It\u2019ll be up to data engineers to build enduring, stable pipelines that deliver that precious data to BI tools and allow analysts, users, and customers to get the most out of it.\u00a0<\/p>\r\n\r\n\r\n\r\n<p>Those intrepid engineers won\u2019t be alone. The future will be built on data and powered by augmented analytics. <a href=\"\/glossary\/big-data-basics\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Artificial Intelligence (opens in a new tab)\">Artificial Intelligence<\/a> systems integrated throughout the powerful analytics platforms of the future will clean and prep data as it\u2019s ingested into the platform. These systems will get rid of troublesome duplicate data, fill null values, identify outliers, suggest joins, and even guide human users to find new insights that they might never have identified on their own.<\/p>\r\n\r\n\r\n\r\n<p>Sisense is leading the way into this new era with powerful machine learning and AI components that make life easier for data engineers and everyone else involved in the BI process. See for yourself what Sisense could do for your organization and build the future of your company on a platform that\u2019s powerful enough to handle anything your imagination can throw at it.<\/p>\r\n\r\n\r\n\r\n<p><a class=\"action-btn \" href=\"\/solutions\/technology\/\">Dig Into Sisense for Data Engineers<\/a><\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Doing the Data Preparation Heavy Lifting Every resource that humans seek to use for an advanced purpose (oil, metal, etc.) must be processed in some way before it can be transformed into a new, more valuable form. The newest precious&#8230;<\/p>\n","protected":false},"author":4,"featured_media":19329,"template":"","meta":{"_acf_changed":false,"_searchwp_excluded":"","_links_to":"","_links_to_target":""},"categories":[173],"application":[10],"department":[6],"industry":[177,417,25,418,423,11,471,424,420,431,425,426,427,421,428,13,38,429,430,12,422],"topic":[24,195],"class_list":["post-19325","whitepaper","type-whitepaper","status-publish","has-post-thumbnail","hentry","category-ai-ml","application-cloud-data-teams","department-it","industry-digital-marketing","industry-education","industry-enterprise","industry-finance","industry-government","industry-healthcare","industry-industrial-manufacturing","industry-insurance","industry-logistics-transportation","industry-media-entertainment","industry-nonprofit","industry-online-gaming","industry-operations-logistics","industry-other","industry-pharma-life-sciences","industry-professional-services","industry-retail","industry-software-saas","industry-supply-chain","industry-technology","industry-travel-hospitality","topic-bi-best-practices","topic-data-sources"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.5 (Yoast SEO v23.8) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Data Deduplication \u2014 Getting Smarter with AI l Sisense<\/title>\n<meta name=\"description\" content=\"The future of data will use AI to cleanse countless datasets from the cloud, apps, and anywhere else that data is collected and stored.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data Deduplication \u2014 Getting Smarter with AI l Sisense\" \/>\n<meta property=\"og:description\" content=\"The future of data will use AI to bring in and cleanse countless datasets from the cloud, apps, and anywhere else that builders collect and store data.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/\" \/>\n<meta property=\"og:site_name\" content=\"Sisense\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-17T10:37:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Data Deduplication \u2014 Getting Smarter with AI l Sisense\" \/>\n<meta name=\"twitter:description\" content=\"The future of data will use AI to bring in and cleanse countless datasets from the cloud, apps, and anywhere else that builders collect and store data.\" \/>\n<meta name=\"twitter:site\" content=\"@sisense\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/\",\"url\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/\",\"name\":\"Data Deduplication \u2014 Getting Smarter with AI l Sisense\",\"isPartOf\":{\"@id\":\"https:\/\/www.sisense.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg\",\"datePublished\":\"2024-04-02T04:00:00+00:00\",\"dateModified\":\"2024-09-17T10:37:16+00:00\",\"description\":\"The future of data will use AI to cleanse countless datasets from the cloud, apps, and anywhere else that data is collected and stored.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#primaryimage\",\"url\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg\",\"contentUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sisense.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data deduplication \u2014 Getting smarter with AI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sisense.com\/#website\",\"url\":\"https:\/\/www.sisense.com\/\",\"name\":\"Sisense\",\"description\":\"Build your business with anywhere-analytics\",\"publisher\":{\"@id\":\"https:\/\/www.sisense.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sisense.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.sisense.com\/#organization\",\"name\":\"Sisense\",\"url\":\"https:\/\/www.sisense.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg\",\"contentUrl\":\"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg\",\"width\":1200,\"height\":600,\"caption\":\"Sisense\"},\"image\":{\"@id\":\"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/sisense\",\"https:\/\/www.linkedin.com\/company\/sisense\",\"https:\/\/github.com\/sisense\/\"],\"description\":\"Sisense accelerates product innovation through AI\/ML capabilities. Our global analytics platform lets customers drive better, faster decisions for their business and end users.\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Data Deduplication \u2014 Getting Smarter with AI l Sisense","description":"The future of data will use AI to cleanse countless datasets from the cloud, apps, and anywhere else that data is collected and stored.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/","og_locale":"en_US","og_type":"article","og_title":"Data Deduplication \u2014 Getting Smarter with AI l Sisense","og_description":"The future of data will use AI to bring in and cleanse countless datasets from the cloud, apps, and anywhere else that builders collect and store data.","og_url":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/","og_site_name":"Sisense","article_modified_time":"2024-09-17T10:37:16+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"Data Deduplication \u2014 Getting Smarter with AI l Sisense","twitter_description":"The future of data will use AI to bring in and cleanse countless datasets from the cloud, apps, and anywhere else that builders collect and store data.","twitter_site":"@sisense","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/","url":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/","name":"Data Deduplication \u2014 Getting Smarter with AI l Sisense","isPartOf":{"@id":"https:\/\/www.sisense.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#primaryimage"},"image":{"@id":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg","datePublished":"2024-04-02T04:00:00+00:00","dateModified":"2024-09-17T10:37:16+00:00","description":"The future of data will use AI to cleanse countless datasets from the cloud, apps, and anywhere else that data is collected and stored.","breadcrumb":{"@id":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#primaryimage","url":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg","contentUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/Data-Deduplication-Getting-Smarter-AI-Featured1200x628.jpg","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/www.sisense.com\/whitepapers\/data-deduplication-getting-smarter-with-ai\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sisense.com\/"},{"@type":"ListItem","position":2,"name":"Data deduplication \u2014 Getting smarter with AI"}]},{"@type":"WebSite","@id":"https:\/\/www.sisense.com\/#website","url":"https:\/\/www.sisense.com\/","name":"Sisense","description":"Build your business with anywhere-analytics","publisher":{"@id":"https:\/\/www.sisense.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sisense.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sisense.com\/#organization","name":"Sisense","url":"https:\/\/www.sisense.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/","url":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg","contentUrl":"https:\/\/cdn.sisense.com\/wp-content\/uploads\/sisense-yoast-og.jpg","width":1200,"height":600,"caption":"Sisense"},"image":{"@id":"https:\/\/www.sisense.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/sisense","https:\/\/www.linkedin.com\/company\/sisense","https:\/\/github.com\/sisense\/"],"description":"Sisense accelerates product innovation through AI\/ML capabilities. Our global analytics platform lets customers drive better, faster decisions for their business and end users."}]}},"_links":{"self":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/whitepaper\/19325"}],"collection":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/whitepaper"}],"about":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/types\/whitepaper"}],"author":[{"embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/users\/4"}],"version-history":[{"count":0,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/whitepaper\/19325\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/media\/19329"}],"wp:attachment":[{"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/media?parent=19325"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/categories?post=19325"},{"taxonomy":"application","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/application?post=19325"},{"taxonomy":"department","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/department?post=19325"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/industry?post=19325"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.sisense.com\/wp-json\/wp\/v2\/topic?post=19325"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}