

{"id":11926,"date":"2018-03-27T11:05:45","date_gmt":"2018-03-27T05:35:45","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=11926"},"modified":"2021-05-09T13:16:40","modified_gmt":"2021-05-09T07:46:40","slug":"sas-format","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/sas-format\/","title":{"rendered":"SAS Format &#8211; Specialise in User-defined Format &amp; Built-in Format"},"content":{"rendered":"<p>After learning the concept of <strong>SAS syntax<\/strong>, we will move on to particularly discuss methods to work with the SAS format of data values.<\/p>\n<p>It should be noted that these changes are only applied while displaying the results. Changing the format of output does not change the way, the data gets stored at the back end.<\/p>\n<p>Let&#8217;s start with the definition of SAS format.<\/p>\n<h2>What is SAS Format?<\/h2>\n<p>SAS format decides the way in which we want our data to get displayed. For example, we may have coded Male and Female as M and F (or 0 and 1), but while printing we would want to display the field as MALE and FEMALE only.<\/p>\n<p>Another common\u00a0example is to display area codes in\u00a010 digit telephone numbers (e.g. 123-3456-789).<\/p>\n<h2>Types of Formats in SAS<\/h2>\n<p>Here, we\u00a0will discuss two types of SAS formats:<\/p>\n<h3>1. Built-in Format<\/h3>\n<p>We looked at SAS format while discussing <strong>SAS Numeric Format<\/strong>, where we applied the SAS format on a date and got desired results. Let us again make use of built-in SAS format through an example:<\/p>\n<p>Suppose we have a dataset where we want sales-amount in dollars with a decimal position. We can make use of built-in format,\u00a0<em>dollarw.d<\/em> in the dataset.<\/p>\n<pre class=\"EnlighterJSRAW\">Proc print Data=Sales;\r\nFormat Salesamount Dollar9.1 ;\r\nRun;<\/pre>\n<p><strong>Output:-<\/strong><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-11933 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.png\" alt=\"SAS Format\" width=\"432\" height=\"106\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.png 432w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1-150x37.png 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1-300x74.png 300w\" sizes=\"auto, (max-width: 432px) 100vw, 432px\" \/><\/a><\/p>\n<p>List of predefined date formats available\u00a0to change the output format of variables in <a href=\"https:\/\/hortonworks.com\/partner\/sas\/\">SAS<\/a>:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-11934 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.1.png\" alt=\"SAS Format\" width=\"402\" height=\"141\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.1.png 402w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.1-150x53.png 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-1.1-300x105.png 300w\" sizes=\"auto, (max-width: 402px) 100vw, 402px\" \/><\/a><\/p>\n<h3>2. User-defined Format<\/h3>\n<p>Till now we have seen, how to change the SAS format of numbers and Dates with in built\u00a0SAS formats. But there can be many occasions when\u00a0SAS built-in formats do not suffice our needs. Like in the current dataset, we want to:<\/p>\n<ol>\n<li>Display \u201cMALE\u201d and \u201cFEMALE\u201d instead of \u201cM\u201d and \u201cF\u201d.<\/li>\n<li>Re-define categories A, B, C, D and E as Ultra, Super, Average, Low and Poor.<\/li>\n<li>Display the frequency of Sales amount in three categories \u201c&lt; 8000\u201d,\u201d8000-12000\u201d and \u201c&gt;=12000\u201d.<\/li>\n<\/ol>\n<p>If we only want to change the display (and not the values in the data set), then creating a user-defined format using PROC FORMAT\u00a0is a more efficient way to make these changes.<\/p>\n<p>PROC SAS FORMAT\u00a0is a procedure that creates a mapping of data values.<\/p>\n<p><strong>The syntax of User-Defined Format \u2013<\/strong><strong>\u00a0<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Proc Format;\r\nValue Format_Name Range1='Label1'\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Range2='Label2'\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Range2='Label2'\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Range3='Label3'\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 ........\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 ....... ;\r\nRun;<\/pre>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/8_Proc_Format_SAS.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-11935 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/8_Proc_Format_SAS.png\" alt=\"SAS Format\" width=\"649\" height=\"251\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/8_Proc_Format_SAS.png 649w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/8_Proc_Format_SAS-150x58.png 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/8_Proc_Format_SAS-300x116.png 300w\" sizes=\"auto, (max-width: 649px) 100vw, 649px\" \/><\/a><\/p>\n<p><strong>\u00a0Rules for defining FORMAT NAME:<\/strong><\/p>\n<ol>\n<li>For character values, the first character must be\u00a0a dollar sign ($), and a letter or underscore as the second character. For numeric values, a name must have a letter or underscore as the first character.<\/li>\n<li>A name cannot end with a number.<\/li>\n<li>Cannot be the name of an existing SAS format.<\/li>\n<li>Should\u00a0not end with a period in the VALUE statement.<\/li>\n<\/ol>\n<p><strong>Example \u2013<\/strong> <strong>Displaying M and F as Male and Female<\/strong><strong>.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">Proc Format;\r\nValue $Genderfmt \u2018M\u2019=\u2019Male\u2019\r\n\u2018F\u2019 =\u2019Female\u2019;\r\nRun;\r\nProc Print Data = Sales ;\r\nFormat Gender $Genderfmt. ;\r\nRun;<\/pre>\n<p><strong>Output:<\/strong><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-11936 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-2.png\" alt=\"SAS Format\" width=\"399\" height=\"107\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-2.png 399w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-2-150x40.png 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example-2-300x80.png 300w\" sizes=\"auto, (max-width: 399px) 100vw, 399px\" \/><\/a><\/p>\n<p>Let us look at another example &#8211; we want to display the sales amount ending with a % sign and preceded with a $ sign.<\/p>\n<pre class=\"EnlighterJSRAW\">Proc Format;\r\nPicture New_fmt low-High=\u2019000000%\u2019 (Prefix=\u2019$\u2019);\r\nRun;\r\nProc print data=Sales;\r\nFormat Salesamount New_fmt.;\r\nRun;<\/pre>\n<p><strong>Output:<\/strong><\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-11937 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example3.png\" alt=\"SAS Format\" width=\"396\" height=\"161\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example3.png 396w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example3-150x61.png 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/example3-300x122.png 300w\" sizes=\"auto, (max-width: 396px) 100vw, 396px\" \/><\/a><\/p>\n<p>This comes to the end of the SAS tutorial.<\/p>\n<h2>Summary<\/h2>\n<p>We looked at various methods to display the SAS format of data values using built-in and user-defined formats. We have already covered In-format in previous articles. Hope you found this article useful. If you need any help, please feel free to ask your questions through the comments below.<span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:2005,&quot;href&quot;:&quot;https:\\\/\\\/hortonworks.com\\\/partner\\\/sas&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20180503064340\\\/https:\\\/\\\/hortonworks.com\\\/partner\\\/SAS\\\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-10 17:27:50&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-18 08:38:42&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-22 19:02:41&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-28 07:46:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-05 11:21:14&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-01-15 05:55:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-20 08:34:23&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-01-23 09:34:29&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-01-27 07:11:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-30 08:26:40&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-03 09:44:33&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-02-07 19:39:57&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-02-25 01:02:14&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-05 10:32:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-08 17:59:08&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-03-17 04:04:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-24 12:58:16&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-31 10:21:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-09 10:02:30&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-04-13 19:12:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-17 12:34:13&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-04-24 05:45:38&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-30 17:33:44&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-11 06:14:13&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-25 10:50:47&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-02 08:11:34&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-06-05 09:45:35&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-06-15 15:19:08&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-06-20 03:06:50&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-25 12:45:12&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-29 10:25:47&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-04 02:50:42&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-08 07:08:48&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-12 04:14:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-15 10:41:31&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-19 05:46:05&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-22 07:49:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-26 13:24:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-30 10:26:09&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-08-03 06:18:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-08-06 18:14:37&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-08-06 18:14:37&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>After learning the concept of SAS syntax, we will move on to particularly discuss methods to work with the SAS format of data values. It should be noted that these changes are only applied&#46;&#46;&#46;<\/p>\n","protected":false},"author":6,"featured_media":11932,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[59],"tags":[19705,12027,19706,19704],"class_list":["post-11926","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sas","tag-sas-built-in-format","tag-sas-format","tag-sas-format-types","tag-sas-user-defined-format"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SAS Format - Specialise in User-defined Format &amp; Built-in Format - DataFlair<\/title>\n<meta name=\"description\" content=\"Check out SAS format tutorial covering types of formats in SAS; user-defined format and built-in format with their syntax and examples. Get it for free!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/sas-format\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SAS Format - Specialise in User-defined Format &amp; Built-in Format - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Check out SAS format tutorial covering types of formats in SAS; user-defined format and built-in format with their syntax and examples. Get it for free!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/sas-format\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-27T05:35:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-09T07:46:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/Types-of-Formats-01.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=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SAS Format - Specialise in User-defined Format &amp; Built-in Format - DataFlair","description":"Check out SAS format tutorial covering types of formats in SAS; user-defined format and built-in format with their syntax and examples. Get it for free!","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:\/\/data-flair.training\/blogs\/sas-format\/","og_locale":"en_US","og_type":"article","og_title":"SAS Format - Specialise in User-defined Format &amp; Built-in Format - DataFlair","og_description":"Check out SAS format tutorial covering types of formats in SAS; user-defined format and built-in format with their syntax and examples. Get it for free!","og_url":"https:\/\/data-flair.training\/blogs\/sas-format\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-03-27T05:35:45+00:00","article_modified_time":"2021-05-09T07:46:40+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/Types-of-Formats-01.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/sas-format\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89"},"headline":"SAS Format &#8211; Specialise in User-defined Format &amp; Built-in Format","datePublished":"2018-03-27T05:35:45+00:00","dateModified":"2021-05-09T07:46:40+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sas-format\/"},"wordCount":526,"commentCount":2,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/Types-of-Formats-01.jpg","keywords":["SAS Built-in Format","SAS Format","SAS Format Types","SAS User-defined Format"],"articleSection":["SAS Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/sas-format\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/sas-format\/","url":"https:\/\/data-flair.training\/blogs\/sas-format\/","name":"SAS Format - Specialise in User-defined Format &amp; Built-in Format - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/Types-of-Formats-01.jpg","datePublished":"2018-03-27T05:35:45+00:00","dateModified":"2021-05-09T07:46:40+00:00","description":"Check out SAS format tutorial covering types of formats in SAS; user-defined format and built-in format with their syntax and examples. Get it for free!","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/sas-format\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/Types-of-Formats-01.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/03\/Types-of-Formats-01.jpg","width":1200,"height":628,"caption":"SAS Format"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/sas-format\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"SAS Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/sas\/"},{"@type":"ListItem","position":3,"name":"SAS Format &#8211; Specialise in User-defined Format &amp; Built-in Format"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"The DataFlair Team provides industry-driven content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our expert educators focus on delivering value-packed, easy-to-follow resources for tech enthusiasts and professionals.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam2\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/11926","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=11926"}],"version-history":[{"count":8,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/11926\/revisions"}],"predecessor-version":[{"id":93339,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/11926\/revisions\/93339"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/11932"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=11926"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=11926"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=11926"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}