Else delete sas. The DELETE statement is normally part of an IF statement.

Else delete sas. Using if between else in SAS.
Else delete sas The library is available for processing in subsequent SAS sessions. Of course it predates many of the other languages This tutorial explains how to identify the first and last observations within a group using the first. This SAS software tutorial shows how to subset or split a dataset from within a data step. cars; if _n_ Hello, I have a data set with about 5 million observations. fileexist(&file) FILEEXIST is a data step function. The following function Some self-diagnosis output can be generated by adding this statement to a DATA step, so you can see in your SASLOG the SAS-generated temporary variables for 1. This procedure uses the following basic syntax: proc sort data =original_data out =no_dups_data nodupkey; by _all_; run; . com. A macro Tip: For greater efficiency, construct your IF-THEN/ELSE statement with conditions of decreasing probability. For example, Example 3: Use WHERE Statement With IN condition. Bart /**program start**/ data master; input id $ name $ gender $ weight; _A_=. the above dataset changes every , however i dont know of a quick and efficient way to tell sas to delete/remove all variables that have missing values across all observations . They are I imported a file from Excel using the command . When working with files in a permanent SAS library, you generally Data set A contains all of my data. And if you're like me, a program you wrote a year ago might as well have been written by someone else. You can use pattern recognition (the PRXCHANGE function in SAS) to specify a string you want to remove from a larger string. if x then delete; if status='OK' and type=3 then count+1; if age ne agecheck then delete; if x=0 Use the DELETE statement when it is easier to specify a condition that excludes observations from the data set or when there is no need to continue processing the DATA step statements The DELETE statement marks observations (also called records) in the current output data set for deletion. Be systems and versions of SAS® can be even more difficult. For records where it is not true, increment the condition flag by one. I have a daily schedulated job wich at the end of its execution creates an . I have To remove a variable you need to either DROP it or not KEEP it. Outdata is the table (dataset) from which we need to select the columns. xlsx' textsize = 32767;. _ dot . Basically you need use code generation create the DROP statement (or DROP= dataset option. internationaltours; if Country = Your macro is opening the dataset to check the variable names and then running a data step to overwrite that dataset while it is still open. Thus, you cannot use %IF without %THEN. TABLES; or (even better) use SAS® DATA Step Statements: Reference documentation. Then you need to call your macro properly by passing a Have created two date Macros to take out a subset of a huge dataset. One easy , however i dont know of a quick and efficient way to tell sas to delete/remove all variables that have missing values across all observations . This is a pretty simple question -- I'm probably overthinking it. The RETURN statement forces the DATA step to go to the next iteration Hi everybody, I need some help about the deleting of a file, if exist. Subsequent IF-THEN statements This may not be the most elegant way of handling it, but it will work so long as you only have a single duplicate as shown in your example. Mark as New; Bookmark; Subscribe; Mute; RSS You can use an IF-THEN-DO statement in SAS to do a block of statements if some condition is true. IF Output: IF R_Num LT 100 THEN DELETE => This would tell SAS to remove all the Roll numbers whose values are less than 100. The DELETE statement is normally part of an IF statement. message reference time qty price x 101 35000 100 . Anyway, you can write a macro to check if the data set exist. When it is easier to specify a condition for excluding All macro conditional logic MUST be contained within a SAS macro PROGRAM (a SAS Macro Program is contained within %MACRO and %MEND statements). /* -----Program : m_sys_hiddenwork. newstring2) else print ("Not about cars: ". Syntax: Arguments: Details: Length of Returned Variable: The Basics: Examples: Completely missed what was hidden in that %SYSFUNC avalanche. Then create the table. NOTE: The COMPLETECASES function was added to the SAS IML language in SAS Viya in 2020. 0. does anyone know how to do that Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. That's why each duplicated value has a frequency in dups that is one less than its frequency The IF-THEN/ELSE Syntax. Syntax: IF expression Hi, In the below table I would like to keep record with flag =1 only when all records of an acct is flagged 1 else keep record with flag=0. If the option is used on an input data set, the variable is dropped, kept, or renamed before it is read I have a dataset called have with one entry with multiple variables that look like this:. I do not have permission to do the x command. If you add MEAN= to the OUTPUT statement then SAS will store the means into the variables with the same names as the input variables. 61 CPU seconds to run, while the corresponding SELECT statement with 100 WHEN clauses took a little less time, CPU 2. It is one of the most common interview questions as it is commonly used in day-to-day data management activities. You can use IN condition to specify one or more values to filter out the input data to create a new SAS dataset. Examples: if x then delete. This statement uses the following basic syntax: if var1 > 30 then var2 = Execute the above code in SAS Studio: Output: As per the above output, when the condition "result>50" is true or the result is greater than 50, it has been added to the "Pass" group. ok file, so I need to insert a sas /*create new dataset*/ data new_data; set my_data; if points ne assists then points_vs_assists = 'not equal'; else points_vs_assists = 'equal'; run; /*view dataset*/ proc print data =new_data; Notice that the new column In all cases I have seen, this is a result of poorly constructed SQL code and a SAS session that includes foreign (Sql server, Oracle, DB2 etc) libraries. How come I retain the observations NOT contain any of these words rather than delete the observations containing any of these words (to make it compatible with my previous code). To check if datasets exist, do a SELECT in SQL from DICTIONARY. Commented Jul 22, 2018 at 17:35 | Show 3 Completely missed what was hidden in that %SYSFUNC avalanche. Consider voting for Add a HASH object method which would append a hash I am trying to use SAS to remove certain project names from a dataset. Use the DELETE statement to delete one or more data sets from a SAS data library. To Find Very interesting solution, @ChrisHemedinger , thanks. adults; if division=1 then output div1; else if division=2 then output div2; else if division=3 then output div3; run; Minimize the number of times you IV. Below RegEx will match any string with bowel or gtv Added bonus is that when your session ends these temporary tables get cleaned up along with the rest of you SAS work data. Step 2 : The variable you want to use for merging must have same name in both the datasets. It sounds like you want to check if a dataset exists. 5. If it does, then the table is deleted, if it doesn't exist then it creates that table: libname Usually, in a search and replace step, it is a good idea to remove all spaces with compress and then search or equate. The macro symbol NAME always exists. Please see the attached PDF of my code. . In the example below, I need only 2nd row deleted, not the 4th. You should close it BEFORE trying to The second method to delete a row from a dataset is with the DELETE statement in a SAS Data Step. However, SAS eliminated those data points completely To delete a non-empty directory using SAS code, you can use the FDELETE function to delete each file in the directory, and then delete the directory itself. Rhodochrosite | Level 12. Subsequent IF-THEN statements An IF-THEN-DELETE statement consists of a boolean expression followed by SAS THEN DELETE statement. Commented Mar 21, 2019 at 0:38. Expressions that compare character values in the %IF-%THEN When DELETE executes, the current observation is not written to a data set, and SAS returns immediately to the beginning of the DATA step for the next iteration. If you want to delete more than one data set, then simply list the names after the DELETE keyword with a run; %macro show(param)j data whYj set testj if &param=codes then do; if codes='Y' then dOj vote=vote*100; end; endj else if &param=state then dOj If-Then-Else Statement in SAS; Trim Function: How to Remove Trailing Spaces from Character Values; Strip Function: How to Remove Leading and Trailing Spaces from String; YEAR, Remove Duplicates with PROC SORT. They are as follows : dot-underscore . You may want to take a step back and think a little more about your expected thing I have the following if-else conditions within a SAS macro: %if &restart_flg = Y %then %do; %if %sysfunc(exist(&library. – samkart. Subsequent IF-THEN statements are not evaluated. SAS has some I'm just learning SAS. else delete; %mend Hello SAS community, I have a question regarding how to capture certain rows that fall under a certain criteria. var1 Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type. They can work on both SAS files and non-SAS external files. ; IF-THEN-ELSE Statement. Z ( Not For records where it is true (you want to remove the duplicate), set flag=0. If the condition is true for all The hash OUTPUT method will overwrite a SAS data set, but not append. BUT if you want to delete sas-files (dataset, index-files, documentation. Welcome to SAS Programming Documentation for SAS® 9. The general form of the DELETE statement is as follows: DELETE Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. then . You can use the DOPEN, DNUM, and DREAD functions to Hello, I'm working on a code that will help determine if a table exists in a database or not. The basic syntax for creating an if statement in SAS is −. For example, we can use _n_ variable as: data new; set sashelp. To display I am wondering if I can modify or delete records based on the value in the previous row. The I have some extreme outliers throwing my regression model off, and I removed them using If-Then-Else statements. DATA table Else delete that entry if it contains only one of those or none of those values. In our case, if Flag eq '0' then delete class_org; %let flag=0; data class class_org; set sashelp. Please note that the key part of your "macro" is this. class; if &flag eq '1' then do; output class_org; if age eq 15 then age=25; output class; I am a new SAS user and am stumped on why my 'if then delete' statement is not working for the 'primary_site_labeled' variable. Note that the by The resulting SAS data set or data sets contain a subset of the original external file or SAS data set. Using if between else in SAS. SAS stores 28 types of missing values in a numeric variable. Multiple conditions for same variable in SAS. Only one IF ELSE statement working SAS. If so, drop it first. ends_with (newstring2, The DROP statement applies to all the SAS data sets that are created within the same DATA step and can appear anywhere in the step. And That's an example where using formats is beneficial. I am not clear about it. To do so you add the keyword NODUPKEY to the This guide contains written and illustrated tutorials for the statistical software SAS. SAS data step code existed before the incorporation of Proc SQL to SAS I believe. I have a data set called people_info and one of the variables is SocialSecurityNum. The program writes the SAS expressions can be a constant, variable, or array element Expressions can combine constants and variables with functions calls and operators Coding FIRST. This function uses the following basic syntax: SUBSTR(Source, Position, N) where: Source: The string to analyze; Position: The starting You can use an IF-THEN-ELSE statement in SAS to return some value if some condition is true, else return another value if some condition is not true. I am trying to delete observations that meet the following criteria: were coded as 1 for var1 AND were coded as 0 across all other The CONTAINS and LIKE operators are valid only in a WHERE clause. Syntax. This statement uses the following basic syntax: if var1 = "value" then do; new_var2 = 10; new_var3 = 5; end; . Subsequent IF-THEN statements Documents SAS/IML software, which provides a flexible programming language that enables novice or experienced programmers to perform data and matrix manipulation, statistical I tired cmiss (of all) but that is deleting all values not just second obs. libname go pcfiles path = C:\temp\myfile. That can be costly. sas: how to set up if data div1 div2 div3; set read. When Usually this is caused by including the trailing spaces in the text that you are searching for. Syntax: IF expression THEN DELETE; Hello, I am a new SAS user and am stumped on why my 'if then delete' statement is not working for the 'primary_site_labeled' variable. Review the documentation for FDELETE. then If an id from temp is matched with an id in hist then delete that row from the hist and insert it from temp, and if the id is not matched with any rows in hist then append the row Step 1 : Both the data sets must be SORTED by the variable you want to use for merging. Learn different ways to delete data sets in SAS, including using PROC DELETE, You can use the following basic syntax to merge two datasets in SAS and only return the rows where a value exists in the first dataset and not the second dataset: data final_data; merge data1 (in = a) data2 (in = b); by These existing (master) tables are in a DB on MS Sql server, where the new month’s data are SAS tables generated from a SAS process. So, I wonder if the script below is deleting all the requested records per dataset In SAS, Numeric and Character missing values are represented differently. Solved: Hi, I am trying to filter some of my data and create a new dataset. There are numerous functions for file management. set go. Details The DELETE Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. codes I have used: if click =. So you need to remove the trailing spaces before passing the string to the FINDW() I was working previously with SAS and then decided to shift to R for academic requirements reasons. Example: The following example uses the DELETE statement to prevent SAS from writing that observation to the output data set: data subset; set mylib. The ELSE part is optional. If no data set name is specified in the OUTPUT statement, First you need add %global id_wsadu; to your macro. All of those statements you mention appear to come from the SQL world and the uses are %symexist checks to see if a macro symbol exists. A well constructed SQL I want to delete the subsets (I am creating if-then output statement) from main dataset in SAS. What I want to do is, If company code exists in data set B then I will use the help of the OUTPUT, RETAIN and RETURN statements to override the DATA step loop. New SAS File Management Functions From SAS 9. Please see the attached PDF of my Learn different ways to delete data sets in SAS, including using PROC DELETE, PROC DATASETS, and PROC SQL DROP TABLE. A through . newstring2) end if string. I am not sure I understand this When you use nodupkey and dupout in PROC SORT, you will remove the first of each set of duplicates in the output data set. proc sql; select * from outdata; Quit; Asterisk (*) is used to select all columns (variables) in the order in which they are stored in the table. 5 Programming Documentation | SAS 9. I The last method to remove leading zeros in SAS is with pattern recognition. IF expression THEN statement; <ELSE statement;>. In SAS, you can not only use the PROC SORT procedure to order a data set, but also to remove duplicate observations. proc means data=AllEvents; class Base SAS® 9. 4 Procedures Guide, Seventh Edition ("Could be about cars: ". SAS IF then statement. Note: Missing values have a Is there a way to delete certain files from a folder? I have a conversion program that creates a bunch of csv files. You can use proc sort in SAS to quickly remove duplicate rows from a dataset. Subsequent IF-THEN statements If you want to delete non-sas-files, using fdelete function is the best choice if you don't want or can't use os commands. 'Sheet1$'n; . if x then delete; if status='OK' and type=3 then count+1; if age ne agecheck then delete; if x=0 then if y ne 0 Technically, ELSE refers to the most recent IF/THEN condition only and tests: Was it found to be false? To connect all of the conditions in the way you would like, you would need to repeat the word ELSE, such as: For This tutorial explains how to use IF THEN ELSE statements in SAS, with examples. To do that, you use the Hi SAS Users, I am trying to delete some observations to filter my data. double if then in sas. Customer Support SAS Documentation. If the expression is false (its value is 0 or missing), no further statements are processed Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. Is there a SAS else if clause confusion. Regular expressions allow you to search for text patterns - you just need to be able to formulate the rules for these patterns. and last. My code is as below: OPTIONS MPRINT; data arg_merge2; set 'C:\Users\pnguyen\Desktop\arg_merge2'; Here i want to delete kirshna marks how to delete rows conditionally. Numeric Missing Values. data nicefile ;. Instead, the ELSE PUT statement executes. First, Sort both the SAS® 9. The That is the expected behavior. The IF-THEN/ELSE statement always contains the IF-THEN part. I wanna delete the ids for which at least one value of variable diffdate is less than 60. To actually delete the records and renumber the remaining observations, use the How to use a proc delete in a if statement. How to delete some observations in some groups based on a condition. There is no need to check first. com DBCS equivalent function is KCOMPRESS in SAS National Language Support (NLS): Reference Guide. and start_date2 LE &fildt2. If it does, SAS executes the DO group. – Vinay Ashokkumar. This method is an PROC SQL; CREATE TABLE ta1 AS SELECT DISTINCT id, icd, feq, date group by id , date,icd, order by id, date, icd; QUIT; Now if I want to remove some records if there are The SAS log shows that 100 IF-THEN/ELSE statements took 2. Technically, ELSE refers to the most recent IF/THEN condition only and tests: Was the most recent IF/THEN condition evaluated? and Was it found You can use the SUBSTR function in SAS to extract a portion of a string. Task 2: Suppose you want to set a tag on all the R_Num. PDF EPUB Feedback. Use the DELETE statement to mark an observation to be deleted. using the following syntax: data YYY; set XXX; if DeathCause_ICD in Hi all, I have a dataset with 100 binary variables (var1 - var100). I'm curious, if we change the question to a macro design question Working with SAS Data Sets : Deleting Observations . For example I have a database that has clinical information on clients. sas. if _N_=1 then call execute ('proc sort data=nicefile; by var1; Not macro needed. LAST. This will make the macro value resolve outside the macro. Removing rows that happened within two days of a Hi, If you can modify your master tabel a little bit maybe following code will do the job for you. Some visualization experts choose sas if then else statement. want; set test; With SAS data set options, where you use the option determines when the action occurs. Other operators and functions can be used to get the equivalent behavior for an IF statement. Below is the code data Start rest ; set Start3; if start_date2 GE &fildt1. is basically proposing the same but using a table as source for the format instead of an explicit definition. The data we are most interested in is SAS to delete observations that meet condition within group. DELETE Statement with IF: The DELETE statement tells SAS to stop processing on the current observation. The variables in the DROP statement are available for I would like to delete the folder folderToDelete, which contains subfolders and those folders might contain subfolders, and so on. In this case, the drop statement is When you create SAS data sets, use the subsetting IF statement when it is easier to specify a condition for including observations. However, I would like to delete all the files that begin with "DES" since they're not needed. 51 This post demonstrates techniques to find unique and duplicate values in a SAS data set. com When you run a data step in SAS, some statements are processed during compilation, and others subsequently during execution. We want to remove any project names that have the words "seminar" or "workshop" from our dataset. 2, some new functions are introduced for file management uses. I am struggling DS2 is a proprietary object-oriented programming language that is appropriate for use with advanced data manipulation and preparation, data modeling applications, and The DATA step is the primary construct and tool for data manipulation in the BASE SAS All else being equal, WHERE is more efficient because smaller amounts of data are processed. SAS stores character strings as fixed length. f2)) %then %do; proc sql; Connect to xxxxx as dbcon Everything else needs clarity especially how compile time affects this. If then output not working in UNIX SAS. The expression is a condition that Also, I would like to open a dataset, delete all the requested records in one shot then closed it. I felt for your re: if then else delete syntax Posted 12-10-2023 02:00 AM (1041 views) | In reply to raheleh22 You may want to investigate use of the FIPS related functions if you are looking for I am not sure why SAS only is filtering my last line and not the whole locations I selected in my IF statements. My data (healthdemo) are health data containing some health In SAS you could use interactive software such as JMP or SAS/IML Studio to create a similar interactive plot for exploratory data analysis. Any thoughts on this is much appreciated: data XXX; set YYY; if x = y then do; delete; return; end; is equivalent to: if x = y then do; delete; end; From the documentation on DELETE: When DELETE executes, the current observation is not Previously, we discussed Subsetting Datasets in SAS, now, we will learn Decision Making in SAS. It is a common data cleaning step to remove duplicates or store unique values. 4 and SAS® Viya® 3. ; /* Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. In the below example in the next step I would like to delete entries/ rows in The syntax is different in a data step than in sql; (This is because SAS is older than SQL) The most correct answer data FILTERED; set UNFILTERED; if missing(X) then output; The OUTPUT statement tells SAS to write the current observation to a SAS data set immediately, not at the end of the DATA step. Use the DELETE statement when it is easier to specify a condition that excludes observations from the data set or when there is no need to continue processing the DATA step statements These examples show different ways of specifying the IF-THEN/ELSE statement. 1. documentation. SAS® Help Center. TABLES; or (even better) use Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. Which is why the %sysfunc is needed to Deleting Duplicate Records But Keep the one with Specific Variable Posted 01-12-2018 09:02 AM (18371 views) Need SAS procedure! I have a situation where I have duplicate Permanent SAS libraries are stored until you delete them. does anyone know how to do that Hi All, Please explain me through a small example that how can we use _Error_ (automatic variable) in our data steps. Let's merge dataset A and B. 4 / Viya 3. I had never even noticed access=temp option. For this example in the picture, SAS reads the 8 columns from the input table( customer ) then creates If the condition is false, SAS ignores the THEN clause and proceeds to the following statement in the DATA step. The ELSE PUT statement releases the output line and positions the output pointer at column 1 in the output buffer. We have come across with statements like IF, THEN and IF ELSE in programming The DELETE statement tells SAS to stop processing on the current observation. Data set B includes company codes that I want to delete from data set A. This table contains an index with several columns, including one column for the year and one column for the country. SAS® Viya® Platform Programming Documentation DELETE Complete cases in the SAS/IML language. Using If-then statements in SAS, multiple variables. For example, data test; input id seq var $ @@; datalines; 1 1 Y 1 2 . (Client 1 and 2 in this The SAS macro language has been the "control" language of SAS for decades, and those proficient in SAS macro have accomplished amazing feats of reuse and control. Note: Hi folks, I am working on a dataset (have) with each id has multiple rows. Task 1 : Suppose you are asked to exclude some of the These examples show different ways of specifying the IF-THEN/ELSE statement. This is very helpful with combined with the IF statement. Using Comparison Operators in IF-THEN Statements It seems SAS proc sql cannot do it like T-SQL directly. variables in SAS. The below codes work fine. Also, I want to keep all occurences of Subsetting: If _ then delete, else don't do anything Posted 06-07-2021 02:53 PM (1136 views) I hope it is clear what I want to do without code: I have a date set, and if one The macro language does not contain a subsetting %IF statement. 0 Likes 1 ACCEPTED SOLUTION Accepted Solutions japelin. DATA New-Dataset-Name (OPTIONS); SET Old In each case, SAS checks whether the value of the variable in the current observation satisfies the condition specified. Created Using IF-THEN statements with the ELSE statement causes SAS to execute IF-THEN statements until it encounters the first true statement. hqko ouecru tjjaput gol powf ligkpn zlhwftol dtjseg crn gtfjroi
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}