Pandas explode all columns python. name, row['date_end'], freq='H'), axis=1) df = df.

Pandas explode all columns python. See explode() documentation.
Pandas explode all columns python The data has multiple columns to perform this function on. explode function does the same thing that pandas explode() function does, and we can make use of the apply() function alongside the function to explode the entire Dataframe. 9. Feb 20, 2024 · Introduction Pandas, an open-source data manipulation and analysis tool in Python, continues to be an indispensable tool for data scientists and analysts. Explode a DataFrame from list-like columns to long format. Scalars will be returned unchanged, and empty list-likes will result in a np. 0 2 3 Jan 5, 2021 · ds. loc[df. A will have the same |s as B) but rows can have different lengths from one another (e. cs95. explode, you can transform each element from the lists to a new row: new_dates = df. 0 1 0 [1,2,3] 1 1 [2,2,1] 1 2 [1,2,1] 1 The last column is the label and each of the arrays under column '0' are supposed to be different datapoints for a given class. pop('value')], index=s. columns: explode_columns = df[x]. The end result would be a Dataframe of mentions per date, which should be easy via GroupBy if I can break out the mentions, wh Jan 1, 2020 · Now you can apply this function row-wise and, with pandas. Pollutants. As you can see the people column had series of people, and I was trying to explode it. explode() generate. loc[~explode_columns]]) Sep 24, 2017 · If you already have your data in acList column in a pandas DataFrame, simply do: import pandas as pd pd. Series(json. Aug 12, 2019 · To get all column name you can iterate over the data_all2. Dataset: . However pandas isn't reading the data as such, rather as a string that happens to include commas. Then cast it to a DataFrame constructor to build the preliminary DataFrame. ndarray. g. Has anyone idea on the reason why it does not work anymore? I have already looked at other questions (e. Before I have researched this problem and found out that Pandas' explode function does not work on multiple columns, however, I have seen a few questions submitted on StackOverflow however, none of them seem to work for me. 2. concatenate(df. index. So like this: Nov 23, 2021 · The pandas DataFrame has explode method that does exactly what you want. : time data 0 1 2. Each element in this column is a list. json', lines=True) #create Multiindex from 3 columns and select unnecessaryList for Series s = df. To use explode your 'tags' column needs to be a list type. res = pd. It works with list-like object, so if the column you want to explode is of type string, then you need to split it into list. Pollutants = df. My final dataframe should be repeated for each day between start and end date of individual rows. I understand that one of the limitations of a multi-explode currently is that you can't have nonmatching element counts in the target columns, so I'm wondering what you can do to get around this or if there's something completely different I want to explode the columns based on explode when _ appear. apply(split_dates, axis = 1). Here's how you can do it: df_exploded = df. If the index to be preserved is easily accessible, preservation using the DataFrame constructor approach is as simple as passing the index argument to the constructor, as seen in other answers. explode. explode function. explode). Apr 9, 2021 · Apologies if I wasn't very clear. explode(column=('user','paid','last_active') it gives me the following error: KeyError: ('user','paid','last_active') So what I want to know, is how can I explode it with the explode function on multiple columns to get the following df: Dec 24, 2024 · The explode() function in the Python Pandas library is a highly effective tool for transforming each iterable or list-like element in a DataFrame into separate rows. I borrowed this solution from other answers (forgot where): df. add_prefix(k + '_') for k, v in j['meaning']. Each list has 6 numbers. DataFrame(df['column_name']. values),columns=['app_name','app_version']) #concat them together df_new=pd. Multi column explode in Pandas Python. tolist() for the 'APPLICABLE_DAYS' column within your . json. Series) is easy to remember and type. For example, I would like to create a dataframe df2 from a dataframe df1 that holds all columns fr May 31, 2022 · Just to narrow down the issue, note that the dataframe displayed in your question does indeed work with explode(). index)) Nov 27, 2024 · Let's learn how to split and explode Pandas DataFrame entry to separate rows. Additionally you can remove any white spaces with Pandas map function. e. How can I make it? May 10, 2018 · python; list; pandas; dataframe; Share. But items all are in a single column. patch() df_zlp_people_cnt3 = df_zlp_people_cnt2. explode('hour May 11, 2019 · #Repeat the columns without the list by the str length of the list m=df. The dataframe has several columns where each can have a single value or a list. Pandas' explode() flattens nested Series objects and DataFrame columns by unfurling the list-like values and spreading their content to multiple rows. explode(["B", "C"]) Jan 13, 2020 · An alternative method is to set_index with "movie_id" and explode the rating_all column (this creates a Series with duplicate indexes). nan], 'var2': ['1,2', 2, 3]}) I am trying to explode all the columns df. explode(column, ignore_index=False) ##개요 `explode` 메서드는 리스트형태의 값을 여러 행으로 전개하는 메서드 입니다… 09-14. For example, it can be Business or alternative. explode(). Just use df = df. read_json('sample. loads(x[1:-1]) Then, convert the dictto a pd. This removes the need to drop the column later, using pandas. Apr 14, 2014 · It took some time for me to grab what was done here but a very elegant solution. drop('apps',1). Feb 20, 2024 · In this method, we will see how we can unnest multiple list columns using the pandas. DataFrame([*s. repeat(df. Jun 22, 2022 · ## Iterable of all column names in dataframe cols = dfx. Oct 2, 2012 · import pandas_explode pandas_explode. explode('user') it works for that one, and same for the other columns, but when I try to do df. I've hopefully attached an image below of what I'm trying to achieve. I have a bad solution that works by working on each row independently and then appending them to each other, but this ta Nov 23, 2023 · The dictionaries in the column have exactly the same set of keys and all the values have the same format between rows. apps. apply(lambda row: pd. Explode Column The df. Example: Input Data Name Value abc V1\\nV2\\n def V1\\nV2\\n\\V3 Output Jan 15, 2022 · python; pandas; Share. 25, use explode:. Specific explode column. Hot Network Questions Aug 26, 2021 · Explode the dataframe on value column, then pop the value column and create a new dataframe from it then join the new frame with the exploded frame. eval() the column before performing the second . s = df. explode を使用して Pandas で複数の列を分解する ; アクセスできるデータには、文字列から配列やリストまで、さまざまなデータ型を含めることができます。 Apr 4, 2021 · In effect, for certain indices in the df the column value is a list. What is the best way to make the dataframe explode? Mar 3, 2018 · when I do df. I am now working on enhancing it accept multiple such columns with nested data frames and explode them in one go. explode('lists') line applies the explode() function to the 'lists Feb 3, 2020 · I have to expand a pandas dataframe based on start date and end date, into individual rows. Specifies whether to ignore index or not. pandas: How do I split text in a column into multiple rows? But the works on only one column. tolist()) However, you probably want the additional step of extracting your values from the dictionaries they are contained within: Jul 21, 2021 · At a dataframe how to explode a column with a list (with same length at all rows) into different columns at the same row 2 pandas: convert a list in a column into separate columns Nov 2, 2022 · Need to explode the data on multiple columns in pandas input dataframe: df SRCA SRCB SRC_CNTA SRC_CNTB A,B G,H 1 1 E,C,D Z,Y,K 2 2 code that is used for this i Apr 29, 2021 · I have a dataframe that contains 1 single array per column that i need to explode to multiple rows per column. json_normalize(df. explode() And (finally) get the desired dataframe: Jan 26, 2022 · I have a large dataframe a that I would like to split or explode to become dataframe b (the real dataframe a contains 90 columns). 5 which supports explode() only on 1 column. len())]. applymap(str) I am able to save that into parquet. Oct 7, 2020 · If you want the "opposite" of explode, then that means bringing it into a list in Solution #1. 3. apply(lambda x: type(x)==list) df= pd. explode('people') Above is a sample of my data. Let's say, we know that any NA is only in a row with lists and each list has only 2 elements. core. DataFrame({'var1': ['d,e,f', '', np. json_normalize to explode the dictionaries (creating new columns), and pandas' explode to explode the lists (creating new rows). If your values are strings that look like lists, then as suggested by @Ynjxsjmh, it may be necessary to convert them to list values first. Take the DataFrame below: Feb 2, 2024 · Use Series. Pandas Explode on Multiple columns. Use the explode() Function to Explode Multiple Columns in Pandas. e. Instead of separating the rows where the lists in columns B and C have the same length, you can use the explode method on both columns at the same time, and it will automatically take care of rows where the lists have different lengths. nan for that row. specify a non-empty list with each element be str or tuple. Apply a function to convert your string tags separated by commas to a list then go with option 1 df. Aug 8, 2022 · I'm having trouble turning a column of lists of lists into separate columns. I've checked the documentation and asked ChatGPT but can't find any answers. But s Feb 14, 2018 · This question is similar to Split (explode) pandas dataframe string entry to separate rows but includes a question about adding ranges. The code I have given works for list type data. split() documentation. DataFrame(np. columns = data_all2. Is there an easy column-wise explode already implemented in panda pandas. We can split these strings into separate columns as follows: Python Apr 11, 2016 · I have a pandas. Each row will be the same | delimited length (e. Jul 5, 2021 · The pandas explode method creates new row for each value found in the inner list of a given column ; this is so a row-wise explode. In one row, several columns can have lists but it is guaranteed that all the lists in that row are the same length. Follow asked Jan 15, 2022 at 16:02. Apr 1, 2022 · You have to split your dataframe into to parts for each column, the one to explode and the one to leave alone and then recombine them. loc[explode_columns]. concat([df. The Series. items()], axis=1) # The output is super wide and hard to read in console output, # but hopefully this confirms the output is (close to) what you need res adjective_definition \ 0 . io. explode to expand these columns into separate rows but first I need to get pandas to recognize the data as a list Jul 3, 2023 · Today we are taking a look at how you can apply the explode function to a column within a Python Pandas DataframeDataframe Code: df = pd. DataFrame. acList[0]) Alt AltT Bad CMsgs CNum Call CallSus Cou EngMount EngType Sqk TSecs TT Tisb TrkH Trt Type VsiT WTC Year 0 NaN 0 False 1 7503 NaN False United States 1 3 Sep 21, 2013 · I want to be able to use groupby in pandas to group the data by a column, but then split it so each group is its own column in a dataframe. Full code example: Now, we can expand this dataframe vertically very easily via df1. The final data frame should look like, Feb 4, 2021 · I have a dataframe that looks like this: I need to replace "European Union" and split (explode) into the countries that are member of it like the following example: I have tried to repl Jun 15, 2018 · I have the below 3 columns of a pandas dataframe. reset_index(drop=True) #creating a df exploding the list to 2 columns n=pd. label value position a 1 0 a 2 1 a 4 2 b 3 0 b 5 1 Aug 11, 2022 · Pandas Dataframe explode List, add new columns and count values. It uses pandas' pd. Simple to use: Dec 30, 2021 · #explode team column and reset index of resulting dataFrame df. Added in version 1. columns. explode the pandas nested array in python. 리스트 형태의 값 전개 (explode) - [Python 완전정복 시리즈] 2편 : Pandas DataFrame 완전정복 Feb 2, 2024 · We can use the explode() function with the Pandas library, which will be explained in this topic. Nov 29, 2024 · In this article, I will explain how to explode single and multiple columns in pandas DataFrame by using explode() function. Tried several options how to do so but nothing worked. The result needs to be expanded for each date while the other columns except 'startdate' and 'enddate' is preserved. 0' So in higher version of pandas explode() is working fine. explode (' team '). This function converts the list elements to a row while replacing the index values and returning the DataFrame exploded l Feb 19, 2021 · I assume because there are ways to go about it without importing anything, and df. Also, the key (office, mobile, personnel) are not same always. series. Hot Mar 27, 2022 · I must use pandas 1. I want to change this column into 6 columns, for example, the [0,1,2,3,4,5] will become 6 columns, with 0 is the first column, 1 is the second, 2 is the third and so on. agg groupby function: Mar 23, 2022 · I am trying to explode rows for each '\\n' new line delimiter in row. Python Add Column to Pandas Dataframe That is a Count of List Elements in Another Column. This answer inspired me to create a function out of this to explode such columns in the data frame which store nested data frames. explode() method, covering single and multiple columns, handling nested data, and common pitfalls with practical Python code examples. 25. columns ## Looping through every column to split and make cross join for col in cols: ## Exploding a column into various columns using ',' as a separator dfx2 = dfx[col]. explode() to unnest a column of lists such that each element gets its own row. Specifies the column to explode: ignore_index: True False: Optional, default False. 3 / 3 (the corresponding number of items in the to_explode column). Starting with j as your example dictionary:. DataFrame(list(df['Sub_Marks'])) will expand list of dictionaries into a dataframe where the column names in this frame corresponds to all the unique keys present in the list of dictionaries, generally you should avoid using apply + pd. DataFrame that looks like this:. 1. explode(['col2', 'col3']). explode('tags') Jun 5, 2020 · I am trying to run python script in which I am using explode() to split row into multiple rows but the condition is this we can use explode() in the higher version of pandas means pandas version should be greater than or equal to '0. df. Improve this question. Oct 6, 2016 · It takes a dataframe that may have nested lists and/or dicts in its columns, and recursively explodes/flattens those columns. Or you can store all column names to another list variable and then print list. . Apr 30, 2021 · pd. See str. So I wanted to convert them to rows and not columns. The code becomes json. date_range(row. name, row['date_end'], freq='H'), axis=1) df = df. iloc[0,2] is assuming that there is a third column, it should be completely dynamic in the sense that the code should check whether a column contains a list, so it shouldn't assume there will always be 3 columns as it can vary each time Jun 14, 2020 · I have a dataframe df like so: Col1 Col2 Col3 StartDate EndDate Qty 24HR A1 B1 1/5/2020 2/28/2020 4. row 1 is length 3 and rows 2 is length 2). 3. There are some rows where there may be an NaN here and there (e. explode does help with exploding/unpacking, but the second part where all the exploded rows have a different value in a new column (day) is what I am unable to get. 0 1 2 3. I was trying to do the following manner : Code: Sep 20, 2019 · I have pandas dataframe in which a column contains paragraphs of text. Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. But, those of you who know about explode, know that my value_counts would then be inflated because of the repetition of values that explode causes when applying it to multiple columns. With the explode() function, Dataframe cells with list elements are transformed to rows while replicating the index values and returning a Dataframe with the exploded lists. Jan 4, 2018 · Assuming you are on pandas v0. Sep 22, 2017 · As the title, I have one column (series) in pandas, and each row of it is a list like [0,1,2,3,4,5]. Nov 9, 2018 · I know object dtype columns makes the data hard to convert with pandas functions. Jun 3, 2021 · I'm using DataFrame. One solution is to use the json. 2 asd A2 B2 5/5/2020 7/15/2020 35 I want to May 25, 2021 · Multi column explode in Pandas Python. Series because that is more computationally expensive operation :) Dec 14, 2022 · Yes, there is a better solution. I'm not sure if one can interpolate directly a datetime column, but you can change the type to int64, mask the values if same than previous row with shift and interpolate. loads() function from the json module. Restandsleep explode handle multiple columns since pandas 1. set_index(['column-3']). If the array-like is empty, a missing value NaN will be placed for that row. Two of which are list of dictionaries so i want to explode these two columns only for actor and name key in the dictionaries. label a 1 a 2 a 4 b 3 b 5 What I need is a new column to represents the position of the item in the value column in the original list. split(pat=',', expand=True). str. Provide details and share your research! But avoid …. 0. For example for "Column A" like this. See explode() documentation. append(x) df = json_normalize(mylist) df1 = df. Asking for help, clarification, or responding to other answers. set_index(['a','b','index Feb 14, 2022 · From pandas docs pandas. . Most of the questions are to convert to columns so not able to find a solution for rows. I used below code: The issue is not with null values but with the different indexes of exploded columns. Make sure both col2 and col3 have the same number of elements in cells in the same row. Oct 12, 2021 · In the event that the data is present in the 'name' column but missing from the 'business' column then I would like to output the name into a separate row while keeping the matching business value empty for that row. expl Oct 22, 2021 · I am trying to apply the Python explode function to unpack a few columns that are | delimited. What I'm wondering is how to create a new 'index' column that will correspond to the index of the element in the original list. This function simplifies the process of dealing with nested data structures by flattening them out across multiple rows, thereby making data more accessible and easier to analyze. But, what's the most elegant way to expand in a horizontal direction and change the column names? But, what's the most elegant way to expand in a horizontal direction and change the column names? Mar 11, 2022 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Import Pandas The import pandas as pd line imports the Pandas library, which is essential for working with DataFrames. reset_index() Feb 14, 2024 · Learn all you need to know about the pandas . The desired output would be something like this: Jun 21, 2023 · explode() 関数を使用して Pandas で複数の列を分解する Series. Is there a way to explode dynamically? output schema might be Apr 19, 2021 · Require some assistance in splitting a field based on regex in Pandas & creating a Dataframe. explode('Column A') but when i use similar query for column B then it repeats the values of column A, but i really want that only ID should duplicate. explode(column=[x]), df. Syntax: df=df. This routine will explode list-likes including lists, tuples, sets, Series, and np. Among its vast array of features, the explode() method introduced in version Feb 11, 2020 · If I convert the columns to strings with astype(str) then these columns cannot be used with . concat([json_normalize(v, meta=['definition', 'example', 'synonyms']). 0): column: String Tupl: Required. concat([m,n],axis=1) Jul 3, 2024 · I have a dataframe with one row like below: col1 col2 col3 [a,b,c] [i,ii,iii] [1,2,3] Now I need to transfer it into - col1 col2 col3 a i 1 b ii 2 c iii 3 I have tried to use explode. join(pd. I'd like to expand the contents of this column out so that there is a new column for each of the keys in the dictionary. (Example in the MRE below) What I ultimately want to do is use df. I can get the values into their columns post-explode, no problem. I wanted to explode the dataframe into separate rows by splitting the paragraphs of text into newlines. Input dataframe: Column_1 Column_2 Column_3 Column_4 Column_5 Column_N text text text Sep 26, 2022 · I'm trying to use the explode function in pandas on 2 columns in a CSV that have varying element counts. Aug 23, 2022 · I want to call pd. I have a DataFrame: Jan 17, 2023 · I even tried setting the time column to an index, but even after doing that, I still lose the hour after I explode – MathMan 99 Commented Jan 17, 2023 at 20:30 I'm trying to explode a column in python. pop is used to remove the specified column from the existing dataframe. If True the original indexes are ignored, and replaced by 0, 1, 2 etc. When I receive data like this, the first thing that came to mind was to "flatten" or unnest the columns. – Mar 10, 2022 · How to split a pandas column with a list of dicts into separate columns for each key. explode items to separate rows; convert dict to pandas columns with pd. split('_')). 1 and Python 3. In this example, the values in the numbers column for the first row would be replaced with 1 - i. Let's say we have a DataFrame with a column of strings containing comma-separated names. 8 Nov 12, 2020 · To get everything out of the lists, I am trying explode. assign(var1=df['var1 Oct 27, 2022 · The canonical way to explode a column of dictionaries is: new_df = pd. Let's have a quick look. In the Jun 5, 2017 · I need to explode to get a dataframe like this, exploding 200 rows into ~4,000: col1 col2 a b a c d e d f d g I don't see any explode functionality in pandas and haven't been able to figure out how to do this having the columns of comma-separated values uneven in length - not sure how split would work here. How do I make it work on multiple columns? I'm using Pandas 1. drop. json_normalize; join original df with json_normalize'ed columns and drop the original items column Jan 16, 2019 · Kind of a messy solution, but I think it works. So if I try to pd. DataFrame({ 'card': Use reset_index and join to be able to get the column 'Time' associated. The result dtype of the subset rows will be object. explode('value', ignore_index=True) s. df['hour'] = df. So try to get your comma separated text data into list format. rename ####DataFrame. A B C 1129 19-APR-2021 Zip Code Details: City: Huntsville_Alabama , Zip: 35808 , 801thru816 City: phone or mail can have 1 or many items. df['Column A']. index}) If the 'Pollutants' column is strings For multiple columns, specify a non-empty list with each element be str or tuple, and all specified columns their list-like data on same row of the frame must have matching length. Unfortunately, as stated in other answers, it is also very slow for large numbers of observations. , Pandas explode multiple columns), so please do not treat this question as a duplicate, as it is not. Nov 29, 2024 · By using Pandas DataFrame explode() function you can transform or modify each element of a list-like to a row (single or multiple columns), replicating the index values. Is there an alternative method of coding this problem in order to do so? Such as something different from using the explode method. Apr 9, 2021 · For each account I have a grade. To make it possible to explode all columns at once, we need to replace NaNs with some iterables of the same length as any list in its row. Follow edited Jan 29, 2019 at 9:52. explode on the list-like column, but I want to divide the data in the other column accordingly. The advantage: faster than the apply solution. What I have is a true list, but I see your point - thank you! – Feb 23, 2018 · I have a DataFrame where each row has two columns: date, and mentions. Oct 6, 2021 · Convert all rows of a Pandas dataframe column to comma-separated values with each value in single quote 0 explode a pandas dataframe using two comma separated columns Nov 19, 2020 · I have a dataframe below df = pd. I would like to create views or dataframes from an existing dataframe based on column selections. Nov 11, 2024 · I am attempting to use python to loop through rows in an excel spreadsheet and separate data in a row into multiple rows if the column in question has multiple newlines or carriage returns. for x in df. columns for col in columns: print col You will get all column names. I tried to look up for solutions to a problem similar to this but I did not find since it is not related to the values in cells but to the column names. Apr 29, 2020 · Since the "Data" column is a string and we actually want a JSON, we need to convert it. Explode yields this for example: Dec 23, 2017 · You can use: df = pd. Series. Original dataframe is as below. loads(x[1:-1])) Add these new columns to the existing dataframe using join. Nov 15, 2017 · Python Pandas: converting several boolean columns into a (possibly repeated) column made up of the boolean column names 11 Pandas - create boolean columns from categorical column Mar 12, 2022 · Python Code I tried, mylist = [] myresult = collection. Series using pd. 0: Multi-column explode Dec 7, 2019 · Dynamically explode columns in Pandas row. I have always used explode as in the example above (and to be honest it worked until a few days ago). The paragraph of text may contain multiple new lines or carrier return characters as shown below. frame. fillna({i: {} for i in df. Splitting Strings into Columns . As a note, if the column has any NaN, they must be filled with an empty dict. 0. Create DataFrame The data dictionary defines a sample DataFrame with a single column named 'lists'. Then you need to change the values in the column 'Time' to create the interpolation. find(query) mylist = [] for x in myresult: mylist. 402k 104 How to explode a list into new columns pandas. May 17, 2020 · Split (explode) pandas dataframe string entry to separate rows. Exploding a data frame row by row and storing the exploded values in a new dataframe. the arrays are nested (twice) and varying length (6-12 arrays contained in each) I'm trying to either; explode the top level of each nested array or; explode everything and have a multi-index; example data: Nov 7, 2017 · More general approach for similar situations. T ## Renaming the obtained exploded result to match the original column name dfx2. This will explode all the columns with lists in your dataframe. You can also join as a string in Solution #2: Use lambda x: x. apply(pd. explode to Explode Multiple Columns in Pandas. In the example I'm calling this column 'cycle'. explode() I get UndefinedVariableError: name 'nan' is not defined . reset_index (drop= True) team position points 0 A Guard 7 1 B Guard 7 2 C Guard 7 3 D Forward 14 4 E Forward 14 5 F Forward 14 6 G Center 19 7 H Center 19 8 I Center 19 Jan 8, 2022 · Have got a df which looks like this: Item Match a bb,cc b dd,ee want to expland the column 'Match' as below: Item Match a bb a cc b dd b ee tried df. nswvmrks qsbbwdf itq rzo zqyt exzdq cxzck wdqie tzwxxc lee
{"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"}