Skip to content

Instantly share code, notes, and snippets.

@ohmeow
Created May 14, 2024 21:30
Show Gist options
  • Save ohmeow/7a033626393254bebf7d79da4a8afc47 to your computer and use it in GitHub Desktop.
Save ohmeow/7a033626393254bebf7d79da4a8afc47 to your computer and use it in GitHub Desktop.
Using GPT-4o with Instructor and pgvector
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import json\n",
"import os\n",
"\n",
"import pandas as pd\n",
"import psycopg2\n",
"from dotenv import load_dotenv\n",
"from openai import OpenAI\n",
"from psycopg2 import extras\n",
"\n",
"load_dotenv(\"../../.env\")"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"POSTGRES_USER = os.getenv(\"POSTGRES_USER\")\n",
"POSTGRES_PASSWORD = os.getenv(\"POSTGRES_PASSWORD\")\n",
"POSTGRES_HOST = os.getenv(\"POSTGRES_HOST\")\n",
"POSTGRES_PORT = os.getenv(\"POSTGRES_PORT\")\n",
"POSTGRES_DB = os.getenv(\"POSTGRES_DB\")\n",
"\n",
"DSN = f\"postgres://{POSTGRES_USER}:{POSTGRES_PASSWORD}@localhost:{POSTGRES_PORT}/{POSTGRES_DB}\""
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"conn = psycopg2.connect(DSN, cursor_factory=extras.DictCursor)\n",
"cur = conn.cursor()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"oai_client = OpenAI()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Load Data\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"# cur.execute(\"DROP TABLE IF EXISTS fortune_100\")\n",
"# conn.commit()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"def read_csv(fpath: str) -> pd.DataFrame:\n",
" df = pd.read_csv(fpath)\n",
" df.columns = df.columns.str.replace(\" \", \"_\").str.lower()\n",
" df[\"market_cap\"] = df[\"market_cap\"].replace(\"-\", 0).astype(float)\n",
" return df"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"100\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>company</th>\n",
" <th>rank</th>\n",
" <th>rank_change</th>\n",
" <th>revenue</th>\n",
" <th>profit</th>\n",
" <th>num_of_employees</th>\n",
" <th>sector</th>\n",
" <th>city</th>\n",
" <th>state</th>\n",
" <th>newcomer</th>\n",
" <th>ceo_founder</th>\n",
" <th>ceo_woman</th>\n",
" <th>profitable</th>\n",
" <th>prev_rank</th>\n",
" <th>ceo</th>\n",
" <th>website</th>\n",
" <th>ticker</th>\n",
" <th>market_cap</th>\n",
" <th>description</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Walmart</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>572754.0</td>\n",
" <td>13673.0</td>\n",
" <td>2300000</td>\n",
" <td>Retailing</td>\n",
" <td>Bentonville</td>\n",
" <td>AR</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>yes</td>\n",
" <td>1</td>\n",
" <td>C. Douglas McMillon</td>\n",
" <td>https://www.stock.walmart.com</td>\n",
" <td>WMT</td>\n",
" <td>352037.0</td>\n",
" <td>Walmart is a multinational retail corporation ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Amazon</td>\n",
" <td>2</td>\n",
" <td>0</td>\n",
" <td>469822.0</td>\n",
" <td>33364.0</td>\n",
" <td>1608000</td>\n",
" <td>Retailing</td>\n",
" <td>Seattle</td>\n",
" <td>WA</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>yes</td>\n",
" <td>2</td>\n",
" <td>Andrew R. Jassy</td>\n",
" <td>www.amazon.com</td>\n",
" <td>AMZN</td>\n",
" <td>1202717.0</td>\n",
" <td>Amazon is a multinational technology and e-com...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Apple</td>\n",
" <td>3</td>\n",
" <td>0</td>\n",
" <td>365817.0</td>\n",
" <td>94680.0</td>\n",
" <td>154000</td>\n",
" <td>Technology</td>\n",
" <td>Cupertino</td>\n",
" <td>CA</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>yes</td>\n",
" <td>3</td>\n",
" <td>Timothy D. Cook</td>\n",
" <td>www.apple.com</td>\n",
" <td>AAPL</td>\n",
" <td>2443962.0</td>\n",
" <td>Apple Inc. is a multinational technology compa...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>CVS Health</td>\n",
" <td>4</td>\n",
" <td>0</td>\n",
" <td>292111.0</td>\n",
" <td>7910.0</td>\n",
" <td>258000</td>\n",
" <td>Health Care</td>\n",
" <td>Woonsocket</td>\n",
" <td>RI</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>yes</td>\n",
" <td>yes</td>\n",
" <td>4</td>\n",
" <td>Karen Lynch</td>\n",
" <td>https://www.cvshealth.com</td>\n",
" <td>CVS</td>\n",
" <td>125204.0</td>\n",
" <td>CVS Health is a leading healthcare company in ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>UnitedHealth Group</td>\n",
" <td>5</td>\n",
" <td>0</td>\n",
" <td>287597.0</td>\n",
" <td>17285.0</td>\n",
" <td>350000</td>\n",
" <td>Health Care</td>\n",
" <td>Minnetonka</td>\n",
" <td>MN</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>no</td>\n",
" <td>yes</td>\n",
" <td>5</td>\n",
" <td>Andrew P. Witty</td>\n",
" <td>www.unitedhealthgroup.com</td>\n",
" <td>UNH</td>\n",
" <td>500468.0</td>\n",
" <td>UnitedHealth Group is a leading diversified he...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" company rank rank_change revenue profit num_of_employees \\\n",
"0 Walmart 1 0 572754.0 13673.0 2300000 \n",
"1 Amazon 2 0 469822.0 33364.0 1608000 \n",
"2 Apple 3 0 365817.0 94680.0 154000 \n",
"3 CVS Health 4 0 292111.0 7910.0 258000 \n",
"4 UnitedHealth Group 5 0 287597.0 17285.0 350000 \n",
"\n",
" sector city state newcomer ceo_founder ceo_woman profitable \\\n",
"0 Retailing Bentonville AR no no no yes \n",
"1 Retailing Seattle WA no no no yes \n",
"2 Technology Cupertino CA no no no yes \n",
"3 Health Care Woonsocket RI no no yes yes \n",
"4 Health Care Minnetonka MN no no no yes \n",
"\n",
" prev_rank ceo website ticker \\\n",
"0 1 C. Douglas McMillon https://www.stock.walmart.com WMT \n",
"1 2 Andrew R. Jassy www.amazon.com AMZN \n",
"2 3 Timothy D. Cook www.apple.com AAPL \n",
"3 4 Karen Lynch https://www.cvshealth.com CVS \n",
"4 5 Andrew P. Witty www.unitedhealthgroup.com UNH \n",
"\n",
" market_cap description \n",
"0 352037.0 Walmart is a multinational retail corporation ... \n",
"1 1202717.0 Amazon is a multinational technology and e-com... \n",
"2 2443962.0 Apple Inc. is a multinational technology compa... \n",
"3 125204.0 CVS Health is a leading healthcare company in ... \n",
"4 500468.0 UnitedHealth Group is a leading diversified he... "
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df = read_csv(\"data/fortune_100_with_descriptions.csv\")\n",
"\n",
"print(len(df))\n",
"df.head()"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"def get_embeddings(text: str) -> list[int]:\n",
" return oai_client.embeddings.create(model=\"text-embedding-ada-002\", input=text).data[0].embedding"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"import uuid\n",
"\n",
"\n",
"def prepare_data(df: pd.DataFrame) -> list[tuple]:\n",
" \"\"\"For the timescale_vector client, the data needs to be in the following schema.\n",
"\n",
" - id is the UUID which uniquely identifies each vector.\n",
" - metadata is a JSONB column which stores the metadata associated with each vector.\n",
" - contents is the text column which stores the content we want vectorized (in this case the company\n",
" description).\n",
" - embedding is the vector column which stores the vector embedding representation of the content.\n",
" \"\"\"\n",
" uuid_list = [str(uuid.uuid5(uuid.NAMESPACE_DNS, row[\"company\"])) for i, row in df.iterrows()]\n",
" metadata_list = [json.dumps({k: v for k, v in row.items() if not pd.isnull(v) and k != \"description\"}) for i, row in df.iterrows()]\n",
" content_list = df[\"description\"].tolist()\n",
" embedding_list = [get_embeddings(description) for description in content_list]\n",
"\n",
" # Create list of tuples/records\n",
" records = list(zip(uuid_list, metadata_list, content_list, embedding_list))\n",
" return records"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"# records = prepare_data(df)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# records[0]\n",
"# len(records[0]) # id | metadata | content | embedding"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"# # Insert data\n",
"# extras.execute_values(\n",
"# cur,\n",
"# \"INSERT INTO fortune_100 (id, metadata, content, embedding) VALUES %s\",\n",
"# records,\n",
"# template=None,\n",
"# page_size=100,\n",
"# )\n",
"\n",
"# # Commit and close\n",
"# conn.commit()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Simple Vector Search\n"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['7d2b1e75-7717-5546-bab0-6593f96a895b', 'IBM, short for International Business Machines Corporation, is a multinational technology company that specializes in providing hardware, software, and cloud-based services to a wide range of industries. IBM is known for its expertise in enterprise IT solutions, artificial intelligence, data analytics, cybersecurity, and blockchain technology. The company also offers consulting services to assist businesses in adopting digital transformations and optimizing their operations. With a long history of innovation and a strong presence in the global market, IBM continues to be a leading player in advancing technology and driving digital progress across various sectors.', {'ceo': 'Arvind Krishna', 'city': 'Armonk', 'rank': 49, 'state': 'NY', 'profit': 5743.0, 'sector': 'Technology', 'ticker': 'IBM', 'company': 'IBM', 'revenue': 72344.0, 'website': 'https://www.ibm.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 42, 'market_cap': 107307.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -7, 'num_of_employees': 297800}, '[-0.015056574,-0.03039821,0.0065078866,-0.014486445,-0.02723659,0.012147623,-0.026031546,0.011953261,0.016132044,-0.018956771,0.004988624,0.020122942,0.004275963,-0.007768,-0.01609317,0.024994949,0.0138385715,-0.0060511357,0.012853805,-0.0071395626,-0.028195443,0.0146808075,0.0058017047,0.020861518,-0.0048590493,-0.0114479195,0.018697621,-0.015846979,0.0068350625,-0.005412981,-0.00034863676,-0.0018108056,-0.026212951,0.00730801,-0.0049983417,-0.004434692,0.0026044503,-0.015263893,0.0068998495,-0.016637385,0.021172497,0.00812433,-0.008597277,0.01671513,-0.006255216,0.009115576,0.014745594,-0.013261965,-0.011441441,-0.006770275,-0.0061126836,0.029257955,-0.013955189,0.004169064,-0.016779916,0.010333578,-0.034415025,0.01645598,0.02125024,-0.00761251,0.0051084803,0.007262659,-0.02003224,-0.010204003,-0.0155230425,-0.025694652,-0.01819228,0.018891983,-0.0042111757,0.015626702,0.0050210175,0.010255833,0.0024408624,0.037991285,0.029620763,-0.008986002,-0.02677012,0.008694459,-0.002902472,0.011059196,-0.013307316,-0.025668737,0.006611546,-0.017997919,0.016520767,0.022701478,-0.019747175,0.013670125,-0.012037484,0.010566812,-0.014149551,0.0059733912,-0.014939956,0.011940303,-0.011985654,0.021094752,0.0019792526,0.0137089975,-0.006397748,-0.02340118,0.010748217,0.0059183217,-0.0147326365,-0.009769928,-0.019280707,0.012400294,-0.011914388,-0.008901778,0.04563619,-0.005273688,-0.0021331226,0.011234121,-0.0017168641,-0.019656474,0.012154101,-0.0028214878,0.013035209,-0.026692376,0.006611546,-0.01604134,0.008098415,0.02263669,0.0067119664,-0.016481895,0.012231846,0.008649107,-0.042630058,-0.041178823,0.022183178,-0.008571363,0.01231607,-0.009873588,-0.02095222,-0.007742085,-0.009245151,-0.02928387,-0.002356639,0.019786049,0.005370869,-0.014797424,0.0076254676,0.010514982,-0.0044476497,-0.008046585,-0.03229,0.015095446,-0.0046160966,0.0146548925,0.002774517,0.0045934212,0.00449624,-0.014810381,-0.027625313,-0.0028700784,0.0196176,0.009996683,0.005872971,0.006520844,-0.008597277,-0.0011281093,-0.014434615,0.0031033128,-0.015795149,-0.0061709923,0.012853805,0.022325711,-0.00199221,-0.010450195,0.001369442,-0.012717751,0.0061385985,0.00715252,-0.03081285,0.0022286838,0.0074311057,-0.0024262853,0.009394161,0.018891983,-0.013294359,-0.0076772976,0.017337088,-0.003926112,0.011843123,-0.002615788,-0.020628283,0.009445991,0.008059543,0.012238325,0.02902472,-0.0022821333,0.015302765,0.014771509,0.0017848907,0.006307046,-0.6530562,-0.021742625,-0.00036503607,-0.02876557,-0.020822644,0.023025414,0.028454592,-0.0011799391,0.018891983,0.017531449,-0.0063362,0.0028425436,-0.0008288728,-0.009905982,-0.0147844665,-0.0147844665,0.0037187922,-0.016676256,-0.023064286,-0.015717404,-0.016779916,0.006893371,-0.0051343953,-0.024204543,-0.013410975,-0.008143766,0.019578729,-0.0052704485,-0.008059543,0.019254792,-0.012478038,0.017803555,0.035192475,-0.008558406,0.038950138,0.008798119,-0.020537581,0.018114535,0.009420076,0.014058849,-0.01047611,-0.02713293,0.016235704,0.027728973,0.009970768,0.014590105,0.01348872,0.003926112,-0.013080561,-0.03586626,0.0109490575,-0.012089314,-0.010353014,-0.01635232,-0.004360187,-0.00036564344,0.0035114728,-0.008292777,0.018671706,-0.02130207,0.010871313,0.022779223,-0.044703253,-0.014317998,-0.010165131,0.000306525,-0.00040370598,-0.006015503,0.015419383,-0.006673094,0.0073274462,0.022429371,-0.0059993058,-0.010216961,-0.0051635494,0.03444094,0.023569627,-0.013307316,-0.0017751727,-0.010612164,-0.0015524662,-0.029620763,0.013112954,-0.060433615,0.01782947,0.016598511,0.0056462153,-0.03959801,0.00025611237,-0.009258108,0.026329568,-0.0016974278,0.0033041534,-0.039986733,-0.0064625354,-0.0036248507,-0.016948363,-0.018308897,-0.00546805,0.015315723,-0.017959045,0.009549651,0.0118949525,0.03586626,0.008435309,-0.009873588,0.0031713394,0.008221511,0.026018588,-0.018308897,0.015237978,-0.017311173,-0.015639659,0.022273881,0.022170221,-0.020757858,0.017479619,-0.02923204,0.005144113,-0.025772396,0.009880067,-0.0068350625,0.009731055,-0.013028731,-0.021289114,-0.017440747,0.013955189,-0.017803555,-0.018412556,0.012076356,-0.01916409,-0.020576453,-0.0026449424,0.008396436,0.024489608,0.010035556,0.011966218,-0.01966943,-0.002167136,-0.025850141,-0.020226602,-0.02458031,0.0146030625,0.007288574,-0.010638078,-0.04032363,-0.0054550925,0.0028133895,-0.00080741197,0.005406502,-0.0066795726,-0.002202769,-0.0055717095,0.055406116,0.023491884,-0.015406425,-0.027521655,-0.0357626,0.0042144153,-0.020161815,-0.02723659,0.01226424,-0.0066860514,0.0067119664,0.017959045,-0.032108597,-0.012018048,0.009905982,-0.009899503,-0.02697744,0.022196136,-0.0011281093,0.01364421,0.014965871,-0.01517319,0.048098106,0.014240254,-0.004518916,0.012069878,-0.015419383,-0.0042338516,0.016430065,0.012147623,-0.021379815,0.03633273,-0.0062616947,0.018282982,-0.014447573,0.0010698007,-0.035062898,0.0054648104,0.026666462,0.010385408,-0.009562609,-0.007230265,0.01737596,0.0020278431,-0.015160233,0.009484864,0.003644287,0.02319386,0.013294359,0.007528287,0.015237978,0.0047651073,-0.028946975,0.014149551,-0.011253558,0.005804944,-0.00076975435,0.029568933,0.008247426,-0.013657168,-0.014266168,0.0034531641,0.03260098,0.0038354094,0.022118391,-0.002319386,0.028195443,0.011758898,-0.003398095,0.00093698665,-0.026614632,-0.015950639,0.020226602,0.03254915,0.01456419,0.014188424,-0.028376848,0.026498014,0.037654392,0.01042428,0.012989858,0.0051635494,0.019734219,0.025046779,-0.027884463,0.04281146,-0.016974278,-0.023738075,0.016157959,0.02677012,-0.024243416,0.010845398,0.01251691,0.01650781,0.020770816,-0.008986002,0.016818788,-0.04553253,0.023569627,-0.02702927,-0.00413991,0.021600094,-0.0045448304,0.026744206,0.019306622,0.029646678,0.029620763,0.01435687,0.008700937,0.0008956847,0.014279125,0.014369828,0.010340056,0.021626009,-0.010353014,0.018593961,-0.017764684,-0.005905364,-0.008681501,0.0057660714,-0.0054194597,0.027314335,0.0082409475,-0.0072691375,0.008519533,-0.0038937181,0.04174895,-0.01430504,-0.025461417,-0.008532491,0.0019581967,-0.00085681234,-0.0060057845,0.005882689,0.0025429025,-0.007547723,-0.006634222,-0.007910532,0.022273881,-0.0036604838,0.031953108,0.010113301,-0.0012163819,0.037680306,0.011149898,0.00035369827,-0.0031875363,0.020770816,-0.001088427,-0.0025283252,-0.014771509,0.026355483,-0.022869924,0.0003990494,0.00029660447,0.015497128,0.0036345688,-0.0021784736,-0.020978134,-0.006724924,-0.006151556,0.009439513,0.022701478,0.0034661216,-0.0054194597,0.020097027,0.0048590493,0.007618989,-0.014292083,-0.033508003,0.008778682,0.08733331,-0.0073404037,-0.035840347,0.0069970307,-0.012782538,-0.012925071,-0.020589411,-0.048590492,0.026329568,0.00054947747,0.014952914,-0.008195596,0.006229301,-0.011564537,0.0048817247,0.011694112,-0.0032717597,-0.0055879066,-0.005905364,-0.017492577,-0.0019808724,0.011875516,0.012322549,0.012413251,0.019267749,-0.008189118,0.022831053,0.03239366,-0.0052153794,-0.041593462,-0.011590452,0.0042144153,-0.021807412,0.0034823185,-0.0040135747,0.025772396,-0.009258108,0.02861008,-0.027936293,-0.0015467973,0.015665574,0.0253448,0.0016374995,-0.0009985346,-0.0075153294,-0.010229918,0.0060576145,0.025176354,-0.0054324167,-0.009582045,0.011240601,0.0019096063,-0.045947168,-0.02682195,-0.0032733795,0.026744206,-0.0031713394,-0.0057628322,0.0008641009,-0.036876943,-0.010722302,-0.039157458,0.0014115538,-0.029050635,0.00178813,-0.0146030625,-0.00904431,-0.0020408006,-0.0075153294,0.022157263,0.015082489,-0.037732136,-0.03254915,0.010754695,0.029646678,0.0018286222,-0.0015621843,0.004379623,-0.019539855,0.026342524,-0.020200687,-0.02718476,-0.010003163,-0.038302265,-0.002371216,0.009867109,-0.012970421,-0.006527323,-0.03311928,0.0063038063,0.009893024,-0.026277738,0.030527785,0.0397535,0.0078003933,0.027417995,0.013916316,-0.012335506,-0.0014674328,-0.02386765,0.010469631,-0.0025364237,-0.006822105,-0.020252516,0.01732413,0.016222745,-0.008953608,-0.009938375,0.021859242,0.0050307354,0.028014038,-0.024722842,0.02886923,0.0021039683,-0.0147067215,0.019591685,0.005840577,-0.0057660714,0.010735259,-0.007858702,0.0021525586,-0.034233622,0.009076703,-0.0013500059,-0.030268637,-0.00500806,0.022144306,-0.00061385985,-0.037239753,-0.0026044503,-0.00082036946,0.01782947,-0.0066212644,-0.0073598395,-0.0155489575,-0.011577494,0.0036766804,0.003654005,-0.0066212644,-0.026692376,0.0054907254,0.00955613,0.012795496,0.006258455,-0.026640547,-0.028117698,-0.010236396,0.028428677,0.018257067,0.03459643,0.0057045235,0.004227373,-0.0048266556,0.006106205,-0.0041301916,-0.026640547,-0.017544407,-0.01824411,0.04185261,0.0333266,0.0012139524,0.021120667,0.00684802,0.005422699,-0.0045707454,-0.018127492,-0.0072756163,-0.0076837763,-0.019086344,-0.004308357,0.012303112,0.011337781,0.01369604,-0.00055555126,0.0072432226,-0.0137349125,-0.0031211292,-0.00043043078,-0.024049053,-0.02182037,-0.007288574,0.007839266,0.015510085,0.025526205,-0.031512555,-0.014797424,0.019734219,0.008189118,0.034415025,0.005387066,0.0012803595,-0.007690255,0.005095523,0.024541438,-0.0043504685,-0.02677012,0.0012074737,-0.037084263,-0.001307894,0.009957811,0.020161815,0.012426209,0.0027113494,-0.037706222,-0.0013524353,0.022649648,-0.018943813,0.007450542,0.01277606,-0.00659211,-0.008208553,-0.018166365,-0.01522502,-0.0011094828,0.0110008875,0.013099996,0.00904431,0.01175242,-0.027599398,-0.03560711,0.024645098,-0.01461602,0.034233622,-0.019280707,0.045014232,0.03964984,0.017116811,0.0016763719,-0.022999499,-0.012192974,0.011046238,0.010281748,0.04747615,-0.010819483,-0.034207705,0.0017460183,-0.022753308,-0.0027842352,-0.03039821,0.017492577,-0.004450889,-0.010229918,-0.014978829,-0.024204543,-0.017466662,0.01772581,-0.021172497,0.015341638,-0.0023210058,-0.01982492,0.005412981,-0.011771856,-0.027262505,0.024049053,0.0058535347,-0.0013151827,-0.003725271,0.0066245035,-0.024360033,0.004518916,-0.007929968,0.018101577,-0.015536,2.9862906e-05,0.016637385,0.031331148,-0.01650781,0.008597277,-0.015069531,0.021781497,-0.016015425,-0.027521655,-0.016015425,-0.0002028653,0.012069878,0.000120261466,-0.0065629557,0.0032312677,0.0024149474,-0.0032733795,0.01083244,0.02886923,0.0002303999,-0.0010706105,0.0012309591,-0.03039821,0.0025671977,0.009795843,-0.005523119,-0.019604644,-0.045299295,0.0024862136,0.012983379,0.004493001,0.022157263,0.02366033,-0.009944854,0.023206819,0.006106205,0.008973044,-0.00057255797,0.008526011,-0.007282095,0.015095446,-0.012186496,-0.0078003933,0.018153407,-0.0034564035,0.016754001,-0.02156122,-0.005477768,-0.0006883653,-0.019293664,-0.018853111,-0.011830165,0.005280167,-0.002902472,0.002468397,-0.014991786,0.009264587,-0.006776754,0.010761174,0.0015467973,-0.023738075,-0.009620917,-0.0096338745,-0.0068804137,-0.0144087,-0.03254915,-0.045869425,-0.014071806,0.024994949,0.007061818,0.026290694,-0.005231576,0.00505989,-0.012069878,-0.011564537,-0.019228877,0.033948556,0.010903706,0.026640547,0.027988123,0.011687633,-0.022701478,-0.007476457,-0.014071806,-0.03192719,-0.034337282,0.023103159,-0.010398366,0.03343026,-0.002693533,-0.00041828313,-0.06193668,-0.009394161,-0.036514133,-0.02886923,0.02861008,0.0054615713,0.02018773,0.038665075,0.016313447,0.020667156,0.012387336,0.024165671,-0.018736493,0.006064093,0.025850141,-0.006530562,0.011732984,-0.00674436,0.0020375613,0.0011613127,-0.0027712777,-0.013009294,0.003249084,0.025318885,-0.003362462,-0.024049053,0.011564537,-0.011784813,0.0007017277,0.019397324,0.007495893,-0.01180425,-0.0072691375,0.0036475263,-0.026433228,-0.03918337,0.022999499,0.004169064,0.011486792,0.028325018,0.0030320466,0.019151133,-0.0046970807,-0.018477345,0.01072878,-0.004353708,-0.0033689407,0.012523389,-0.022779223,-0.012374379,-0.015095446,0.017194554,-0.0006798619,-0.014719679,-0.002262697,-0.029465273,0.008014192,-0.01661147,0.009400641,-0.00674436,-0.008377001,-0.016119085,0.012640007,-0.020887433,0.014162509,-0.020822644,0.026536888,-0.018114535,-0.013579423,0.00679619,-0.014395743,0.0045901816,-0.0026611392,-0.0062876097,-0.0047035594,0.018581003,-0.0069257645,-0.03812086,0.0004150438,0.020369133,0.011434962,0.0029364855,0.2048316,0.006893371,-0.0025623385,0.027417995,-0.017518492,0.012950986,0.032056767,0.012134666,0.0064366204,0.009523736,-0.0067897113,0.02744391,-0.0023388222,0.006316764,0.029646678,-0.029543018,-0.016313447,-0.01640415,-0.021496434,0.030242722,-0.002018125,-0.008759246,-0.011091589,-0.010819483,0.020485751,0.00796884,-0.025007905,0.026498014,0.022260923,0.01671513,-0.012037484,-0.008402916,-0.0031146505,-0.00020691451,-0.000109733526,-0.016002469,0.013462805,-0.016779916,-0.012082836,0.0005575759,-0.016585555,0.0020893912,-0.008351086,-0.011551579,0.018982686,0.021846285,-0.001712005,-0.028843315,-0.0048331344,0.0066407006,-0.03565894,-0.009530215,0.018606918,0.025331842,0.0060835294,-0.00037110987,-0.0012649725,0.027417995,0.0047229957,-0.03337843,0.0008155104,0.008545448,-0.002167136,0.0109361,-0.010204003,0.021781497,-0.006699009,0.0072691375,0.018736493,0.0021979099,-0.0009564228,-0.0038613244,-0.023219775,0.0147585515,-0.015808107,-0.028299103,0.029361615,0.03586626,-0.0016318307,0.012277197,0.004279203,0.009653311,-0.03096834,-0.011467356,-0.0138126565,0.0022205855,0.018231152,-0.011007366,-0.0018156647,-0.007904054,0.00577255,0.010800047,-0.005795226,-0.014434615,0.009776407,0.020071112,-0.017570322,-0.0015800009,0.0035276697,0.00043447997,-0.005205661,0.05374756,-0.0033786588,-0.012076356,-0.012361421,-0.006770275,-0.005257491,-0.00715252,-0.0056494544,-0.0024133278,-0.027677143,-0.040453203,0.016572597,-0.027573485,0.018321855,-0.0019614361,0.017000193,-0.020433921,0.0129185915,-0.016922448,0.020148857,-0.011758898,0.006530562,0.004415256,-0.0293357,-0.007113648,0.013786742,0.027314335,-0.02366033,-0.025111565,0.009828237,-0.014149551,-0.010923143,-0.017129768,-0.007502372,0.03182353,0.017453704,-0.0056462153,-0.03648822,0.0166633,-0.022286838,0.0035147122,-0.0054291775,-0.002167136,-0.0011062435,-0.012659443,0.009420076,0.013307316,-0.00362809,-0.009018395,-0.02560395,0.0049044,-0.02023956,-0.017583279,0.0059507154,0.008130809,-0.016650341,3.0596824e-05,-0.014123636,0.0034434462,-0.051492963,-0.0016909491,0.029646678,-0.0030741584,-0.01772581,0.017712854,-0.16253844,0.0071460414,-0.005063129,0.0017719333,0.029309785,0.0034207706,-0.0031778181,-0.01604134,0.016145,-0.0030336664,-0.01006795,-0.004531873,-0.036669623,-0.032004938,0.013799699,0.00024011801,0.0053935447,0.03112383,0.03182353,0.0066471794,0.026446184,-0.008785161,-0.012141144,-0.0075995526,0.022818094,0.010301184,-0.027806718,0.0069192857,-0.0018075663,-0.016443022,0.019760134,-0.029517103,0.025487332,0.0034758397,0.024347076,-0.026070418,-0.010469631,-0.012452123,-0.016222745,-0.009666269,0.023336394,0.037602562,0.0054550925,0.018257067,0.018814238,-0.0068998495,0.027962208,-0.021211369,0.014499403,-0.0071395626,0.035166558,-0.0147585515,0.021237284,0.0034985153,0.0110008875,0.0056170607,0.011992133,-0.008221511,-0.010242876,-0.037187923,-0.014343913,0.005769311,0.021755582,-0.016585555,0.003194015,-0.013449848,0.014991786,-0.0053838263,-0.020161815,0.014227296,0.0075671594,0.0043731444,-0.0043407506,-0.021483475,-0.021418689,-0.004253288,-0.018049749,0.01313239,-0.013527593,-0.007230265,-0.018231152,-0.0029607806,-0.015898809,-0.012108751,-0.0137089975,0.0048914426,0.003990899,-0.0019679149,-0.0068868925,-0.005633258,0.03827635,-0.04695785,-0.011713548,-0.006060854,-0.008027149,0.019591685,-0.0008681501,0.0006628553,0.0037738616,-0.008364043,0.0024975513,0.009543172,-0.013119432,-0.012089314,0.023051329,0.028739655,0.021237284,0.00012593035,0.017013151,0.012834368,-0.017052023,0.008720374,0.03311928,0.013093518,-0.021535305,0.013242529,-0.016209789,-0.017997919,-0.00362809,-0.0021460801,0.048512746,0.014421658,-0.009070225,0.004275963,-0.008979523,-0.012108751,-0.09832124,-0.021029964,0.011253558,0.008973044,0.012011569,0.024100883,-0.0035017547,0.030009488,-0.0069257645,0.029206125,-0.006559716,-0.028117698,-0.017907215,-0.025992673,0.012043963,-0.00031766033,-0.029465273,0.01987675,-0.021522349,0.011713548,-0.0022983302,-0.01527685,-0.0034078131,-0.012957464,0.008564884,-0.0043763835,-0.039831243,-0.008487139,0.037887625,0.029983573,-0.00070699165,-0.028791485,0.0073663183,-0.0021315028,0.035218388,0.02744391,-0.011460877,0.011836643,0.042215418,0.006326482,0.00023323436,-0.008137288,0.014939956,-0.034518685,0.008357565,-0.016922448,-0.005361151,0.009938375,-0.0071654776,-0.011260036,-0.025267055,0.00025530253,-0.038846478,-0.003964984,0.0055069225,0.03897605,0.00095885235,0.028428677,-0.028739655,0.011681154,0.007865181,-0.007722649,-0.02855825,0.008726852,-0.013054646,0.014538275,-0.016417107,-0.0015654237,0.030631445,-0.024606224,0.010100343,0.013281401,-0.025979716,0.007962362,-0.01348872,0.012685358,-0.012996336,-0.018412556,0.024360033,0.004551309,-0.008772204,-0.018477345,-0.007586595,-0.019889709,-0.009057268,0.006413945,-0.016728086,-0.0045642667,0.024230458,-0.029802168,0.04332976,0.017103853,0.025318885,-0.024178628,0.00044217348,-0.00095480314,-0.006699009,-0.00812433,0.012400294,0.010962015,-0.0076319464,0.0034855579,-0.07250997,0.030009488,-0.012439165,-0.0147844665,0.034959238,0.005089044,0.014123636,-0.019643515,0.012743666,0.018710578,-0.027728973,-0.0006478732,-0.0018885505,0.013462805,-0.021962902,-0.0021039683,0.030683275,-0.008130809,0.0082409475,0.0022286838,0.017116811,-0.025837183,0.020731943,0.0041820216,-0.002897613,-0.0041852607,-0.016274575,0.010825962,-0.019941537,-0.014771509,-0.0027728972,0.0036378081,0.007942925,0.04042729,-0.012147623,0.013359145,0.0026400834,0.018840153,-0.0014423277,0.06198851,-0.024917204,-0.029594848,0.025435502,-0.01772581,-0.019384367,-0.009335853,-0.008422351,-0.015561915,0.0054194597,-0.018723536,-0.004117234,0.017920174,-0.0288174,-0.030035403,-0.0050534112,-0.006828584,0.025720567,0.010320621,-0.022571903,-0.004884964,0.02682195,-0.0028652193,-0.005471289,0.012283676,0.004389341,0.017609194,-0.012730708,0.00080295786,0.013942231,-0.007865181,0.0036313294,0.007016467,0.011642282,-0.023776947,0.008357565,0.007042382,0.0031681,0.008150245,-0.014343913,0.018425515,0.011745942,-0.0030676797,-0.009219236,0.0019452394,0.032004938,0.008409394,-0.006546759,0.004946512,0.0045091975,-0.0056526936,-0.0146808075,-0.0047910223,-0.008655586,-0.0035341484,0.008344607,-0.011460877,-0.003725271,0.02324569,0.0051052407,0.023582585,0.013009294,-0.008571363,-0.0034304888,-0.025072694,-0.02923204,0.006770275,2.286537e-05,-0.016106129,-0.012322549,0.018321855,0.019151133,0.01767398,0.004175543,0.0013159924,-0.034570515,0.016896533,-0.01042428,0.008720374,-0.008273341,0.021651924,0.012536347,0.0036507656,0.012542825,-0.024593268,0.024230458,0.011979176,-0.0056235394,-0.038561415,-0.028143613,0.022610774,-0.021263199,-0.010489067,0.011376654,-0.0009288882,-0.010411322,-0.017168641,-0.003249084,0.018101577,0.0333266,0.041308396,0.03306745,0.0029089507,0.014693764,-0.007949404,0.0064107054,0.026199993,0.00015741294,-0.025914928,-0.019423239,0.0069257645,0.01318422,-0.017363003,0.007852224,-0.013890401,0.019993367,-0.01139609,0.03449277,-0.010994408,0.00833165,0.012912113,0.00582438,0.022818094,-0.01604134,-0.008901778,-0.000113681504,0.01231607,-0.0038969575,0.0029769775,-0.03817269,0.026485058,-0.02728842,-0.043770313,-0.011298909,0.01777764,-0.01425321,0.0063329604,-0.0048007406,0.027158845,0.002494312,-0.0155230425,0.017505534,-0.009115576,-0.013061124,-0.015017701,0.0006409896,-0.018969728,-0.024321161,0.0012301493]']\n",
"['390293f2-6297-554c-8a51-93d478191795', \"Intel Corporation is a leading multinational technology company known for its innovations in semiconductor manufacturing. Founded in 1968, Intel is headquartered in Santa Clara, California, and is a key player in the production of microprocessors for a wide range of devices, including personal computers, servers, mobile devices, and networking equipment. The company also provides solutions for data centers, cloud computing, artificial intelligence, and autonomous driving technologies. Intel's core operations include designing and manufacturing advanced integrated circuits and developing software products to complement its hardware offerings. Intel's products are used globally and have a significant impact on the technology industry, driving advancements in computing performance and capabilities.\", {'ceo': 'Patrick P. Gelsinger', 'city': 'Santa Clara', 'rank': 46, 'state': 'CA', 'profit': 19868.0, 'sector': 'Technology', 'ticker': 'INTC', 'company': 'Intel', 'revenue': 79024.0, 'website': 'www.intel.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 40, 'market_cap': 164460.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -6, 'num_of_employees': 121100}, '[-0.0150077185,-0.020359406,-0.000674549,-0.021445071,-0.013922053,0.01890334,-0.03995246,0.006846074,-0.007452769,-0.028074013,0.0032665737,0.03256994,-0.03315748,-0.0100200465,-0.002963226,3.1407442e-05,0.003739157,-0.01693637,0.017408954,-0.0062393793,-0.055892576,0.02062763,0.009611326,0.014432955,-0.020793673,-0.022492418,0.010907738,-0.017102413,0.00490465,-0.012536234,0.0027556724,-0.011335617,-0.024101757,0.012830002,-0.016310517,0.017907081,0.0021745225,-0.038138762,0.01820085,-0.0047992766,0.02720548,0.015288714,0.005540083,0.0072994987,-0.013487788,0.018762842,-0.017115185,0.013423925,0.003614625,0.004735414,0.00048615428,0.03282539,-0.008934382,-0.010773626,-0.016923597,-0.011207892,-0.043145593,0.002596016,0.021560024,-0.014407409,0.0076507432,0.015148216,-0.020359406,0.0155952545,-0.018801158,-0.0069035506,-0.011271754,-0.00043187104,-0.022581827,0.020717038,0.009445284,0.02684785,0.0018296643,0.055483855,0.00076515414,-0.014879993,-0.015033264,0.0011678878,0.018928884,0.009145129,-0.005600753,-0.017294,0.024817018,-0.004729028,0.013423925,0.014752268,-0.03412819,0.019593054,-0.0133472895,0.0093367165,0.01203172,0.003448582,-0.0016428662,0.02406344,-0.019056609,0.03841976,0.009873163,0.017472817,-0.008519275,-0.008027533,0.007031276,0.003860496,-0.021061895,-0.0087491805,-0.041382987,-0.0016747975,0.008276597,-0.013232337,0.0387263,-0.008800271,-0.008353232,-0.0130535215,0.0340771,-0.0070057306,0.011124871,-0.015991203,0.010384064,-0.0038381442,0.019682463,-0.02336095,0.03650388,0.01866066,-0.005552856,-0.018111443,0.01582516,-0.008844974,-0.017064095,-0.023884624,0.013858191,-0.012485145,0.007823172,-0.01977187,-0.021049123,0.012140286,-0.009394193,-0.020665947,-0.0045023155,0.02850828,-0.0038157923,-0.022428555,0.007305885,0.008206348,-0.015633572,-0.017166276,-0.0040680496,0.017600542,0.0035954663,0.036427245,0.0047194483,0.0104159955,0.013794328,0.0015806002,0.02072981,0.00080786226,0.023079954,-0.003930745,-0.015275941,0.027614202,0.029095815,-0.006884392,-0.009157902,-0.008372391,-0.028150648,0.019133244,-0.0038381442,0.02618368,0.007548563,-0.003783861,0.008583138,-0.0031963247,0.01567189,0.016246654,-0.029606717,-0.006268117,0.016348833,-0.008091396,0.0009427721,0.016182791,-0.020244455,-0.008033919,0.02406344,-0.0019094927,0.01820085,0.004824822,0.00016484542,0.0033847194,0.024076212,0.010058365,0.001820085,-0.01623388,0.0025752606,0.006846074,0.009100425,-0.02633695,-0.6555882,-0.0132451095,-0.015097126,-0.01774104,-0.0064852503,0.01936315,0.022517964,0.0026886167,0.002029235,0.00654592,0.013832646,-0.008455412,0.019682463,-0.0075357906,-0.03341293,-0.027307661,-0.0024666942,-0.022517964,-0.015748525,-0.022224195,-0.021955973,0.012849161,-0.0038956206,-0.017600542,-0.017000232,0.0071653873,0.021266256,0.012491531,-0.015735753,0.01982296,0.01744727,0.009528304,0.019950686,0.023846306,0.036784876,-0.00327296,-0.032953117,0.011527205,0.01698746,0.024280572,-0.020499906,-0.01541644,0.031573687,-0.014547908,-0.0027141618,0.015697435,-0.009617712,0.005345302,-0.011987016,-0.03675933,0.0045949165,-0.017294,-0.01567189,-0.009483601,-0.025596142,-0.002243175,0.014215821,-0.011188733,-0.0068269153,0.000328693,-0.00596477,0.0132451095,-0.03583971,-0.027639747,-0.020257227,0.006264924,-0.011444184,-0.015467529,0.013679376,0.0063990355,0.018430755,0.021036351,-0.008136099,0.0032617839,0.0025880332,0.01360274,0.030858424,0.00917706,-0.0011503256,0.010307428,-0.014586225,-0.028303917,0.0125617795,-0.045189198,0.010741695,0.009375034,0.010160545,-0.022990547,-0.008078623,0.0016412697,0.029683352,0.0123701915,0.004029732,-0.060541775,-0.0104159955,-0.00037379598,-0.017383408,-0.017230138,-0.006360718,0.013117384,0.0007962872,-0.012459599,-0.001676394,0.02568555,0.056096934,0.010364905,0.017766584,0.008717249,0.01208281,-0.027307661,0.0031707797,-0.02664349,-0.01820085,0.020167818,-0.010256339,-0.008417095,-0.0011862484,-0.025034152,0.0038988136,-0.009573009,0.017332317,-0.015097126,-0.004735414,0.013526105,-0.009854004,-0.016157245,-0.0007982829,-0.015339804,-0.024025122,-0.02139398,-0.004141492,-0.018136987,0.025034152,-0.004706676,0.020819217,0.037244685,0.0008868923,-0.04135744,-0.0058657825,-0.03325966,-0.034307007,-0.0065235677,0.015505847,0.015786843,0.0026263506,-0.009528304,-0.011520819,-0.015991203,0.005591173,-0.0022288058,-0.004872719,-0.00038197837,0.0047034826,0.02522574,0.018673433,-0.001351493,-0.014215821,-0.046236545,0.001709922,-0.018788386,-0.021125758,0.01673201,-0.0060094735,0.005920066,0.014841676,-0.015965657,-0.020436043,0.009649644,-0.011444184,-0.02305441,0.01915879,0.016182791,-0.0031372518,-0.006312821,-0.023450358,-0.0066097826,0.00020346235,0.015224852,0.0068652327,-0.009879549,0.012881093,0.0029472604,-0.019286515,0.0023980418,0.01739618,0.011342003,0.015454757,0.013909281,0.00179454,-0.008097782,0.004096788,0.008008374,0.013130157,-0.012791685,0.00047138604,0.035916343,0.0021713295,-0.011520819,-0.00015895808,-0.007835945,0.012600097,0.018916111,0.00032569942,-0.0012692699,0.008915223,-0.020142274,-0.0011998191,-0.022007063,0.025008606,0.011233437,0.030219797,0.004735414,-0.013947599,-0.0074080653,-0.0016891666,0.060439594,0.004246865,0.014100869,-0.018673433,-0.020040093,0.011718793,0.0037551227,0.011469728,-0.031292688,0.004591723,-0.003787054,0.017613314,0.023399267,0.01572298,-0.028355008,-0.01461177,0.014037007,0.015071581,0.0060797227,-0.0033879126,0.012248852,0.00021374025,-0.01165493,0.034281462,0.0015710207,-0.005830658,0.028687093,0.023118272,-0.023067182,-0.014177504,0.0026934065,0.048816595,0.005291019,-0.013008818,0.030321978,-0.028814819,0.0073122713,-0.019746326,-0.005868976,0.009400579,-0.018443529,0.024101757,0.014624543,0.03619734,0.018507391,0.009400579,-0.014177504,0.010141386,0.0049333884,-0.011955084,0.019503647,0.012274398,-0.018865021,0.0026423163,-0.0007763301,0.0010010467,0.0026790374,0.011616613,0.0050834655,0.027179936,0.008979086,0.011463342,-0.0056135254,0.0008158451,0.015761297,-0.013117384,-0.024753155,-0.0111951195,0.022249741,0.002621561,0.010103068,-0.023974031,0.005872169,0.0016540422,-0.0035954663,0.011322845,0.027103301,-0.011290913,0.01820085,0.0063351733,-0.0004689912,0.03300421,-0.0028179386,0.006114847,0.0179454,0.01461177,-0.0062872763,0.004438453,0.0003755921,0.04094872,-0.013628285,0.024025122,-0.0063224006,0.006654486,0.010218021,-0.0033336293,-0.007273954,0.0021234325,-0.015582482,0.021968745,0.0029903678,-0.005112204,0.009694347,0.020819217,-0.012108355,0.016859734,-0.014177504,-0.030781789,0.016221108,0.08950987,0.012255239,-0.02705221,0.016808644,-0.02472761,0.0057604094,-0.028201738,-0.015148216,0.017817674,-0.02583882,-0.0006306435,-0.0137432385,0.0018136987,-0.033183023,0.019593054,0.010811944,0.011731565,-0.022939457,-0.007210091,-0.010262725,-0.010703377,-0.017626086,0.028355008,-0.006450126,0.016808644,-0.022007063,0.017268455,0.030602973,0.0022543508,-0.014432955,0.009489987,-0.010460699,-0.019937914,-0.018596798,-0.0048152423,0.03180359,0.009170674,0.029734442,-0.01471395,-0.0037551227,0.0010162141,-0.005967963,-0.0007934932,-0.01203172,-0.0046013026,-0.010665059,0.0006689611,0.01551862,0.0019733554,-0.010863034,0.018839477,0.0010481455,-0.012574553,-0.033131935,-0.020563768,0.009049335,0.024331663,-0.0042085475,-0.014203049,-0.027409842,-0.0011407463,-0.041434076,0.020819217,-0.026464675,-0.0045087016,-0.014854448,-0.0018152953,-0.006063757,-0.023629174,0.019529192,0.0068141427,-0.0142285945,-0.017638858,0.0067758253,0.02886591,-0.00849373,0.017421726,0.006360718,0.00046021008,0.03969701,0.0012093986,-0.02886591,0.00960494,-0.022173105,0.008212734,0.023846306,0.0003454569,-0.01160384,0.0013251496,-0.0015510636,0.013653831,-0.016706465,0.03382165,0.027563112,-0.004633234,0.041689526,0.018213622,-0.0077273785,-0.003978642,-0.03599298,0.0005472229,-0.004291569,-0.01261287,-0.027435387,-0.0007739353,0.002669458,-0.008934382,-0.004764152,0.009247309,0.01309184,0.031726956,-0.01765163,0.010473471,-0.004387363,-0.029249085,0.037985492,0.0063798768,-0.009796527,0.0027317242,-0.0013187634,-0.0021042738,-0.027793018,0.006089302,0.012983273,-0.029811077,0.0011239824,-0.004010573,-0.0036018523,-0.019937914,-0.0033783333,-0.014982173,0.027997378,-0.015850706,-0.018532936,0.0033687537,-0.030781789,-0.0047673453,0.009566622,-0.03144596,-0.037704498,0.0068333014,-0.0035379897,0.02264569,-0.011591068,-0.022684006,-0.026975576,-0.018328575,0.020959716,0.028636005,0.028993635,-0.029811077,0.017562224,-0.00231981,0.009783755,-0.00039934102,-0.014879993,-0.027793018,-0.033183023,0.046491995,0.036171794,-0.002367707,-0.0006486048,0.0020867116,0.004917423,0.00014688405,0.008455412,-0.009317558,-0.0063224006,-0.015429212,0.0038892343,0.0063000484,0.03241667,0.0015223254,0.0055943667,-0.017102413,0.0062872763,0.0067630527,-0.011629385,-0.013475015,-0.02173884,-0.020231681,0.001171081,-0.0088513605,0.02932572,-0.01185929,0.0018440335,0.022403011,0.0047513796,0.033131935,0.0134494705,0.0059871217,-0.017472817,0.011578295,0.027997378,-0.0067630527,-0.012580939,-0.0044065216,-0.034613546,0.016055066,0.011220665,0.008819429,0.006316014,0.013973144,-0.0014688405,-0.009247309,0.039364927,-0.024076212,-0.017115185,0.0014576645,-0.0137432385,0.004812049,-0.026566856,-0.01461177,-0.0033623676,0.0028482734,0.009362262,-0.0069482545,0.016463786,-0.016221108,-0.034920085,0.0191077,-0.0033559813,0.023680264,-0.023795217,0.052035272,0.037270233,0.017830446,-0.018341348,-0.0010537334,0.007401679,0.020998033,0.01804758,0.017715493,-0.020244455,-0.012497917,0.007159001,-0.012459599,0.01059481,-0.013564423,0.0035284103,0.016604284,0.007305885,-0.021406755,-0.028738184,0.0020499905,-0.017779356,0.011801815,0.0023341791,-0.016591512,-0.010626742,-0.0042308993,-0.00030095264,-0.02209647,0.013079067,0.00369126,0.027128845,0.015084353,-0.014688405,3.8167902e-05,0.0039243586,-0.0018695785,0.021342892,-0.018213622,0.0056454567,-0.003662522,0.009764596,-0.0037966333,0.0016747975,0.003713612,0.02173884,-0.010403222,-0.021342892,0.0022080506,-0.010965214,0.025417328,-0.01592734,-0.0070185033,-0.0039690626,-0.010537334,-0.017804902,0.009905094,0.012887479,0.01860957,-0.011910381,0.007867876,-0.027639747,-0.018277485,-0.0015478706,0.01028827,0.0061563575,-0.01693637,0.0050802724,0.0070759794,0.001808909,0.02325877,0.024152847,-0.011897609,0.0067822114,-0.016361605,0.022569055,0.0070759794,0.01551862,-0.017357863,0.017255682,-0.010562879,-0.006363911,0.025085242,-0.01597843,0.0022926684,0.00039036034,-0.0037008396,-7.868076e-05,-0.0074336105,-0.018481845,-0.0019845313,0.016451014,0.0005967165,8.396938e-05,-0.011246209,0.007695447,-0.034868997,-0.0064405464,-0.0021234325,-0.012529848,0.0040744357,-0.0012381368,0.009464442,-0.012721436,-0.007612426,-0.022339148,-0.0016716043,0.009017403,0.0010960425,0.022326376,-0.008940768,0.0015798019,-0.005926452,-0.009694347,-0.032288946,0.0059136795,-0.003732771,0.020461587,0.028610459,0.009170674,-0.009898708,0.0009778965,-0.010192476,-0.04278796,-0.032518853,0.009579395,-0.0041830023,0.02315659,0.013781556,0.010051978,-0.023820762,-0.015148216,-0.065855145,-0.023629174,0.029606717,-0.003033475,0.0036273974,0.014982173,0.006890778,0.034613546,-0.011884836,0.020308318,-0.021457843,0.010275497,0.026209224,-0.015914569,0.010914124,-0.014215821,-0.009841232,-0.0134494705,0.008282984,0.0020946944,-0.018034806,0.023935715,0.01657874,-0.0068652327,0.0040712426,0.014151959,0.0028786082,0.011207892,0.03297866,-0.019401468,-0.004952547,0.0018536128,-0.024484932,-0.017779356,0.007376134,0.00014897954,0.013551651,-0.0051345555,0.013653831,0.008583138,0.0027492864,-0.018826704,-0.011565522,0.005785954,0.010620356,0.010422382,0.009119584,-0.024983061,-0.0007559739,-0.0008629438,-0.012740595,0.004869526,0.00059591816,-0.03200795,-0.014343547,-0.0018999133,0.010218021,-0.024242256,-0.017932627,-0.016221108,0.010933283,-0.005064307,-0.0006869224,-0.01039045,0.0051569077,-0.010428768,-0.010358519,0.0068269153,-0.036171794,-0.009528304,-0.0058178855,-0.028942544,0.0008477764,0.028176192,-0.028099557,-0.04115308,-0.015991203,0.010914124,-0.0021968745,0.0061850958,0.19863833,0.0021585568,0.003062213,0.025647232,-0.028942544,0.019797416,0.019912368,-0.0001793143,-0.008838588,0.0075421766,-0.018303031,0.017613314,-0.022760643,-0.0019605828,0.012957728,-0.030705154,0.0041830023,-0.021419527,-0.021202393,0.028457189,0.011342003,-0.016144473,-0.012331874,-0.022786187,0.02937681,-0.005214384,-0.022032607,0.018635117,0.02922354,0.012331874,-0.011271754,0.0006118838,0.011188733,0.0041670366,0.0061914823,-0.005942418,0.0066289413,0.016846962,0.0065778513,0.0037487366,-0.0012413299,-0.014688405,0.013334517,-0.02705221,0.019146018,0.043196686,-0.0038030196,-0.00717816,-0.031982407,-0.0064213877,-0.033055298,0.0021154496,0.007612426,0.00400738,-0.011227051,0.026873395,-0.0074463827,0.026068727,0.01673201,-0.015786843,-0.0047449935,0.019235425,-0.0031627968,0.0142285945,-0.005875362,0.022236967,-0.02411453,0.01693637,0.014739496,-0.011156802,0.0156208,0.01608061,-0.03246776,0.009885935,0.0011183943,-0.008761953,0.016221108,0.012727822,0.0021122566,0.023974031,0.0034294233,0.011265368,-0.02320768,0.022249741,-0.021049123,-0.0028722219,0.035456534,-0.02139398,-0.013219565,-0.019018292,-0.0023661104,0.013142929,0.003544376,-0.0043139206,0.011923153,0.013002432,-0.0056167184,0.02269678,0.0016843769,0.0037902473,-0.009100425,0.059877604,-0.00033028953,0.008621455,-0.0051888386,0.022415783,0.016668146,-0.015275941,-0.014688405,-0.008308528,-0.016182791,-0.012861934,0.019146018,-0.0046236543,0.00045302554,0.005833851,0.015914569,-0.04863778,0.019056609,-0.007523018,0.031829137,-0.004665165,0.00015656323,0.022185879,-0.016042292,-0.011942312,0.0075932667,0.041996066,-0.007720992,-0.014650088,0.007427224,-0.030858424,-0.01688528,-0.004527861,-0.015250396,0.018085897,0.022326376,0.01648933,-0.024152847,-0.004614075,-0.02315659,-0.0070759794,0.018673433,-0.0038668823,-0.0062968554,-0.010160545,0.0009451669,0.027435387,0.0065171816,-0.023373723,-0.0111951195,-0.0148161305,0.015684662,0.0024507286,0.026771216,-0.0043522385,-0.027026666,-0.0041861953,-0.02467652,0.0076507432,-0.043349955,-0.007063207,0.03246776,0.004776925,-0.030270888,-0.002672651,-0.15950331,0.00458853,-0.0057380577,-0.0012413299,0.031829137,0.015608028,0.010582038,-0.018647889,0.02062763,0.0015510636,0.013947599,-0.004518281,-0.037091415,-0.039262746,0.026362494,0.0037710883,-0.010843875,0.045316923,0.016144473,-0.0063224006,0.046849627,-0.033131935,0.008723635,-0.014931084,0.024446616,0.008295756,-0.0007847121,-0.022109242,-0.0026263506,-0.028636005,0.016106155,-0.043171138,0.04393749,-0.0030398613,0.017511133,-0.04013128,-0.016016748,-0.00044903412,-0.016246654,0.0231055,0.010530948,0.016195564,0.01602952,0.027435387,0.018532936,0.010575652,-0.011597454,-0.021521706,0.019350378,-0.005300598,0.042506967,-0.033361837,-0.0034741273,0.01608061,0.0037487366,0.009873163,-0.007887035,0.002607192,0.0076507432,-0.0132451095,-0.015659118,-0.003346402,0.00770822,-0.022786187,0.0184563,-0.013513333,0.004575758,0.020078411,-0.016042292,0.012593711,-0.0026024021,-0.019784642,-0.0012213729,-0.02118962,-0.015735753,0.0072164773,-0.007574108,-0.0044065216,-0.015224852,-0.00034066723,-0.00056837744,0.014394637,0.0025401362,-0.0021266257,-0.035533167,-0.01774104,0.007867876,0.02537901,0.015850706,-0.0123701915,0.025455644,-0.046900716,-0.011987016,-0.01350056,0.014330775,0.029197995,-0.0017290808,0.005099431,0.0073122713,0.00337514,-0.019899596,0.0031532175,-0.008512889,0.0070121167,0.011144029,0.024548795,-0.0151098985,0.008397936,0.02305441,-0.009464442,0.001049742,0.0054187444,0.02452325,0.023948487,-0.034588,0.00152951,-0.0151098985,-0.009138742,0.00012024136,-0.0004450427,0.036938146,0.0027812177,-0.02209647,0.0100200465,-0.015952885,-0.016476559,-0.09109366,-0.024510479,-0.0042819893,0.005252701,-0.012772527,0.020218909,0.0027381103,0.024868108,-0.01920988,0.028201738,0.01160384,-0.025915455,-0.00443526,-0.027179936,0.020895854,-0.012938569,-0.027767472,-0.00042428737,-0.035609804,0.034588,-0.020589313,-0.024229482,0.010230794,-0.026311405,-0.014420182,0.0012660767,-0.041663982,-0.012153058,0.034971178,0.026720125,-0.014113641,-0.006354332,0.02285005,-0.024778701,0.02633695,0.0075294045,-0.005993508,0.00849373,0.019631373,0.002629544,0.0028211318,0.002867432,-0.0023597241,-0.010422382,0.0012165832,0.0056199115,0.0022527543,0.012357419,0.016502105,-0.011565522,-0.013130157,-0.0064373533,-0.031573687,-0.023437586,-0.019146018,0.015914569,0.027026666,0.012989659,-0.03423037,-0.007848717,0.012344646,0.0131557025,-0.03882848,-0.004045698,7.329235e-05,-0.022965003,-0.016668146,0.0027365137,0.01541644,-0.037704498,0.018775614,0.0005815491,-0.016182791,0.015646344,-0.02163666,0.002088308,-0.0077720825,-0.0002911737,0.008813043,0.005198418,-0.023629174,-0.020895854,0.0018073125,-0.016336061,-0.004569371,0.022620143,-0.013666603,-0.00076555327,0.01719182,-0.034715727,0.028789274,0.026617944,0.0076890606,0.010946055,-0.009483601,0.0044959295,-0.013283428,-0.018686205,-0.0010728922,0.029683352,-0.008551206,-0.0076890606,-0.07326321,0.0054506757,-0.017306773,-0.018852249,0.0027876038,0.011456956,0.008793884,-0.022607371,-0.0021170462,0.014943856,-0.029683352,0.016042292,0.0029983507,0.02746093,-0.024931971,-0.009854004,-0.0059551904,0.008927996,0.008212734,0.005239929,0.017600542,-0.005003637,0.00986039,0.0148161305,-0.0056901607,3.0359697e-05,-0.020653175,0.0028243249,-0.0065906234,-0.02330986,-0.0072420225,0.007356975,-0.00859591,0.03346402,-0.006430967,0.0012525058,0.0036305906,0.012734208,0.008647,0.033540655,-0.024561567,-0.035686437,0.015263169,-0.011035463,-0.017127957,0.001955793,0.0075038592,-0.025519507,0.010556493,0.022492418,0.011923153,0.0046204613,-0.016476559,-0.012983273,-0.0047481866,0.002209647,0.027741928,0.010952441,-0.019503647,-0.028610459,0.0335662,0.0073378165,0.0022671234,0.028840365,0.016246654,0.003946711,-0.017549451,0.024344435,0.016476559,0.0006653688,0.009062108,0.013334517,0.011578295,-0.0179454,0.011080166,-0.00046300408,0.0048407875,-0.0036944533,-0.012057265,0.005677388,-0.0016348833,0.014777813,-0.002096291,0.009094039,0.04171507,6.9999434e-05,-0.0004661972,-0.0046236543,0.0033048913,0.008966314,-0.0076826746,0.016463786,-0.022019835,-0.01820085,0.010460699,-0.005096238,-0.016195564,0.011112098,-0.00012792484,-0.0062457654,0.025672778,0.0064852503,0.013334517,-0.032340035,-0.042762417,0.0039882213,-0.020218909,-0.0020867116,-0.02290114,0.01466286,0.011444184,-0.0005635877,0.009368648,0.008404322,-0.039569285,0.010486244,-0.0039754487,0.0077784685,-0.014841676,0.024817018,0.0068716193,-0.0024666942,0.02139398,-0.019899596,0.0073122713,0.0029807882,-0.0039754487,-0.020423269,-0.0040329252,0.019388694,-0.00717816,-0.0066225547,0.015250396,-0.0067822114,-0.021342892,0.0073186574,-0.0046428135,-0.007574108,0.016093383,0.03665715,0.033540655,-0.01840521,0.01597843,0.020308318,0.017140731,0.016923597,-0.002198471,-0.049685128,-0.007567722,-0.00024148058,0.009956184,-0.003713612,-0.01592734,-0.00242678,0.018328575,-0.009822072,0.0096368715,-0.02578773,-0.0059615765,0.018737296,-0.01028827,0.012944955,-0.004470384,-0.029351266,-0.0027955866,0.031982407,-0.0014009865,-0.0101158405,-0.05865144,0.024203938,-0.001591776,-0.04140853,-0.012351033,0.0032585908,0.025800504,-0.00543471,-0.0051824525,0.03887957,0.0037774746,-0.011610227,0.032442216,-0.010467085,-0.023322633,0.011776269,0.0042053545,-0.012478759,-0.015748525,-0.007210091]']\n",
"['8bc636b5-95d7-58d7-88a3-d3c4faaed252', \"Amazon is a multinational technology and e-commerce company based in Seattle, Washington. Founded by Jeff Bezos in 1994, Amazon started as an online bookstore and has since expanded to become one of the largest and most diverse tech companies in the world. Amazon's core operations include e-commerce, cloud computing, digital streaming, artificial intelligence, and logistics. The company is best known for its e-commerce platform, where customers can purchase a wide range of products and services. Additionally, Amazon Web Services (AWS) is a leading cloud computing service provider, while Amazon Prime offers digital streaming services, fast shipping, and other membership benefits. Amazon's focus on innovation, customer obsession, and operational efficiency has helped it become one of the most valuable and influential companies globally.\", {'ceo': 'Andrew R. Jassy', 'city': 'Seattle', 'rank': 2, 'state': 'WA', 'profit': 33364.0, 'sector': 'Retailing', 'ticker': 'AMZN', 'company': 'Amazon', 'revenue': 469822.0, 'website': 'www.amazon.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 2, 'market_cap': 1202717.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 1608000}, '[0.0020906043,-0.03447466,-0.0036968386,-0.024924753,-0.013699865,0.029699707,-0.022762276,-0.0040155854,0.0038905866,-0.03337467,-0.009306158,-0.009906152,0.0036937136,-0.011743634,-0.0028999713,-0.010587395,0.016737334,-0.026974734,-0.029849706,-0.02432476,-0.055849448,0.009949902,-0.0015515472,0.007606175,0.008306168,-0.0013234244,0.012693625,-0.026674736,0.023862265,-0.009949902,-0.016037341,-0.025137251,-0.025924744,0.020562297,-0.021124791,0.024049763,0.013799864,-0.004384332,0.013749864,-0.021712286,0.01707483,0.022112282,-0.014599856,-0.0053405724,-0.018512318,0.005203074,-0.0057124435,-0.024687257,-0.0022718527,0.0154748475,0.02119979,0.04357457,-0.014324859,0.0037280882,-0.017949823,0.011406138,-0.03817462,0.007306178,0.028749716,-0.022899775,-0.0032780927,0.030499699,-0.017449828,-0.013537367,-0.0024281011,-0.0107123945,-0.029824706,0.020062301,-0.0045155804,0.012099881,0.020062301,0.013287369,0.005240573,0.027674727,0.014562356,0.0032218432,-0.017037332,0.016749835,0.0062343134,0.006899932,-0.0066374345,-0.020987293,0.015712345,0.0007683518,0.008893662,0.005874942,-0.016724834,0.008018671,-0.011831134,0.008712414,0.0038843367,-0.025199752,-0.002124979,0.015599846,-0.01936231,0.0100249015,-0.000115721516,0.024687257,0.010599895,-0.052299485,0.011268639,-0.0056936936,-0.028499719,-6.225525e-05,-0.043949567,0.011437387,-0.009087411,-0.0007777267,0.03357467,0.0019890429,0.021112291,-0.018062321,0.018674815,-0.021824785,-0.0035905896,-0.030224701,-0.004274958,-0.0051186997,0.012787374,-0.03832462,0.0138873635,0.050024506,0.01617484,0.0021015417,0.013362369,0.0066561843,-0.021974783,-0.012331128,0.014662355,-0.013949863,0.0068311826,-0.012662375,-0.009406157,-0.014274859,-0.02441226,0.006893682,-0.012962372,0.01723733,-0.0073686773,-0.016162341,0.021849785,0.015074851,-0.008931162,-0.0101124,-0.02834972,0.025112253,0.013899863,0.021737285,0.034949657,0.040349603,0.019862304,-0.008587415,-0.03369967,0.010306149,0.017024832,-0.009243659,0.005690569,0.034049664,-0.003198406,-0.017362328,-0.0055405702,0.024949754,-0.010256149,-0.010668645,0.014562356,0.031974684,0.014249859,-0.015112351,0.0060436903,0.007699924,-0.014587356,-0.0048062024,-0.035374653,-0.0010734269,-0.0036280893,0.0047030784,-0.0044124564,0.027949724,-0.010912392,-0.010568646,0.042624578,0.0019202936,-0.0007738205,0.0112936385,0.001918731,-0.002137479,-0.0006964775,0.008674914,0.035824645,-0.0054405713,-0.008012421,-0.003962461,-0.012681125,-0.0030359076,-0.65679353,-0.0086499145,0.011256139,-0.031349692,0.0013148307,0.013962362,0.009493656,0.0134623675,-0.0035624648,0.026624737,-0.0062436885,0.012018631,-0.012399877,-0.0057218187,0.0009031161,-0.006756183,0.0073499274,-0.022124782,0.011256139,-0.007949921,0.0031390316,0.02231228,0.0020202927,-0.024812255,-0.011381138,0.017049832,0.016624836,-0.012737375,-0.00406246,0.026549738,0.00507495,0.01726233,0.029149713,0.038874615,0.03854962,-0.009999901,-0.016524836,0.033074673,0.006393687,0.0141498605,-0.013587366,-0.028074723,0.0061218147,0.004346832,-0.0016702961,0.0028140347,0.0068249325,0.0015913906,-0.011262389,-0.018562317,0.0025671623,-0.01628734,0.008424917,-0.027674727,0.0037937125,0.010849893,-0.0035812147,0.0014163923,-0.00101874,0.00024452884,-0.009849903,0.0063186875,-0.01722483,-0.024687257,-0.012949872,0.027049733,-0.0011078016,-0.0202873,0.011262389,0.021874784,0.0073374277,0.021949783,-0.017637325,0.014237359,0.00914366,0.025849745,0.029574709,0.0009765529,-0.006003066,-0.00608119,-0.0015749845,-0.022537278,0.0023812265,-0.043174576,0.0032187183,0.01116864,0.0016374838,-0.027949724,-0.018974813,-0.014949853,0.021674786,-0.0033905916,-0.017662326,-0.024099762,-0.020787295,-0.007274928,0.008874913,0.003859337,-0.007987421,0.010612396,-0.008693664,-0.02534975,0.004468706,0.020687295,0.032149684,0.0023609141,0.0062374384,0.015649846,0.027999723,-0.0020874795,-0.0024531009,-0.023712266,-0.014462357,0.00045116743,-0.003240593,-0.02119979,-0.0029421584,-0.00045585487,-0.00091795967,-0.0077686734,-0.0066624344,-0.005378072,0.0031062195,-0.02128729,-0.0056936936,0.003949961,0.0056311944,-0.023224771,-0.028974714,9.9999015e-05,0.020524798,-0.02842472,0.001960918,5.572455e-06,0.017712325,0.02942471,0.013974862,-0.014899853,0.013249869,-0.038749617,-0.013087371,0.00075038325,0.013537367,-0.017687326,-0.011881133,-0.025674747,-0.009962401,-0.0055061956,-0.020987293,-0.015887342,-0.0067624333,-0.023437269,-0.0152623495,0.032099683,-0.008612415,-0.002224978,-0.019824805,-0.006906182,-0.013337368,-0.02321227,-0.0060124407,0.007824923,-0.012362378,0.004881202,0.0057186936,-0.01514985,-0.0110311415,0.033074673,-0.0037030885,-0.018437319,0.011531136,0.013562366,-0.0070311804,0.012749874,-0.017362328,0.021937283,-0.006109315,-0.0047093285,0.021787286,0.0013593616,-0.0011538948,0.009406157,0.019862304,0.0040030857,0.0136748655,-0.0007425708,0.023174772,0.019374808,-0.026174743,-0.021687286,-0.011593635,0.03462466,0.013537367,-0.00074725825,-0.015587347,0.002928096,0.011993632,0.029649708,0.016412338,0.01208113,-0.0002326149,0.014637356,0.011374888,0.005078075,0.015374849,-0.0009492094,-0.0027999724,-0.016724834,0.0023968513,0.0201498,0.018937314,-0.008787413,-0.0064561865,-0.02934971,-0.0040812097,0.038224623,0.0051030745,0.028649718,-0.014812354,0.023574768,0.022137282,-0.0024593507,-0.0017515452,-0.020024803,-0.03532465,0.012924872,0.004253083,0.007212429,0.0037624629,-0.034399662,-0.009487406,0.005746818,-0.022049783,0.016162341,-0.0029109088,0.0033093423,-0.00054452586,-0.025137251,0.014062361,0.0045030806,-0.01731233,0.02632474,0.0405996,-0.018737314,0.0038999615,-0.009612405,0.027899725,0.029274711,0.0007964765,-0.0022452904,-0.027449729,-0.01919981,0.0040968345,0.004843702,-0.0051155747,-0.01836232,0.01214988,-0.008706165,0.01812482,0.011693635,0.005265573,0.012812373,0.014024862,0.0012117068,0.004884327,-0.011656135,0.008943662,2.351051e-05,-0.0036905885,-0.043874566,-0.0014179548,-0.008956161,0.0050187004,-0.012374878,-0.010018651,0.026874734,-0.019649806,-0.0049593262,-0.010206149,0.01717483,-0.00027421606,-0.041299593,-0.0028202846,0.0203873,0.0054061967,-0.015937343,-0.016737334,0.009724904,0.0056561944,0.02129979,-0.0069436817,0.004265583,-0.0040218355,-0.0013093621,0.0013843613,0.011262389,0.046974536,-0.005790568,0.016387338,-0.042024586,0.010449897,-0.012662375,-0.006862432,0.013587366,0.027799726,-0.008393668,-0.0075811753,0.0036218392,0.01618734,-0.010056151,-0.0046124547,-0.03254968,-0.0043749567,0.00041679275,0.003185906,0.0026499738,-0.0021671662,-0.022662276,-0.0102373995,0.018099822,0.015937343,-0.037324633,-0.022712275,0.02439976,0.095999055,-0.015424848,-0.0202998,0.0404246,-0.025012253,-0.013299868,-0.010268649,-0.024912255,0.009281158,0.012899873,-0.0036905885,0.0026843485,0.029974705,-0.021049792,-0.0034655908,0.0028812215,0.021637287,-0.01612484,-0.041924585,-0.017087331,0.0046218294,-0.0063499375,0.03579965,-0.0036218392,0.023737267,-0.0033187172,0.025749747,0.012581126,-0.001070302,-0.0101311505,-0.019949803,-0.013749864,-0.031699687,0.002221853,0.016837334,0.04862452,-0.008318668,0.018524818,0.00710618,-0.008424917,0.008599916,0.010618646,-0.014099861,-0.023574768,-0.013612365,-0.029799705,0.020187302,0.03637464,0.0027312231,-0.008906162,0.019837305,-0.010362398,-0.0066374345,-0.008418667,0.019962303,0.016024843,0.023674766,0.010568646,-0.0101374,-0.02232478,0.0057530683,-0.010212399,-0.028799716,-0.01426236,0.009406157,-0.03547465,-0.01741233,0.022562277,-0.0073749274,-0.0304497,0.021612287,-0.022787275,-0.014737355,0.00013115106,0.038224623,-0.0026280992,0.010681145,0.017999822,-0.0008593665,0.026299741,-0.0078561725,-0.020437298,-0.002637474,-0.019024812,-0.008506166,0.005059325,-0.0103936475,-0.0033218423,-0.0056968187,0.0107123945,0.010412397,-0.0036062144,0.034599658,0.026174743,0.02429976,0.027699728,0.004240583,0.0010460834,0.013999862,-0.0108186435,-0.005165574,-0.015362348,0.0057530683,-0.0136748655,0.01627484,0.030499699,-0.0021093541,-0.020812295,-0.00044491747,-0.02624974,-0.0003472622,-0.00805617,0.013012372,-0.0062468136,-0.020774795,0.010743644,-0.006687434,0.0101374,0.014487357,0.0036999634,0.0003988242,-0.026074743,0.015974842,0.015762344,-0.013624866,-0.004665579,0.017749825,-0.013262369,-0.012768624,-0.003862462,0.004593705,0.038874615,-0.014874853,0.00046132357,-0.026524737,-0.003849962,0.0048218276,-0.0064686863,-0.027074734,-0.025874745,-0.0069436817,-0.00402496,0.006581185,-0.005962441,-0.022849774,-0.024599757,0.0010874893,-0.0003365201,-0.013374868,0.017024832,-0.0017015457,-0.005034325,-0.00052733853,0.003646839,-0.0009203034,-0.018499818,-0.005768693,-0.04752453,0.03649964,0.03344967,0.0007777267,0.0012023319,0.0029155964,0.01823732,0.0012374878,-0.029024715,-0.014049862,0.015662346,0.002443726,0.004659329,0.01928731,0.022674777,0.010724894,0.018724816,0.0071436795,0.02632474,0.00089608494,-0.0048124525,-0.028949715,-0.016324839,0.009899902,-0.012456127,-0.0053280722,0.027024733,-0.032074682,-0.010824894,0.051074497,0.007693674,0.017099831,-0.011943632,0.025899744,-0.018899813,0.008668665,0.028974714,0.012093631,-0.03734963,0.007387427,-0.02318727,-0.0013031121,0.0083311675,-0.0023781015,0.019949803,0.011374888,-0.016537337,-0.0020109178,0.01422486,-0.02634974,-0.017762326,0.024187261,-0.027799726,0.0003050751,-0.0056186947,-0.010456147,-0.025949745,0.005471821,-0.009249909,0.012799874,0.015724845,-0.045074556,-0.014049862,0.019612307,-0.009681155,0.046274543,-0.010899892,0.017924823,0.0057405685,-0.0106561445,-0.023737267,-0.0028296595,-0.022699777,0.003856212,0.0027452854,0.037174635,-2.3425062e-05,-0.03157469,-0.012937373,-0.009006161,-0.0024718507,-0.0074186767,0.027649727,0.020462299,0.02222478,-0.016674835,0.002076542,-0.0006406187,0.022887275,-0.018424818,0.009581155,-0.023062272,-0.041874588,-0.016999831,-0.01208113,-0.01422486,0.008562416,0.007218679,0.0036280893,0.004756203,-0.007674924,-0.021237291,0.012668625,-0.019912304,-0.009893652,-0.016637336,0.024699757,0.017587326,0.013912363,-0.025037253,-0.0074811764,-0.010399898,0.022574777,-0.0058218176,-0.0064436863,0.017449828,-7.851485e-05,0.0010421772,-0.011106141,-0.007399927,0.00279841,0.010293649,-0.019074813,0.016074842,0.020999793,0.014599856,-0.00078827346,0.009756153,-0.011974882,0.0030359076,-0.010793644,0.00706868,0.011056141,-0.012999872,0.02937471,0.0014335796,0.025974743,0.025724746,0.01826232,-0.004637454,0.0043312074,0.01923731,0.019024812,0.017124832,-0.00017324048,-0.01216863,0.018487317,-0.0056343195,-0.0103936475,0.03239968,-0.014399858,-0.021687286,-0.019024812,0.0067186835,-0.018987313,-0.021874784,-0.0035780896,-0.012718624,0.009243659,-0.007824923,-0.008549916,0.0015757657,0.005346822,0.004046835,0.0014554544,0.020862294,-0.030999694,-0.0050405753,0.016887333,-0.005787443,0.0068374327,-0.0012781124,-0.02637474,-0.010418647,-0.0025015378,-0.013399868,0.020737296,0.0044312063,-0.01426236,-0.007993671,-0.019574806,0.0012703,-0.0143623585,-0.004987451,0.029099712,0.028024724,0.00818117,0.003949961,-0.01010615,-0.030049704,-0.007781173,-0.055299453,0.009699904,-0.010368648,0.01418736,-0.00041874588,-0.016824834,-0.030924695,-0.008256168,-0.042799577,-0.014374858,0.007874922,0.0049437014,0.028849715,0.03257468,0.0053186975,0.02334977,0.006209314,0.022062283,-0.011599885,0.010174899,0.030224701,-0.006499936,0.01707483,-0.027349731,-0.03434966,-0.005768693,0.0203248,-0.007274928,-0.011774884,0.011287388,-0.0028249722,-0.004674954,0.015874844,0.010349898,-0.015462347,0.012824873,0.008918662,-0.042099584,0.005271823,0.0014468607,0.013287369,-0.020649796,0.02739973,-0.0039718356,-0.0202498,-0.0029827831,0.0023484144,0.007924922,0.005262448,-0.017949823,0.0101499,-0.0051905736,0.018737314,0.032974675,-0.01006865,-0.02639974,-0.012306129,-0.0028280972,-0.012018631,0.0050687,0.0024968504,-0.02126229,-0.008768664,0.018762315,-0.0048187026,-0.014699855,-0.011724885,-0.014599856,0.015562346,-0.025774745,0.003853087,0.0062561883,-0.003353092,0.007893672,0.016599836,-0.0022577902,-0.0038312122,-0.016499838,-2.6488997e-05,0.0012437378,-0.0202123,-0.008031171,-0.028724717,-0.029099712,0.018487317,-0.0011343638,-0.027599728,0.00064725924,0.18959813,0.011424887,-0.015537347,0.024674756,-0.0073561775,0.0111373905,0.030749697,0.013712365,-0.0052093235,0.015249849,-0.015399848,0.014462357,-0.018962312,0.0146248555,0.017087331,-0.034999654,-0.013687365,-0.027124733,0.015674846,0.027774727,0.007918672,0.0006007753,-0.0015601409,-0.011968632,0.03354967,-0.002531225,-0.022187281,0.010843643,0.022949774,0.01707483,-0.017862324,0.010624895,0.012281129,-0.009418657,-0.013437367,-0.015349848,0.0019546682,0.005371822,0.007637425,0.01812482,0.007931172,-0.0080686705,-0.024137262,-0.00064725924,0.0020546673,0.012449877,-0.02319977,-0.003837462,-0.017037332,0.016762335,-0.04239958,0.013437367,-0.00020253706,0.026474738,0.02426226,0.013449867,0.016412338,0.026849736,-0.004299958,-0.011743634,-0.014674855,0.01724983,-0.007618675,-0.0032749677,-0.00226404,-0.0049843257,-0.02529975,-0.01213738,6.5184904e-05,0.008843663,-0.002401539,0.00010917861,-0.014637356,0.0116123855,-0.0036155893,-0.025112253,0.027449729,0.0018968562,0.013949863,0.019512307,0.016399838,0.017887324,-0.020349799,0.0110311415,-0.008887412,-0.0155248465,0.02839972,-0.008506166,-0.021699786,0.005856192,-0.0066561843,0.0041843336,-0.0031780936,-0.023862265,0.013862363,0.03539965,0.0013781114,0.02538725,0.0015195162,0.006587435,-0.016749835,0.03772463,0.0141498605,-0.0031827812,-0.0028968465,-0.008743663,-0.003837462,0.026599737,0.0098124035,0.0040187105,-0.02547475,-0.00459683,0.015612346,-0.03137469,-0.010412397,0.015074851,0.00096483424,-0.028649718,-0.0041062096,-0.025949745,-0.010631145,-0.037649628,0.0031749688,0.011531136,-0.011618636,-0.02136229,-0.02134979,0.02852472,-0.004974951,-0.034024663,-0.0062561883,0.008406167,-0.0036812136,-0.008306168,-0.009587405,0.0050218254,-0.013612365,-0.007937422,-0.009993652,0.030749697,-0.0034155913,0.005474946,-0.012887373,0.008593665,-0.0049843257,0.0066311844,0.020562297,0.014562356,-0.003453091,-0.027674727,-0.024024762,0.026599737,-0.008562416,-0.010774894,0.019299809,0.00021113073,-0.028249722,-0.02842472,0.007818673,0.019949803,-0.02852472,-0.009262409,0.030149702,-0.012399877,-0.0125123765,0.022199782,-0.15459847,0.012431127,-0.005478071,0.006371812,0.03342467,0.01611234,0.0036093395,0.001096083,0.010356148,-0.0013484242,0.03532465,-0.0028671592,-0.0145748565,-0.013324869,0.010531146,0.015349848,0.010256149,0.008912412,0.03637464,0.006818683,0.01919981,-0.0030030953,0.0031577814,0.009587405,0.013387368,0.006699934,0.005178074,0.016412338,0.016562337,-0.024049763,0.007893672,-0.023562267,0.011099891,0.010456147,-0.00018954891,-0.011531136,-0.013374868,0.008831163,-0.0203748,0.016312338,0.019549808,-0.001060927,-0.00084530417,0.013487367,0.011974882,0.0027702851,0.010243649,-0.019462308,-0.017962324,-0.024374759,0.018887313,-0.016837334,-0.0032999674,0.003649964,0.0037624629,0.019799804,-0.004462456,-0.0070749302,-0.0038718367,-0.0507495,0.013012372,0.0018812314,0.0125123765,-0.014074861,0.0021484164,-0.0026030992,-0.006171814,0.010293649,-0.0407746,0.017899824,0.013862363,-0.005790568,0.00049452635,-0.026574738,-0.025187252,0.0022452904,-0.02433726,0.038074624,0.01619984,-0.0027234107,0.0029655958,-0.0053218226,-0.012581126,0.01316237,-0.0405746,-0.0034718409,-0.036099643,0.00557182,-0.03432466,0.005781193,0.015074851,-0.036324643,-0.01318737,-0.0051218243,-0.0045155804,0.028799716,0.025924744,-0.006003066,0.00709993,0.018537316,-0.0029624708,0.0086499145,-0.020024803,-0.0053374474,0.034974653,0.040074605,0.011056141,0.010506147,0.038049623,-0.0065311855,-0.012874873,0.013862363,0.024124762,0.025999743,-0.020649796,0.010874893,0.0071186796,-0.020712296,0.0070374305,-0.0053124474,0.057549432,-0.012437377,-0.0064436863,0.0016124841,-0.021049792,-0.041199595,-0.08549916,-0.011974882,-0.02532475,0.016462337,-0.021087293,0.033149675,-0.023012273,0.01922481,-0.00455933,0.037149634,0.010806143,-0.011462387,-0.0087561635,-0.0032124682,0.03354967,-0.019412309,-0.032924674,0.008999911,-0.035349652,-0.00303747,-0.011899883,-0.010631145,-0.0115061365,-0.023724766,-0.0120373815,-0.0201498,-0.03934961,0.0059061917,0.030999694,-0.0060124407,-0.011524886,-0.012593626,0.011237389,-0.018349819,0.022574777,0.004762453,-0.010874893,0.009937402,0.040674597,-0.017787324,-0.002737473,-0.016987333,-0.006474936,-0.023712266,0.0019890429,-0.026549738,-0.0060436903,0.013599866,0.002434351,-0.010599895,0.0010429585,-0.009599905,-0.030674698,-0.0028109099,0.004468706,0.019599807,0.0005871036,-0.007506176,-0.024699757,-0.004359332,-0.0071249297,-0.004321832,-0.033899665,0.018549817,0.0052999477,0.021074792,-0.00806242,0.028024724,0.0073124277,-0.022037283,-0.0021484164,-0.002173416,-0.011706134,0.014799854,-0.040199604,-0.008737414,-0.017599827,-0.008012421,0.029099712,0.0011593635,-0.0066186846,-0.021487288,0.008568666,-0.006209314,0.0146248555,-0.009949902,-0.026149742,0.0019109186,0.011406138,-0.05789943,0.02844972,0.02132479,0.037024636,0.009887403,-0.025974743,-0.025199752,-0.01733733,-0.016374838,0.0145748565,-0.008193669,0.005881192,0.009581155,-0.07409927,0.0033624668,0.0015562347,-0.009599905,0.026949733,0.0023577893,0.022612277,-0.01218113,0.01313737,0.016162341,-0.034399662,0.0121936295,-0.010743644,0.0006089784,-0.031149693,-0.0110811405,0.017849823,0.013912363,0.014562356,-0.0019452933,0.024099762,-0.021762285,0.028574718,-0.008212419,0.00039980075,0.01413736,-0.026749736,0.011656135,-0.016837334,-0.0040593348,0.002382789,-0.004653079,-0.017012332,0.03467466,-0.012874873,-0.0014890478,-0.0028780967,0.037849627,0.008274918,0.025624746,-0.010312398,-0.013074871,0.010168649,-0.018499818,-0.014312359,-0.0033155922,0.007937422,-0.015549847,0.014287359,0.008606165,0.0032780927,0.012937373,-0.012812373,-0.010456147,-0.008212419,-0.021762285,0.041924585,-0.013062371,0.019587306,0.0065374356,0.034974653,0.005309323,0.006781183,0.00024784912,0.009768654,-0.009512406,0.0028202846,0.001982793,-0.008793663,-0.016799834,0.027924724,-0.047974527,0.007362427,-0.0044343313,0.0034843406,-0.023887264,0.0004304645,-0.016349839,-0.03577465,0.018949812,0.02137479,0.0202873,-0.0085436655,0.03259968,0.026474738,0.01413736,0.0032780927,-0.018987313,-0.00020702921,-0.0038655868,-0.039249614,-0.0102873985,-0.010231149,0.012231129,0.012693625,-0.009337408,0.013399868,0.010899892,0.017787324,0.006249938,0.021599786,-0.001979668,-0.0070436806,-0.023087272,-0.04429956,-0.012774874,-0.0066374345,-0.03429966,-0.0110811405,0.043024577,0.012762374,0.019449808,0.014562356,-0.00082889805,-0.019699806,0.020699795,0.0024468508,0.006787433,-0.012268629,0.025162252,0.0049124514,0.008456167,0.022612277,-0.026599737,0.044149563,-0.0019296685,-0.014474858,-0.021662286,-0.000494917,0.0060530654,-0.011624886,0.010012401,-0.0021687285,0.012837374,-0.03857462,0.010556146,0.02223728,0.021099793,0.012974872,0.045324553,0.014687355,-0.0036155893,0.02932471,-0.0021624786,0.02239978,0.010999892,0.008956161,0.012762374,-0.0022843524,-0.018974813,0.02747473,-0.014099861,0.0056124446,-0.020937294,0.011487387,-0.00080233585,0.019874804,-0.029774707,-0.00042382395,0.029849706,0.0038155874,0.008481166,0.01518735,-0.044874556,0.014387358,0.029899705,0.0021296665,0.0021781034,-0.025187252,0.029174712,-0.010349898,-0.016624836,-0.00113827,0.012506126,-0.011331138,-0.0117686335,-0.0064436863,0.030699696,-0.0083874175,-0.017062332,0.01942481,-0.0063499375,-0.014449857,0.011306139,0.0038280874,0.005396822,-0.028224722,0.003356217]']\n",
"['73b37e59-1e24-5e0b-afbf-e84263089fbe', 'Alphabet Inc. is a multinational conglomerate that was created through a restructuring of Google in 2015. As the parent company of Google, Alphabet oversees various businesses in sectors such as technology, life sciences, investment capital, and research. Google remains the primary revenue generator for Alphabet, with its search engine, advertising platform, and various software products being key drivers of the company\\'s success. Additionally, Alphabet\\'s \"Other Bets\" segment includes projects such as Waymo (self-driving cars), Verily (life sciences), and Loon (internet balloons). Through its diverse ventures, Alphabet aims to innovate and create cutting-edge solutions that impact the world on a grand scale.', {'ceo': 'Sundar Pichai', 'city': 'Mountain View', 'rank': 8, 'state': 'CA', 'profit': 76033.0, 'sector': 'Technology', 'ticker': 'GOOGL', 'company': 'Alphabet', 'revenue': 257637.0, 'website': 'https://www.abc.xyz', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 9, 'market_cap': 1309359.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 1, 'num_of_employees': 156500}, '[0.00944344,-0.0048257797,-0.0025592241,-0.024089877,-0.011797796,0.016233351,-0.010646633,0.02392078,-0.0014129389,-0.010080807,-0.00013098952,0.014750497,-0.022750106,0.014347265,0.013397718,-0.00039672854,0.007596376,-0.016376434,0.015452902,-0.011257985,-0.0180544,0.004539615,-0.0066533326,-0.0022925707,-0.016246358,-0.007050061,0.013514785,-0.0030031048,0.0281222,0.0021381066,0.010906783,-0.008370321,-0.015895156,0.009814153,-0.008838591,0.00086581125,0.006126529,-0.025715813,0.023621608,-0.016948763,0.020994093,0.031270012,-0.016051246,-0.005648504,-0.0113685485,0.011914863,0.003466497,-0.008955659,0.020616876,0.03212851,-0.009014193,0.02807017,-0.017989364,-0.017351996,-0.012909937,0.011609187,-0.019628307,0.020473793,0.013683883,-7.016933e-05,-0.007336226,0.01001577,-0.023322435,0.008884118,-0.024011832,-0.032882944,-0.011706743,-0.011791293,0.013813958,0.026691375,0.029422948,0.007154121,0.011537646,0.019277105,0.014464332,-0.02241191,-0.01758613,-0.0039965524,0.022841157,0.016974779,0.016324403,0.0046566823,0.012519712,0.00063492823,0.015413879,-0.004279465,-0.024805289,0.0031396835,-0.024519125,-0.0028096184,0.027836034,0.021696499,0.013931025,0.019537255,-0.016584553,0.0014706596,0.0057102893,0.018548684,-0.005843616,-0.040635407,-0.015192752,0.017469063,-0.01987545,-0.0016552035,-0.031868357,0.019576278,0.020083569,-0.0028421371,0.019706352,-0.01291644,-0.0120644495,-0.00184869,0.03197242,-0.010327949,0.004793261,-0.02272409,0.0033656887,0.024454087,0.010464528,-0.0010462902,0.038684282,0.023933787,0.011121406,-0.022958225,0.023530554,0.008363818,-0.018288534,-0.033689406,0.008571938,-0.018587707,0.019576278,-0.015621999,0.013267643,0.010497047,-0.024558147,0.005394858,0.0044453107,0.021904618,-0.0031234242,-0.050208922,0.0052192565,0.009163779,0.0049428474,0.0005873696,-0.0027868554,0.025533708,0.018548684,0.012109976,0.014984632,0.011101895,0.013527793,-0.01951124,-0.007843519,0.020473793,0.025117468,0.00041745923,0.009918213,0.022763113,-0.00064021256,-0.007876037,-0.01655854,0.017560115,-0.008090661,0.020525824,0.011661218,0.02324439,-0.01196039,-0.011758774,-0.018535677,-0.026795436,-0.033793468,-0.01348877,-0.031270012,-0.022554994,-0.0073232185,0.0037266468,0.0074337823,0.0033982075,-0.030489564,-0.0030665165,0.029084755,-0.011966893,0.021423342,0.015700044,0.010861256,-0.009007689,0.015595984,0.002564102,0.0010950683,-0.01883485,0.0043022283,0.0008341055,-0.0017657671,-0.0054273764,-0.6514152,-0.02029169,0.014594407,-0.018951917,0.029969264,0.009892198,0.00087312795,-0.009033704,-0.01296847,0.026444234,0.0046794456,0.0026291395,-0.027107615,0.022177776,-0.0093458835,-0.02671739,0.02277612,-0.036056772,0.009690582,0.012539223,0.0039575296,0.006484235,0.010061296,-0.025715813,-0.0066273175,0.033689406,0.039776914,-0.014347265,-0.029136784,0.02869453,-0.013287154,0.016584553,0.023530554,0.016740642,0.038892403,0.031816326,-0.021007102,0.0029136785,0.0075053233,0.013931025,-0.04206623,-0.024558147,0.0043152357,-0.012454675,-0.016337411,-0.0010731182,0.029188814,0.016610568,-0.0045526223,-0.010256408,0.024545139,-0.010132837,-0.022528978,-0.015101699,-0.0037136392,-0.004133131,-0.009833665,-0.0128579065,-0.0018064156,-0.004724972,0.0023738674,0.0063476567,-0.014425309,-0.03465196,-0.025520701,0.026418218,-0.007037054,0.0032534993,0.014698467,0.010321446,0.0009316617,0.015270797,-0.00687446,-0.00037254274,0.0114335865,0.008897125,0.03949075,-0.015791096,0.008929644,0.008975171,-0.0069720163,-0.009332876,0.02433702,-0.017781243,0.013735913,-0.0010454772,-0.008422351,-0.0115311425,0.00075849943,-0.017612146,0.015361849,-0.0019121014,-0.006126529,-0.045422167,0.0025592241,-0.0070955874,-0.026639346,0.0038534699,0.006620814,-0.002998227,-0.006724874,-0.0093784025,0.018483648,0.013826965,0.033429258,0.0049298396,0.03465196,0.012799373,0.020343719,-0.019628307,0.0043445025,-0.015283804,-0.010666144,0.019316128,-0.010893775,-0.027523855,-0.010340957,-0.023647621,0.005824105,-0.0121294875,0.02282815,-0.02598897,0.006107018,0.007941075,0.008461374,-0.011147422,-0.004539615,-0.018964924,-0.024831304,-0.009970243,-0.00085280376,-0.04053135,0.010028777,0.0107637,0.023426495,0.025884911,0.004559126,-0.016974779,0.006539517,-0.03296099,-0.015713051,-0.019810412,0.009560508,0.01831455,-0.018535677,-0.018548684,-0.0035055194,0.0012088838,-0.024545139,0.0029966012,0.004926588,0.0029185563,-0.017729213,0.048648022,0.0038144472,-0.0017007297,-0.017260943,-0.013787943,-0.019537255,-0.016350418,0.008032127,0.00062517263,-0.0039152554,-0.024922356,-0.009729605,-0.02619709,-0.016168313,0.023517547,-0.013813958,-0.009417425,0.005024144,-0.015700044,-0.009645056,0.022385895,0.0043152357,0.0366291,-0.0026990548,0.0017413781,0.015569969,-0.014854557,0.006383427,0.0012535971,0.004767246,0.0011934375,0.021228228,-0.014776512,0.022229806,0.03532835,-0.0052387677,-0.00033534944,-0.0016064254,0.028044155,-0.0016828444,-0.015700044,-0.007817503,-0.009742612,-0.017521093,-0.005258279,0.017781243,0.0010649884,0.012864411,0.01992748,0.0068874676,0.0011357167,0.01841861,-0.011992908,-0.004354258,-0.02070793,0.017924326,0.01216851,0.02121522,-0.010536069,-0.024519125,-0.0047022086,-0.0007076889,0.02329642,0.016259367,0.016155306,0.00666634,0.011570165,0.020916048,0.025806867,-0.0030177385,-0.040635407,-0.015166737,0.014516362,0.015452902,0.018353572,-0.00827927,-0.024102885,-0.007609383,0.03145212,-0.0011430334,0.009384906,-0.0056029777,0.019264096,0.017547108,-0.01951124,0.024219953,-0.009554003,-0.0035347862,0.029657084,0.03309106,-0.008383329,0.017560115,0.018743798,0.03189437,-0.00548591,-0.04607254,0.003746158,-0.021176198,0.009040208,0.0004971301,-0.015010647,-0.003980293,-0.019381164,0.021670483,0.005677771,0.019836426,0.016792674,0.0022145256,-0.013774935,0.003053509,0.01737801,-0.005560703,-0.0067118662,0.0281222,-0.0012292081,-0.00210071,-0.0016056125,-0.0013950536,-0.004416044,0.027263705,0.012799373,0.005827357,-0.0009918213,-0.022138752,-0.00078410795,0.0016234977,0.008675998,-0.0010284049,-0.023725668,0.0013226995,0.04157195,0.011323023,0.008799569,-0.0021348547,-0.014854557,-0.0015243156,-0.0030144865,-0.014984632,2.5278234e-06,-0.008383329,0.023114314,0.0062891226,-0.0055769626,0.01716989,0.0059119053,0.0025104461,0.0043022283,-0.005134708,0.021904618,0.019823419,0.01681869,0.07086482,-0.0063964347,-0.003619335,0.004559126,-0.0039933003,-0.024792282,0.0122270435,-0.011459601,-0.016870718,0.0073232185,0.017820265,0.014204183,-0.019823419,-0.011427082,0.0128449,-0.008767051,0.01144009,0.0058826385,-0.01992748,0.028824605,0.09271741,0.020681914,-0.03954278,0.025299573,-0.030957833,0.016415456,-0.020226652,-0.04141586,-0.0030421275,-0.009092238,-0.00835081,0.0060127135,0.016506508,-0.017703198,0.0034892599,0.01789831,-0.0073297224,-0.026587315,-0.00066622754,0.0018291787,0.029110769,-0.014334257,0.024350027,0.009950732,0.02713363,-0.018379588,0.009586522,0.027731976,-0.015791096,-0.026470248,-0.02059086,-0.015674029,-0.021553416,0.025468672,0.010093815,0.01117994,-0.019823419,0.010887272,0.004412792,0.011973397,0.0256898,0.009365395,-0.007980097,-0.01270832,-0.011901856,-0.00671837,-0.001464156,0.032336626,-0.0007353298,-0.011277497,0.00553794,-0.02666536,-0.011791293,-0.009931221,0.011778285,-0.00048127724,0.015088691,0.0051379595,-0.013371702,-0.048049677,-0.00703055,-0.030359488,0.0067508887,-0.029683098,0.019264096,-0.020382741,0.013371702,-0.011784788,-0.021800559,0.019108007,0.032856926,-0.027159646,-0.030957833,-0.00179666,0.02433702,-0.017456055,0.0016478867,-0.00026299525,-0.009300358,0.038372103,-0.0014422057,-0.010178363,-0.024037847,-0.016181322,0.0021982663,0.0037364024,0.009163779,-7.286228e-05,0.0063444045,-0.0019316127,-0.016597562,-0.015062677,0.010542573,0.0127928695,0.016623575,0.008129683,0.010952309,0.0049591064,0.0020942064,-0.020733943,-0.016155306,0.023179352,-0.0021673734,-0.019290112,-0.010614114,0.0018031637,0.01883485,0.0026356434,-0.009053215,0.0056289923,0.008318292,0.003876233,0.0075638574,0.0040908563,-0.039828945,-0.0013625349,0.006243597,-0.00037924972,0.009684078,-0.010392987,-0.0009527989,-0.011713248,-0.007902052,0.021657476,-0.024727244,0.017872294,0.014256212,-0.005290798,-0.024532132,-0.011745766,-0.009775131,0.025585739,-0.02459717,-0.01359283,-0.015153729,-0.023855742,-0.025702806,-0.008741035,-0.027627915,-0.019264096,0.007973593,-0.010477535,0.019095,-0.01317659,-0.01029543,-0.027367765,-0.008136187,0.022737097,-0.009573515,0.03787782,-0.0046469267,0.009625545,-0.009105245,-0.015218766,-0.008012616,-0.0180544,0.02267206,-0.017391019,0.045136,0.02786205,0.018171467,-0.0032632549,0.023387473,0.012610764,0.012148999,-0.009222313,-0.011244978,0.0040323227,-0.0024291493,0.010893775,-0.0078109996,0.0075248345,0.018847857,-0.025559723,-0.0034990157,0.01107588,0.0030161124,-0.0072907,-0.019654322,-0.019081993,-0.03621286,0.009514981,-0.026223106,0.012363622,-0.025468672,-0.0112384735,0.040115107,0.01638944,0.018587707,-0.0005719232,0.0050891815,0.0058143493,-0.0072451737,0.035354365,0.021696499,-0.03772173,0.0059899506,-0.038476165,-0.02355657,-0.011349037,0.0038924923,0.0076353983,0.009677575,-0.021176198,-0.0005455017,0.013631852,-0.0005686713,0.0020828247,0.01102385,-0.02848641,0.0014153778,-0.018457633,-0.03967285,-0.0317643,-0.01144009,0.013579823,-0.01055558,0.018665751,-0.02666536,-0.037695713,-0.00498187,0.0048875655,0.03480805,-0.01588215,0.02734175,0.019589284,0.008513404,-0.01774222,-0.0015804104,0.000743866,0.009723101,0.00023210245,0.0090272,-0.024779273,-0.011966893,-0.008773554,0.025130477,-0.00032193545,-0.010848249,-0.0045070965,0.0135538075,0.028876634,-0.0041201236,-0.031816326,0.0049428474,0.0276019,-0.0025608502,0.021410333,-0.017768236,-0.02230785,-0.01711786,0.021462364,-0.008636976,0.0075638574,0.012240051,0.005905402,-0.0013308291,-0.022867173,-0.01452937,0.02947498,-0.008851599,0.000641432,-0.03140009,0.019433195,-0.005671267,0.021800559,-0.003308781,0.010562085,-0.025143484,0.017286958,-0.0070695723,-0.013118057,0.0032908956,-0.0057493118,-0.001129213,-0.016428463,-0.013183094,0.011557157,-0.026600324,-0.002438905,0.02692551,0.0064679757,-0.003076272,0.0014064352,0.0067638964,-0.022893187,0.0039900485,-0.0006389931,0.020890033,-0.011199451,-0.020655898,0.002053558,-0.0054208725,-0.0059834467,0.01317659,-0.008565434,-0.024193937,-0.009358891,-0.0021397325,0.0021901366,-0.0040095598,0.00333317,-0.011342534,0.034105647,0.0012722954,-0.016350418,0.030619638,0.00070728245,-0.0127928695,0.0048387875,-0.004510348,0.021059131,-0.0016194328,-0.0135538075,-0.018821843,0.0056322445,0.0018031637,-0.004308732,-0.026288142,0.012864411,-0.0012438415,-0.0046046525,0.024714237,-0.025299573,0.015504932,-0.010471032,-0.009293853,-0.017755227,-0.033143092,-0.016415456,-0.0010324698,0.020499809,0.015635006,0.023829727,-0.01447734,-0.017560115,-0.00708258,-0.003947774,-0.01716989,0.005713541,0.0032648807,0.004637171,0.044225477,0.004429051,0.006139537,0.004289221,-0.0028079925,-0.042612545,-0.050208922,-0.009671071,0.009742612,0.0291628,0.015387864,-0.022841157,-0.03756564,-0.00011981121,-0.034886096,-0.009033704,0.0054176208,-0.0053168125,0.016779667,0.019160038,-0.01690974,0.01338471,-0.0020600618,0.03751361,-0.009274342,0.008623968,0.043184876,-0.0107702045,-0.012974974,-0.014464332,-0.03553647,-0.023829727,0.018873872,-0.043314952,0.004978618,0.018301543,0.008331299,-0.011127911,-0.011244978,0.027575886,0.00028291298,0.020668907,0.021332288,-0.023907771,0.004337999,-0.0035835642,0.01034746,-0.02319236,0.026587315,-0.014243205,-0.0014373279,0.008786562,-0.0045266077,0.0078890445,-0.011797796,0.02702957,0.011427082,0.0072972034,0.018223498,0.017365003,0.0123246,-0.021007102,-0.010484039,0.006155796,-0.0038372104,-0.014360272,0.0071931435,-0.023829727,-0.0291628,-0.021423342,0.0060127135,-0.01473749,0.0029120524,0.004152642,-0.029136784,-0.0022568,0.0215274,-0.005326568,-0.010789716,0.018080415,-0.010119829,0.01992748,-0.024141908,0.00446157,0.008038631,-0.019016955,0.005794838,0.019719359,-0.020096576,-0.02267206,0.009859679,0.036551055,-0.048543964,0.00016767472,0.20291689,-0.00866299,0.0270816,0.010093815,-0.02515649,0.011140917,0.019095,0.008077653,0.008623968,-0.018223498,-0.031035878,0.008617464,-0.008702013,0.0074012633,0.005489162,-0.03532835,-0.012955463,-0.00827927,-0.013774935,0.009716597,0.00049875607,-0.011036858,-0.016233351,-0.012779862,0.0040095598,-0.0009162153,-0.023049278,0.013449748,0.042170294,0.016376434,-0.00642245,0.00087068905,-0.014347265,0.0142822275,0.012591253,-0.013410726,-0.0048550465,0.013241628,0.0052192565,0.017651169,0.008689005,-0.0033282922,-0.0015852882,-0.020499809,0.023803713,0.007745962,-0.01935515,-0.015947185,0.003794936,-0.0068614525,-0.039048493,0.017534101,0.019537255,0.02749784,-0.00534608,0.023478525,0.004464822,0.024037847,-0.0064777313,0.005216005,0.008903629,0.01001577,0.0075378423,0.0185747,0.018093422,-0.005359087,-0.0043575102,-0.01711786,0.006188315,-0.007368745,0.016246358,-0.00012001445,-0.019706352,0.031165954,-0.014191175,-0.02251597,0.04341901,0.03595271,0.012825388,0.013475763,0.0061980705,0.025481679,-0.019290112,-0.0063086343,-0.013449748,-0.010932798,0.030463548,0.008578442,0.0061232774,-0.0100743035,0.0031624467,-0.005824105,-0.011966893,0.0040453305,0.019446202,0.017312974,-0.015687037,0.00959953,0.00034551154,-0.018600715,-0.0025592241,0.03512023,0.012669298,0.020304697,-0.025195513,-0.013918017,-0.0002245825,0.009488966,-0.0128579065,-0.026262129,-0.015101699,-0.009775131,0.031426102,-0.009872687,0.023309428,0.010906783,0.0056029777,-0.0317643,0.015192752,0.00574606,-0.016038239,-0.019758381,-0.012545727,0.025221528,-0.014932602,-0.011121406,0.0049851215,0.018561693,-0.0075053233,-0.043392997,-0.014204183,-0.011570165,-0.01081573,-0.016831696,-0.010126334,-0.015010647,-0.013248132,0.0025364612,-0.031348057,0.01359283,-0.013566815,0.019433195,0.011297008,0.013826965,0.0017023557,-0.020109585,-0.012682306,0.011264489,0.0006003771,-0.008136187,-0.044901866,0.0040258192,-0.00024368725,-0.0006999657,0.013105049,-0.005229012,-0.021553416,-0.041493904,0.0039054998,0.0127928695,-0.0071996474,-0.010796219,0.02345251,-0.0020958323,-0.030385504,-0.026392203,-0.16368629,0.019368157,-0.005648504,0.002821,0.017338987,-0.005541192,0.009840168,-0.008728027,-0.0037266468,0.0007902052,0.0078565255,-0.013670875,-0.035562485,-0.03636895,0.025182506,0.01029543,0.005056663,0.02734175,0.03257076,-0.0100417845,0.034573916,-0.014620422,-0.0032274842,0.039204583,0.00118043,-0.0025689797,-0.013183094,-0.004897321,-0.0019560019,-0.024363033,-0.00933938,-0.013000989,0.02324439,0.009710093,-0.001718615,-0.021085147,0.00068899064,-0.021007102,-0.015452902,0.005720045,0.023179352,0.028434379,-0.0059834467,0.024558147,-0.0075768647,0.023699652,0.026262129,-0.00687446,0.015830118,0.0036811205,0.036499023,-0.049064264,0.010477535,0.0015348842,0.011901856,0.0027770998,-0.0032713844,-0.010197874,0.015856134,-0.03025543,-0.0038404623,-0.0015617121,0.017286958,-0.031478133,-0.00013729003,-0.017443048,-0.009397914,-0.009898702,-0.024974387,0.01586914,-0.005216005,0.01338471,-0.0016519516,-0.00970359,-0.009775131,0.0067508887,-0.013209109,-0.0027055584,-0.011895352,0.02251597,-0.007381752,0.022607023,-0.0012503453,-0.0142822275,-0.0034860082,0.022073716,0.0048127724,-0.0021982663,-0.02895468,-0.00760288,0.01940718,-0.019784397,-6.8797446e-05,-0.0012495323,0.0037559136,0.022919202,0.024623184,-0.003515275,0.005830609,0.002024291,0.010067799,-0.009209305,-0.026067017,-0.0031364318,0.05098937,0.016038239,0.015804105,0.011212459,0.021397326,-0.015830118,-0.020811988,0.008110172,0.01873079,0.007485812,-0.0066078063,0.023127323,-0.013865988,-0.018067408,0.024922356,0.010919791,0.060614917,-0.0033396739,0.0024470347,0.011986405,-0.02666536,-0.007876037,-0.09334177,-0.025585739,-0.0045428667,0.0024990647,-0.00718664,0.015153729,-0.005167227,0.017560115,-0.0067573925,0.04154593,0.005642,-0.021306273,-0.02853844,-0.009202802,0.022554994,0.006305382,0.006744385,-0.015348841,-0.0230883,0.020109585,-0.0063964347,-0.022932211,0.023738675,-0.017104853,-0.025975963,0.0028632744,-0.03475602,0.007160625,0.024154915,0.008825584,-0.010698663,-0.019810412,0.0053525832,-0.033351213,0.024376042,0.0121294875,-0.024948372,0.010158852,0.012896929,-0.011095392,0.014334257,0.0071671284,0.014867565,-0.03140009,-0.008623968,-0.022450933,0.0011284,0.009163779,0.016493501,-0.013787943,-0.009723101,-0.0077394582,-0.026899496,-0.019381164,0.004282717,0.009241824,-0.011472609,0.007258181,-0.013865988,0.015778089,0.023699652,0.00017173955,-0.035406396,-0.015322827,-0.007609383,-0.0053493315,-0.021618454,-0.0094759585,0.0270816,-0.011713248,-0.007882541,0.008968666,-0.011823811,0.03501617,-0.021319281,0.01758613,-0.0030096087,-0.01416516,0.033507302,-0.0014446446,0.0017869043,-0.024675215,-0.0024258974,-0.03548444,-0.006237093,-0.0058891424,-0.019498233,0.007693932,0.00089670403,-0.040037062,0.01722192,0.009872687,0.0049135806,-0.004282717,0.0061720554,-0.007381752,-0.0074402858,-0.024584161,0.011661218,0.024480103,0.003459993,0.008636976,-0.06935595,0.009560508,-0.015752073,0.00073654926,-0.006650081,-0.02728972,0.020746952,-0.0009820657,-0.016844703,0.025364611,-0.047035094,0.026405212,-0.013189598,-0.012077457,-0.0066793477,-0.017625153,0.02697754,-0.0062501,0.005615985,0.034677975,0.013996063,-0.0180544,0.022372888,0.0005849307,0.0006093198,0.020499809,-0.024727244,0.020538831,-0.006188315,-0.025351604,0.0005800529,-0.00739476,-0.02973513,0.012005916,0.0026323914,-0.0028307557,-0.005290798,0.024701228,-0.00013942407,0.034677975,-0.02111116,-0.027315736,0.025494685,-0.03160821,-0.02822626,0.0032860178,-0.0020356725,-0.012389637,0.0035217786,0.0069720163,0.01390501,0.02126725,-0.019042969,-0.012383133,0.01348877,-0.032154523,0.0270816,-0.012877418,0.005326568,-0.0017804006,0.023725668,0.0397509,0.0075508496,-0.0038534699,-0.013527793,-0.0028892893,-0.03465196,-0.0041689016,0.021566423,-0.025325589,0.001925109,0.005307057,0.019316128,0.0034469857,0.0004585141,0.0018308046,0.007700436,-0.013657868,-0.038007893,0.031217983,0.011570165,-0.010249904,-0.020161614,0.013683883,0.029266858,-0.0018535678,-0.017013801,-0.003616083,-0.0038859886,0.00666634,-0.026496263,0.015439894,-0.030827759,-0.021670483,0.013358695,-0.003102287,0.009866184,0.008448367,0.0028112445,0.0121945245,0.01348877,-0.0140871145,-0.007024046,-0.015621999,-0.030437533,0.028174229,-0.016311396,-0.01940718,0.011797796,0.016181322,0.012018924,0.016168313,-0.00786303,0.015700044,-0.017755227,-0.017963348,0.0077654733,-0.006744385,-0.02043477,0.022086723,0.020356726,0.011615691,0.052680347,0.0007593124,0.01270832,0.0036583573,0.009645056,-0.03210249,0.004146138,-0.009742612,-0.037695713,0.0013381458,-0.0021104657,-0.010035281,-0.02728972,-0.021995671,0.014334257,0.025338596,0.014750497,0.045474194,0.02111116,-0.010523062,0.016597562,-0.01196039,0.019290112,0.030021293,0.01359283,-0.040947586,-0.004048582,-0.0053720945,0.015049669,0.008897125,-0.00913126,-0.012402644,0.010854753,-0.00487781,0.019186052,-0.017443048,0.011270992,0.035302337,0.0033217885,0.015387864,0.007180136,-0.0025234537,-0.00317708,0.017026808,-0.0026291395,-0.009040208,-0.02687348,0.015218766,0.010249904,-0.053642903,-0.030827759,-0.0006068808,-0.017690191,-0.0040420783,0.0047152163,0.03709737,0.0072126547,0.0051021893,0.00089345215,0.0059021497,-0.012870914,-0.016038239,-0.018392595,-0.008305284,-0.009645056,-0.0035803125]']\n",
"['33a3f638-20dc-5797-a9e2-660ae1bad782', \"Apple Inc. is a multinational technology company renowned for its cutting-edge products and innovation. They design, manufacture, and market a range of consumer electronics, software, and online services. Apple is best known for their iconic products such as the iPhone, iPad, Mac computers, Apple Watch, and AirPods. Their software offerings include the iOS, macOS, watchOS, and tvOS operating systems, as well as various productivity and creativity apps. Apple's services like the App Store, iCloud, Apple Music, and Apple Pay provide seamless integration and enhance the user experience across all devices. With a focus on user-friendly design and technological advancements, Apple continues to be a leader in the tech industry.\", {'ceo': 'Timothy D. Cook', 'city': 'Cupertino', 'rank': 3, 'state': 'CA', 'profit': 94680.0, 'sector': 'Technology', 'ticker': 'AAPL', 'company': 'Apple', 'revenue': 365817.0, 'website': 'www.apple.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 3, 'market_cap': 2443962.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 154000}, '[-0.004569143,-0.011583377,0.0030612284,-0.02679872,0.0005691161,0.0010952647,-0.021247001,0.014060897,0.020572493,-0.020377923,-0.0035541381,0.009267999,-0.0112915225,-0.004682642,-0.007834669,0.0042578313,0.007484444,-0.00898263,-0.0045756283,-0.017991202,-0.06615367,0.023075955,0.002106216,0.005519291,-0.001074997,0.0046145422,0.0025196765,-0.020767063,0.019249419,-0.014852147,0.0015881744,-0.012452454,-0.01598065,0.013386388,-0.008794546,0.00396922,-0.01007222,-0.032168843,0.0022099863,-0.020987574,0.014527864,0.018704625,-0.021415628,0.009987907,-0.019742329,0.023802347,0.0050296243,-0.0038297784,0.00622947,0.010052763,0.0030466358,0.001271188,-0.0144370645,-0.03273958,-0.00059384265,-0.0060608434,-0.03761679,0.017887432,0.012718366,0.008690775,-0.02205122,0.02321864,-0.034659334,0.00092663773,-0.017640978,-0.00019386024,-0.032532036,-0.002252143,-0.012368141,0.016784871,0.048227318,0.013671758,0.022012308,0.03860261,-0.016408702,0.0038070786,-0.025164336,0.007912497,0.019962842,0.02600747,0.0036157519,-0.023179725,0.026279869,0.0033952396,0.0168627,0.011401779,-0.039744083,0.017290752,-0.0092031425,0.015863908,-0.0070304484,0.005470649,-0.007471473,0.028459048,-0.022206876,0.025735073,0.0048058694,0.025553474,-0.009851707,-0.0153709985,0.018224686,0.012037373,-0.020559521,-0.009170714,-0.025449704,0.011434207,0.008651862,-0.011401779,0.042571828,0.0049907104,-0.004475101,-0.004530229,0.030975481,-0.010617015,0.014800261,-0.025761016,-0.014229524,-0.0074909297,0.004303231,-0.026643064,0.042935025,0.04041859,0.021584254,-0.021895565,0.0013409088,-0.0020462237,-0.025021652,-0.028433105,0.014748376,-0.018951079,0.029496752,-0.011226666,0.016123334,0.012452454,0.0011220181,-0.006213256,-0.011401779,0.047293384,0.0013538802,-0.017044296,0.017939318,0.009339341,-0.015850937,0.004209189,0.0021905294,0.025929643,0.023996918,0.020377923,0.00868429,0.02978212,0.02114323,-0.011259095,-0.011213695,0.005580905,0.012283827,0.0051787943,0.0015208857,-0.0060349004,-0.0035671094,-0.003518467,-0.010266789,0.013237218,-0.021363743,0.02251819,0.008749146,0.027032204,0.009987907,0.016162248,-0.012329227,-0.00050304347,-0.0020818948,-0.02372452,-0.031157078,-0.0013271269,0.010415959,-0.0020316308,0.012828623,0.02253116,-0.0088594025,-0.0058176313,0.023192696,-0.0020640593,0.0026137184,0.026552266,-0.014034954,0.009721994,0.0009898728,0.009417169,0.036475316,-0.018289542,-0.0075752432,0.022453332,0.004899911,-0.016707044,-0.65001816,-0.02461954,0.0042708027,-0.020987574,0.01627899,0.035800807,0.019677473,-0.0030109647,0.013788499,0.010461359,-0.0075363293,0.008612948,0.03235044,0.0045723855,-0.008664833,-0.023958003,-7.283693e-06,-0.031079251,-0.027525114,0.0023591565,-0.03582675,0.01160932,-0.0080227535,-0.034503676,-0.02639661,0.010934812,0.023011098,0.007614157,-0.03891392,0.036916338,-0.00863889,0.0136977,0.012108715,0.02341321,0.04485478,0.0025893971,-0.034814987,0.019080792,0.013580958,0.02163614,0.005353907,-0.024165545,-0.0036352088,-0.021804767,0.012108715,-0.012698909,0.01136935,-0.007691985,-0.0003970436,-0.03595646,0.01787446,-0.01116181,-0.01896405,0.005684675,0.0124719115,0.0007097737,0.008405407,0.0047020987,0.029626464,0.00069193816,-0.017796634,0.03017126,-0.037071995,0.00016001322,-0.021091346,0.014527864,0.0013717157,-0.021519398,0.0023834775,0.00080503174,-0.0011163431,0.025281077,-0.014281409,-0.011764975,-0.0061321855,0.030638227,0.022959214,0.00086826686,-0.017498292,0.014748376,0.0033919967,-0.021610197,0.020767063,-0.037071995,0.016590301,0.014826204,0.016694073,-0.016097391,0.0074001304,-0.0044524013,0.044076502,0.010039791,0.0021045946,-0.03561921,-0.021662083,-0.0057138605,-0.02799208,-0.008009782,-0.016720014,0.004682642,0.01380147,0.0011041824,-0.0037843788,0.016940527,0.014761347,0.013126963,0.021895565,0.021091346,0.029730236,-0.023075955,-0.008191381,-0.03997757,-0.014540835,-0.012342199,0.007880069,-0.01186226,0.0043810587,-0.02342618,0.011810374,-0.0130361635,0.030586341,-0.020377923,0.013172362,-0.004004891,-0.019132677,0.008016268,-0.005165823,-0.034348022,-0.02360778,0.011375836,-0.0069331634,-0.020157412,0.00082408334,0.011654719,-0.0015411534,0.0182636,0.00563279,-0.017394522,0.01275728,-0.03473716,-0.0072379895,0.0029915078,0.007899526,0.013905241,-0.012205999,-0.019820157,-0.013814442,-0.0048512686,0.005292293,-0.008398921,-0.023867205,-0.006569967,-0.0029428652,0.0454774,0.02293327,0.0040859617,-0.0470599,-0.030197203,-0.019534789,-0.0013749585,-0.006158128,0.020507636,-0.016240077,-0.020767063,0.013386388,-0.021104317,-0.008697261,0.023504008,-0.0008528634,-0.016849728,0.01617522,0.016694073,-0.0046307566,0.025527531,-0.0060284147,0.01965153,-0.009702537,-0.00019152946,0.013490159,-0.020533578,0.017303724,-0.00972848,-0.0064629535,0.002346185,0.003965977,0.004643728,0.024282286,0.012523796,-0.016629215,0.010707814,-0.012193029,0.01796526,0.015941735,-0.01906782,-0.015656367,0.02035198,-0.0063202693,0.0060738144,0.025838843,0.024113659,0.00045156362,0.010415959,0.0070434194,-0.009164228,0.01777069,-0.012193029,0.001492511,0.0054155206,0.0005184469,0.027966138,0.026215011,0.0013473945,-0.010104648,-0.008158952,0.007769813,0.038265355,0.009948992,0.021311857,-0.005723589,0.009994392,0.0026607392,0.016538417,-0.00011512035,-0.027758596,-0.013477188,0.0036773656,0.02123403,0.031857528,-0.0057171034,-0.03551544,-0.007263932,0.013113991,0.0047993837,0.009021544,0.005000439,0.011285037,0.0001437991,-0.02312784,0.030716054,-0.0064532254,-0.020390894,0.027058147,0.030145317,-0.013762557,0.01359393,0.008846431,0.03144245,0.020793006,-0.012095744,0.0010612151,-0.018315485,0.0028066665,-0.016110362,0.0074390443,-0.009144771,-0.031338677,0.036164004,0.00029307045,0.01766692,0.021195116,0.007257446,-0.02251819,0.004698856,-0.00070572016,-0.00844432,0.01797823,0.016382761,-0.02570913,0.011777947,-0.012387598,0.007581729,-0.0005573608,0.039873797,0.020468723,0.020572493,0.01796526,0.0013555016,-4.957978e-05,-0.010448388,0.019210506,-0.012530282,-0.032532036,-0.011187752,0.005126909,0.014566777,0.006307298,-0.019612616,0.0026347968,-0.008243266,0.026876548,-0.004111904,0.013055621,-0.017783662,0.044543467,0.029444866,-0.017290752,0.05089941,0.012270857,0.002663982,-0.010007363,-0.009021544,-0.0028018022,-0.010921841,0.0024937338,0.0353079,-0.008548091,0.010143562,-0.015954707,0.0028374733,-0.008697261,-0.01815983,-0.015604482,0.004786412,-0.01886028,0.017926347,-0.0021743153,7.144353e-06,-0.015773108,0.020027697,0.010986697,-0.01965153,-0.014644605,-0.016914584,0.021713968,0.09007276,0.0035314383,-0.014852147,0.019703414,-0.031805646,0.002694789,-0.016110362,-0.023140812,0.010707814,0.0039984053,-0.022310648,0.0046339994,0.0183544,-0.022946242,0.027836425,0.012491369,0.0077503556,-0.0013173984,-0.02908167,-0.00859349,-0.019521818,-0.012089258,0.048227318,-0.0034892815,0.021117287,-0.009994392,0.031157078,0.022038251,-0.007821698,-0.029470809,-0.011304494,-0.013944155,-0.02281653,-0.0065959096,-0.0027920739,0.034192365,-0.0013546909,0.026150154,-0.015254257,0.008619433,0.02669495,0.015487741,-0.012342199,-0.018445197,-0.011927117,0.013373418,-0.02957458,0.014151696,-0.010104648,-0.0005046649,-0.0007081523,-0.014346265,-4.012998e-05,-0.0064888964,-0.0041832463,0.024152573,0.005425249,-0.02352995,0.005619819,-0.039147403,0.0051787943,-0.018834338,-0.0075298436,-0.001965153,0.0046339994,-0.013321532,0.010124105,-0.012497854,-0.0012979414,0.0004248103,0.03779839,-0.036760684,-0.005892216,0.009858193,0.0410931,0.008463778,-0.008976145,0.011933602,0.017809605,0.05074375,0.024788167,-0.0070823333,-0.0004734527,-0.02044278,-0.0075363293,0.014138725,-0.0136977,0.019794215,0.00093069125,0.008210837,0.02144157,-0.02819962,0.026111241,0.024087718,-0.016149277,0.020468723,0.004342145,-0.00024645482,-0.016434645,-0.023672635,-0.009462568,-0.0049517965,-0.011239638,-0.020429809,-0.0013936048,0.020105526,-0.0033336258,0.004958282,-0.016512474,0.013879298,0.01795229,-0.013918213,0.015708253,0.003576838,-0.017550178,0.016019564,-0.00858052,-0.0051398803,-0.0054965913,0.0048123547,-0.0026137184,-0.024969766,0.019223478,0.011077496,-0.027499171,0.024788167,-0.009715509,-0.01195306,-0.020494664,-0.0063851257,0.009358798,0.014411122,-0.014255466,-0.015760139,-0.0052793217,-0.012063315,0.0046015712,0.020909747,-0.007075848,-0.034114536,-0.0084897205,0.013373418,0.0060576005,-0.003228234,-0.010487301,-0.030716054,0.013003735,0.022064192,-0.00868429,0.006605638,-0.028018022,-0.0056717037,-0.01856194,0.011135867,0.008509178,0.0010604043,-0.014112782,-0.0183544,0.038732324,0.047241498,-0.002843959,0.0041281185,0.02442497,0.004338902,0.0019797457,0.0008593491,-0.0016911342,-0.016642187,-0.007432559,0.014060897,0.012737824,0.017044296,0.016486531,-0.0031244636,-0.0142165525,0.001027976,0.0064629535,-0.017939318,-0.010714299,-0.0013660408,-0.01965153,-0.0066153663,-0.021999337,0.009397712,-0.012043859,-0.013016706,0.032168843,0.0183544,0.010707814,-0.011187752,0.035178185,-0.00271911,0.009741452,0.007867098,0.022686815,-0.043739248,0.008301636,-0.036968224,-0.010928326,0.0004787223,0.012776737,-0.0040924475,-0.007990325,-0.022505218,-0.0040665045,0.033595685,-0.029367039,-0.010480816,0.009968449,-0.031546216,0.00016862698,-0.015396941,-0.021000545,-0.009799822,0.021000545,0.026720893,-0.010513244,0.0045432,-0.021713968,-0.015889851,0.015734196,-0.0018613825,0.03432208,-0.01707024,0.021675054,0.016551388,0.0056263045,-0.016745957,-0.026215011,-0.019923927,0.0048804544,0.0069720773,0.023737492,0.0012136279,-0.023737492,0.012290313,-0.016032536,-0.0048869397,-0.0027823453,-0.0007823319,0.014268437,0.008184895,-0.03305089,-0.018393314,-0.003596295,0.029055728,-0.004173518,0.0039919196,-0.0052112225,-0.02382829,-0.015046716,0.0057527744,-0.017628007,0.0027434314,0.016486531,-0.021623168,0.007951411,-0.025462676,0.0005881677,0.0077049565,-0.022336591,0.0044426727,-0.033024948,0.019132677,0.0012606488,-0.0029898863,0.0053863353,-0.0028553088,0.013386388,0.030119374,-0.012997249,-0.018912164,-0.0032233698,0.00025902077,-0.0015257499,-0.02341321,-0.01489106,-0.0036773656,0.0003518467,-0.012562711,0.01607145,0.009494997,0.0006262709,-0.012692424,0.013269647,-0.022946242,-0.004047048,-0.00411839,0.020805975,0.0020429809,-0.024009889,0.001749505,0.011375836,0.0059603155,0.028926015,-0.005120423,0.00065383496,0.01886028,-0.019495875,-0.0031390563,0.006300812,0.0025666973,0.007724413,0.016745957,-0.024982737,-0.012912936,0.024243373,-0.012919421,-0.019340219,-0.017939318,-0.004303231,0.004287017,-0.018717596,0.0018970537,-0.014346265,0.0077049565,0.0023526708,-0.011739032,-0.019314276,-0.0006680223,-0.014527864,-0.0035703522,0.014307352,-0.012413541,-0.004997196,-0.009112343,0.019923927,-0.015267228,-0.036241833,-0.03377728,-0.023581836,0.01429438,0.0021856653,0.015799051,-0.014852147,0.016564358,-0.024736281,0.0012403813,-0.007523358,0.0013498266,-0.01627899,0.009053973,0.04028888,0.0057171034,0.0021905294,0.012186543,-0.005820874,-0.013944155,-0.04158601,-0.004364845,0.004248103,0.03663097,0.019145649,0.018484112,-0.035281956,0.0045561716,-0.061899077,-0.030897653,0.016460588,0.0028358519,5.786419e-05,0.030430686,0.005785203,0.01081807,0.0088594025,0.012718366,-0.034425847,-0.018600853,0.015409913,-0.004342145,0.00853512,-0.031779703,-0.015487741,-0.013827413,0.017887432,0.001379012,0.0018808395,0.020196324,-0.008723204,-0.018328456,0.008561063,0.020909747,-0.0034665817,0.014878089,0.01707024,-0.013840385,-0.0005257433,0.013023192,-0.013529073,-0.027628884,0.024762224,0.007659557,0.01329559,0.0092290845,0.024801139,-0.0004819651,-0.011492578,-0.0054187635,-3.3188305e-06,-0.020274153,-0.02054655,0.019508846,-0.002216472,-0.033102777,0.0037097938,0.015539626,-0.002788831,0.008619433,-0.0024775197,-0.029159497,-0.010338131,-0.0055257767,0.02809585,-0.02918544,-0.012017916,-0.0064694392,0.00090312725,-0.022803558,0.0044102445,-0.0054220064,0.026526323,0.009443112,-0.0069915345,0.022946242,-0.016304933,0.004228646,0.020364951,-0.02014444,0.0041086613,0.010798613,-0.029548638,-0.01886028,0.0020381166,-0.001843547,-0.017628007,0.011693633,0.21771042,0.0007644964,0.014800261,0.030638227,-0.013814442,0.021908537,0.016732985,0.009209628,0.0033174118,0.012783223,-0.005425249,0.019820157,-0.0037324936,-0.0004848026,0.0058857305,-0.046100024,-0.015526654,-0.0035087385,-0.0168627,0.042909082,0.0025050836,-0.019106735,0.0012014674,-0.0021726938,0.019729357,0.013159391,-0.033517856,0.0036384517,0.026954375,0.021973394,-0.013516102,0.0042708027,-0.0115379775,0.0137755275,-0.021610197,-0.019340219,-0.0009436626,0.017420465,0.0137495855,0.0071990755,-0.009112343,0.00051236665,-0.013334503,-0.028744416,0.014865118,0.009650652,-0.005201494,-0.016564358,0.008256237,-0.009572824,-0.046982072,0.010759699,0.014346265,0.0041281185,-0.0062748697,0.0066348235,-0.015824994,0.028069908,0.0011390429,-0.0057138605,-0.012426512,0.026850605,-0.014112782,0.031520277,-0.019716386,1.4858733e-05,-0.023283496,0.0017576121,-0.006012201,0.003106628,-0.0077179275,0.007225018,-0.019405074,0.006300812,-0.0035054956,-0.028303392,0.022998126,0.032402325,0.0047474983,0.033517856,-0.0072769034,0.014735404,-0.021454541,0.0075687575,-0.006197042,-0.0012452455,0.025812902,-0.013029678,-0.0116612045,-0.010422445,-0.0059570726,-0.009598767,-0.001141475,-0.018535998,0.0030320429,0.020105526,-0.019703414,-0.00017987554,0.004335659,0.0056814323,0.003366054,0.03203913,0.029237326,0.0056749466,-0.010402988,-0.0022586288,0.015293171,0.034348022,0.014748376,-0.008347036,-0.020170381,-0.012731338,0.021921508,-0.024191488,0.014346265,0.025825871,-0.017550178,-0.037149824,0.0011171538,-0.005084752,0.015228314,-0.005519291,-0.0051723085,0.0060349004,-0.0054868627,-0.020235239,-0.00036725012,0.026344724,0.003651423,-0.03175376,0.005402549,-0.014463007,-0.009851707,-0.011589862,0.005863031,0.007549301,0.021272942,-0.02877036,-0.014748376,-0.0040859617,-0.00719259,0.01847114,0.01166769,0.008619433,0.014333294,0.006693194,-0.006375397,0.010831041,0.012575682,-0.016953498,-0.019521818,-0.0021483726,-0.008671318,-0.023309438,0.0059408587,0.004215675,-0.020793006,0.0054155206,0.002197015,0.001918132,-0.023996918,-0.010552159,0.0273954,0.018574912,-0.020870833,-0.0028747658,-0.16312715,0.02770671,0.0056684613,0.014320322,0.038576666,-0.0055873906,-0.0028763872,0.00049655786,0.014929974,0.004773441,0.026539294,-0.032687694,-0.032583922,-0.020170381,0.034607448,0.0084897205,0.003173106,0.03582675,0.029211383,0.010331646,0.035852693,-0.009987907,-0.0034309106,-0.002918544,0.014333294,0.021298885,-0.005898702,-0.009021544,0.009060458,-0.01568231,0.006693194,-0.02242739,0.04350576,0.01359393,0.006725623,-0.0303788,-0.017926347,-0.018977022,0.0014090082,0.025034621,0.02481411,0.022193907,0.002393206,0.022712758,0.013023192,0.011628777,0.01136935,-0.010143562,0.014852147,-0.0055679334,0.022297677,-0.048875883,-0.010286246,0.009644167,0.0022294433,-0.00093150197,-0.012238428,-0.0019359676,0.0012476776,-0.028173678,-0.0034698246,-0.00053668785,0.007672528,-0.021882595,-0.0030061004,-0.007464987,0.0004848026,-0.0012047101,-0.026331753,0.013451246,0.00083259575,-0.00090393797,0.011576891,-0.02263493,-0.0006664009,-0.012205999,-0.02173991,0.00073125743,-0.009572824,0.00334984,0.008061667,-0.0013725264,-0.010999668,0.010351103,-0.023880176,-0.013477188,-0.0123486845,0.009559853,-0.030508514,-0.0077892696,0.029367039,-0.031779703,-0.023478065,-0.0023948275,0.013263161,0.036890395,0.024736281,-0.028900072,-0.00878806,-0.005820874,0.019119706,0.0044621294,-0.005619819,0.015474769,0.03938089,0.010766185,-0.0019570459,-0.0004248103,0.033024948,-0.0034665817,-0.017420465,0.016123334,0.036086176,0.026189068,-0.021675054,0.009300427,-0.0031552704,-0.0048966683,-0.0029396224,-0.0007827373,0.053856865,0.01111641,-0.0034179394,0.00503611,-0.029003842,-0.010454874,-0.10122808,-0.04010728,0.017355608,0.002576426,-0.020403866,0.027213803,0.005726832,0.02175288,-0.0069591063,0.023205668,0.020287124,-0.027836425,-0.023192696,-0.013347475,0.0053603924,-0.005120423,-0.024541713,-0.009812794,-0.05489457,0.009585796,-0.023542922,-0.027084088,-0.0029039513,-0.0055614477,-0.006197042,0.0046729133,-0.03203913,0.008814003,0.01886028,0.022090135,0.0039562485,0.003631966,0.0096701095,-0.028926015,0.020027697,0.0038589637,-0.016655158,-0.006326755,0.03642343,-0.023841262,-0.011693633,-0.005405792,0.0077892696,-0.051859286,0.0030109647,-0.011531492,0.008872374,0.007225018,0.007153676,-0.009138286,-0.024386058,0.0072379895,-0.029367039,-0.025151365,-0.005467406,-0.005901945,-0.009825765,-0.0060284147,-0.011570406,-0.012731338,-0.006514839,-0.0114406925,-0.025086507,0.0022634931,-0.0031990486,-0.0049096397,-0.0043843016,0.018795423,0.021454541,-0.036189947,0.0020348737,0.0014049547,-0.015059687,0.032506093,-0.01796526,-0.0019992027,-0.018691653,-0.0056392755,0.010915355,-0.012783223,-0.0018565183,-0.03346597,0.004157304,-0.027836425,0.009352312,0.0048772115,-0.015422883,0.002556969,0.005087995,-0.023555893,0.018107945,0.023050012,0.020416837,0.0183544,-0.0010085191,-0.02570913,-0.0077957553,-0.009566339,0.018886223,0.009897107,0.006154885,0.0061808275,-0.07627128,0.019586673,-0.017913375,0.0042189173,0.010085191,-0.0023737492,0.012452454,-0.017615035,0.009864679,-0.0019635316,-0.034685273,0.0074260733,-0.006553753,0.006086786,-0.019781243,-0.010941298,0.008969659,0.024411999,0.0043875445,0.0062229843,0.006339726,-0.008775089,0.008807518,0.0060608434,-0.009352312,0.016434645,-0.02541079,0.0034179394,-0.017498292,-0.025423761,0.008314608,0.0023948275,-0.006177585,0.029704293,-0.00049898995,-0.008969659,0.010655928,0.010688357,0.00396922,0.01339936,0.0056360327,-0.037149824,0.013334503,-0.030793883,-0.019443989,-0.01956073,0.003777893,-0.01718698,0.014333294,-0.005859788,0.014424093,0.013516102,-0.020559521,-0.015708253,-0.006719137,-0.028407162,0.026448494,-0.026059356,0.0037941074,-0.012848079,0.012024402,0.017485322,0.008029239,-0.0029963718,0.01854897,0.0053409357,-0.02809585,-0.019469932,0.026876548,0.015409913,0.011434207,-0.005577662,0.015409913,-0.010526216,0.0135031305,0.00047547946,-0.0019359676,-0.006472682,0.0025958829,0.012108715,0.0017997689,0.00055573945,-0.02284247,0.021960422,0.024165545,-0.0033790255,-0.046203796,-0.009845222,-0.0129388785,-0.0008479992,-0.013107506,0.0059797727,-0.014488949,-0.01389227,0.0101630185,-0.007413102,-0.01051973,-0.004685885,-0.013464216,0.018315485,0.0016505988,-0.0017640977,-0.009157742,-0.037383307,-0.022219848,-0.0047637126,-0.008509178,-0.010999668,-0.02341321,0.029730236,0.0012557846,0.019820157,0.018237658,0.0018143615,-0.036553144,0.00021706671,-0.0062359557,-0.0017657191,-0.007205561,0.015630424,0.006440254,0.0021127015,0.020079583,-0.02372452,0.00637864,0.006437011,-0.013542044,-0.028018022,-0.0020575735,0.0014535971,-0.0087361755,-0.011739032,0.0068229074,-0.00859349,-0.015435855,-0.0018678682,0.0106689,0.012439483,0.0013003735,0.04524392,0.0024434698,0.0024661697,-0.008113553,0.012394084,0.03128679,0.011252609,0.0085156625,-0.027732654,-0.015111572,0.0001005783,0.019599644,-0.023867205,0.011388808,-0.008003296,0.025955586,-0.011427721,0.0009185307,-0.029003842,-0.0028066665,0.01156392,-0.0013222626,0.020040669,0.0006809936,-0.026227983,-0.005934373,0.012465426,0.02521622,-0.0111942375,-0.025138393,0.022116078,0.0056263045,-0.038784206,-0.021156201,0.025319992,0.011285037,-0.01687567,-0.005188523,0.022803558,0.017796634,-0.0151504865,0.015539626,-0.021156201,-0.003208777,-0.021182144,-0.0006368101,-0.020689234,-0.0032801193,0.008742661]']\n"
]
}
],
"source": [
"query = \"Artificial Intelligence\"\n",
"vec_query = get_embeddings(query)\n",
"\n",
"sql = f\"SELECT * FROM fortune_100 ORDER BY embedding <-> '{vec_query}' LIMIT 5;\"\n",
"\n",
"try:\n",
" # Execute the SQL command\n",
" cur.execute(sql)\n",
"\n",
" # Fetch all the rows in a list of lists.\n",
" results = cur.fetchall()\n",
"\n",
" # Print results\n",
" for row in results:\n",
" print(row) # Adjust print formatting as needed\n",
"\n",
"except Exception as e:\n",
" print(\"An error occurred:\", e)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Add News & Sales Data\n"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"from pgcopy import CopyManager"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"# Create news and sales tables\n",
"cur.execute(\"DROP TABLE IF EXISTS sales\")\n",
"cur.execute(\"DROP TABLE IF EXISTS news\")\n",
"cur.execute(\n",
" \"CREATE TABLE IF NOT EXISTS news (id SERIAL PRIMARY KEY, company_id TEXT, title TEXT, body TEXT, url TEXT, published_at TIMESTAMP)\"\n",
")\n",
"cur.execute(\"CREATE TABLE IF NOT EXISTS sales (transaction_id TEXT, company_id TEXT, date TIMESTAMP, amount FLOAT)\")\n",
"conn.commit()"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"253\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>id</th>\n",
" <th>company_id</th>\n",
" <th>title</th>\n",
" <th>body</th>\n",
" <th>url</th>\n",
" <th>published_at</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>Walmart $4 find makes car interior look brand ...</td>\n",
" <td>DRIVERS are in the mood for a vehicle re-vamp ...</td>\n",
" <td>https://www.the-sun.com/motors/10845977/driver...</td>\n",
" <td>2024-03-21 09:31:00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>Police searching for man, woman after incident...</td>\n",
" <td>Holly Springs Police Department is asking you ...</td>\n",
" <td>https://www.yahoo.com/news/police-searching-ma...</td>\n",
" <td>2024-03-21 05:18:49</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>How media buyers view the retail media landsca...</td>\n",
" <td>The promise of wealth, or in this case, ad dol...</td>\n",
" <td>https://digiday.com/marketing/how-media-buyers...</td>\n",
" <td>2024-03-21 04:02:42</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>4</td>\n",
" <td>8bc636b5-95d7-58d7-88a3-d3c4faaed252</td>\n",
" <td>Ninja cuts £100 off popular air fryer as Amazo...</td>\n",
" <td>Popular kitchen brand Ninja has slashed £100 o...</td>\n",
" <td>https://www.getsurrey.co.uk/whats-on/shopping/...</td>\n",
" <td>2024-03-21 09:34:08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>5</td>\n",
" <td>8bc636b5-95d7-58d7-88a3-d3c4faaed252</td>\n",
" <td>Amazon benefits from stellar Astera Labs debut</td>\n",
" <td>Amazon.com Inc (NASDAQ:AMZN, ETR:AMZ) is set t...</td>\n",
" <td>https://www.proactiveinvestors.co.uk/companies...</td>\n",
" <td>2024-03-21 09:31:34</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" id company_id \\\n",
"0 1 73d5d45c-2547-580c-8421-e4819278af3a \n",
"1 2 73d5d45c-2547-580c-8421-e4819278af3a \n",
"2 3 73d5d45c-2547-580c-8421-e4819278af3a \n",
"3 4 8bc636b5-95d7-58d7-88a3-d3c4faaed252 \n",
"4 5 8bc636b5-95d7-58d7-88a3-d3c4faaed252 \n",
"\n",
" title \\\n",
"0 Walmart $4 find makes car interior look brand ... \n",
"1 Police searching for man, woman after incident... \n",
"2 How media buyers view the retail media landsca... \n",
"3 Ninja cuts £100 off popular air fryer as Amazo... \n",
"4 Amazon benefits from stellar Astera Labs debut \n",
"\n",
" body \\\n",
"0 DRIVERS are in the mood for a vehicle re-vamp ... \n",
"1 Holly Springs Police Department is asking you ... \n",
"2 The promise of wealth, or in this case, ad dol... \n",
"3 Popular kitchen brand Ninja has slashed £100 o... \n",
"4 Amazon.com Inc (NASDAQ:AMZN, ETR:AMZ) is set t... \n",
"\n",
" url published_at \n",
"0 https://www.the-sun.com/motors/10845977/driver... 2024-03-21 09:31:00 \n",
"1 https://www.yahoo.com/news/police-searching-ma... 2024-03-21 05:18:49 \n",
"2 https://digiday.com/marketing/how-media-buyers... 2024-03-21 04:02:42 \n",
"3 https://www.getsurrey.co.uk/whats-on/shopping/... 2024-03-21 09:34:08 \n",
"4 https://www.proactiveinvestors.co.uk/companies... 2024-03-21 09:31:34 "
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"news_df = pd.read_csv(\"data/news_data.csv\")\n",
"\n",
"print(len(news_df))\n",
"news_df.head()"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[(1,\n",
" '73d5d45c-2547-580c-8421-e4819278af3a',\n",
" 'Walmart $4 find makes car interior look brand new thanks to deep spring clean',\n",
" 'DRIVERS are in the mood for a vehicle re-vamp after a TikToker showed them how their car can look brand new in just a few hours.\\n\\nWhile many people start spring cleaning their homes, TikTok users have been reminded not to forget their cars.\\n\\nNatalie Steinman (@nataliesteinman) showcased how she gets her vehicle looking brand new with some elbow grease, easy changes, and a little-known children\\'s toy that doubles as a cleaning product.\\n\\n\"Let the spring cleaning comments,\" Steinman told viewers in the caption of the video.\\n\\nSteinman focuses entirely on the interior of her car and starts by filling a trash bag full of receipts, empty bottles, and food wrappers.\\n\\nShe then removes the mats which she later cleans with soap and water and scrubs with a toilet brush.\\n\\nUsing a car hoover she then removes any crumbs and dirt from her Ford\\'s carpets and storage areas.\\n\\nThe TikToker then showed off the most ingenious cleaning hack using a children\\'s toy that can be bought at Walmart for less than $5.\\n\\nWhen it comes to cleaning cars, all drivers know the problem of getting dirt and dust out of various hard-to-reach areas like air vents.\\n\\nHowever, by using Silly Putty, Steinman can easily mold the slime into these problem areas.\\n\\nThis then picks up the dirt and removes it without leaving a mark.\\n\\nThe TikToker can be seen wiping the slime over her navigation and central console as well as the gear shift and inside cup holders.\\n\\nShe then uses wipes and screen cleaner to finish it all off, not forgetting the leather seats.\\n\\nOnce the mats are washed and have been dried with a leaf blower, they are placed back inside the vehicle and she adds a stylish car trash bag to the back and storage boxes in the trunk.\\n\\nFor moms and female drivers, the TikToker reminded them that a bag of essentials is always useful to keep in the car.\\n\\nSteinman fills a small cosmetics bag with tampons, lip gloss, Advil, perfume, and mascara which she then places on the armrest next to the driver.\\n\\nOther items that may be useful to store in the vehicle include tissues, wipes, small snacks, band-aids, a phone charger, and sanitary pads.\\n\\nAfter some hard work, Steinman rewarded herself with a new key cover for her fob which was the final touch to make the car look and feel brand new.\\n\\n\"Giving me the motivation,\" one viewer commented as others fell in love with the key cover from Amazon.\\n\\nOne tip includes how to do the Japanese door trick which does not involve any additional items but effectively displaces hot air and cools the interior.',\n",
" 'https://www.the-sun.com/motors/10845977/drivers-rave-spring-car-cleaning-walmart-find/',\n",
" '2024-03-21 09:31:00'),\n",
" (2,\n",
" '73d5d45c-2547-580c-8421-e4819278af3a',\n",
" 'Police searching for man, woman after incident at a Canton Walmart',\n",
" 'Holly Springs Police Department is asking you to be on the lookout for two suspects.\\n\\nPolice said the man and woman pictured are persons of interest in an open investigation.\\n\\n[DOWNLOAD: Free WSB-TV News app for alerts as news breaks]\\n\\nPolice said the incident happened at the Wal-Mart on Holly Springs Parkway in Canton.\\n\\nAt this time, details on why the suspects are wanted have not been shared by police.\\n\\nPolice provided a photo of the vehicle they drove away in.\\n\\nTRENDING STORIES:\\n\\nIf you have any information on either of the suspects, please contact The Holly Springs Police Department.',\n",
" 'https://www.yahoo.com/news/police-searching-man-woman-incident-035624244.html',\n",
" '2024-03-21 05:18:49'),\n",
" (3,\n",
" '73d5d45c-2547-580c-8421-e4819278af3a',\n",
" 'How media buyers view the retail media landscape -- from Amazon to Walmart to Wawa',\n",
" 'The promise of wealth, or in this case, ad dollars, has the marketplace heating up with scads of retailers, from first-movers like Amazon to newcomers like Wawa convenience store -- even to the unsuspected like Cars.com automotive company.\\n\\nBy the end of this year, retail media ad spend is expected to make up one-fifth of worldwide digital ad spend, scooping up $140 billion, which is up from the forecasted $115 billion in 2023, according to eMarketer.\\n\\nRetail media is a growing space, no doubt. Especially as advertisers are eager to plug the holes Google\\'s third-party cookie deprecation is leaving behind. But that growth has led to fragmentation as agencies grapple with where to spend client ad dollars that\\'ll give the most bang for their buck.\\n\\n\"From where we sit as an agency, it\\'s certainly making our lives and our day-to-day work more exciting, more challenging,\" said Ethan Goodman, evp of digital commerce at The Mars Agency.\\n\\nIn regards to the biggest players in the space, like Amazon Ads, Roundel (Target\\'s retail media business), Walmart Connect and Albertsons Media Collective, he said, \"They have significantly improved and scaled their capabilities -- their audience and targeting capabilities, their measurement capabilities. Really practically, they\\'ve improved their channel offering and the breadth of their channel capabilities.\"\\n\\nDigiday caught up with Goodman and other agency executives to talk about how the retail media competition is looking -- and the players most on their radar.\\n\\nAmazon Advertising launched in 2012, giving it a first-mover advantage in the space and making it almost synonymous with the concept of retail media. This year, Amazon is expected to hoover up 74% of the nearly $60 billion in U.S. digital retail media ad spend, according to eMarketer\\'s forecasts. Given its pure scale, Amazon could stand as an unexpected beneficiary of Google Chrome\\'s third-party cookie fallout once the dust settles.\\n\\nAs its business matures, the mammoth-sized company has made recent ad tech and artificial intelligence upgrades to enhance its offering as well as new inventory, selling ads on Prime Video to advertisers. This layers on top of its self-service ad solution through its owned streaming services like Freevee, Twitch and Thursday Night Football, and in-store advertising through Whole Foods Market and Amazon Fresh, making it a top contender for ad dollars.\\n\\n\"A lot of our brand national dollars are spent across Amazon,\" said an agency executive who spoke with Digiday and requested anonymity. The exec did not disclose spend figures. \"As CPG becomes more important for Amazon and grocery becomes a bigger deal for them, whether that\\'s through Whole Foods or Amazon Fresh or other places, we\\'re going to see our CPG spend continue to increase.\"\\n\\nBeyond its sheer size (it touts an audience of more than 150 million), Amazon\\'s ad business is an ecosystem with data from Amazon DSP, Amazon Ads APIs and Amazon Marketing Cloud, offering marketers more granular audience insights. Amazon also opened its platform to developers and plug-ins for things like dashboards or other tools.\\n\\n\"They\\'re able to do closed loop attribution, whereby the performance of an impression served on Amazon Prime can be tracked back to what it ultimately helps drive at the Amazon.com level,\" said Harry Inglis, head of activation at Media by Mother, Mother\\'s three-year-old media agency. \"It\\'s hard to compete with.\"\\n\\nAnother early entrant to the retail media competition, Walmart Connect, has moved recently to close the gap between it and Amazon. In February, Walmart announced plans to acquire smart TV manufacturer Vizio for $2.3 billion, bolstering its retail media offering by adding more streaming capabilities. In January, it set its sights on a TikTok integration, offering advertisers sales measurement data and access to the coveted Gen Z audience. Both of these events build on its partnership with Roku, announced in 2022, to bring shoppable ads to streaming. And it helps that Walmart has a massive physical presence with more than 4,600 locations in the U.S., shadowing Amazon\\'s 500 Whole Foods Markets.\\n\\nHaving launched back in 2017, Walmart Connect has spent the last year-and-a-half beefing up its advertising capabilities, including the Walmart Connect Academy Ad Certification program to educate agencies and brands on what it can do. Its latest move with Vizio, and now integration with TikTok, is intended to reach advertisers\\' latest fascination: streaming and digital video.\\n\\n\"The more that they\\'re moving those digital solutions in-store, I think will be some of the growth,\" the anonymous agency exec told Digiday. \"[RMNs] already made partnerships and social, which was smart because that\\'s where people are spending a lot of their time. And then, now where? Now, it\\'s streaming?\"\\n\\nSpending on platforms outside of Amazon, like Walmart, Target and the like, is seeing double-digit growth this year. Notably, Walmart appears to be at the helm of said growth spurt, according to previous Digiday reporting.\\n\\nThe U.S. Federal Trade Commission\\'s decision to block the Kroger-Albertsons merger last month may have put a wrench in growth plans, but Albertsons Media Collective is still one of the top contenders for retail media network spend -- a tertiary challenger, behind the likes of Amazon, Walmart, Target and of course, Kroger, agency execs say.\\n\\nIt only launched back in 2022, but has sparked advertisers\\' interest, noted as a more ambitious player in the space, listening to both needs and wants in the marketplace, per agency execs. Last January, Albertsons became the first advertiser to use LiveRamp and Pinterest\\'s clean room offering to tie offline sales to online behavior.\\n\\nBut perhaps most notably, the grocery chain has started aiming to tackle standardization and measurement issues, a pain point in an increasingly crowded and fragmented marketplace. And that\\'s what sets it apart, per agency execs.\\n\\n\"Albertsons actually came out publicly and are talking all about measurement and standardization,\" said a second agency exec who wished to remain anonymous. \"They\\'re really trying to set the standards, be the retailer that\\'s leaning into these standards.\"\\n\\nIn a sea of retail media networks, agency executives highlighted The Home Depot\\'s unique data as a keen proposition to advertisers. The retailer offers on-site and off-site ad placements and is able to create audiences around specific groups, including people who have recently moved, those who are redecorating, or setting up a business or any other life event. Each of these data points can win over a range of advertisers, whether it be internet providers or insurance companies.\\n\\nThe niche nature of The Home Depot, which launched its offering in 2019, gives it a competitive edge for some executives. Instead of identifiers like demographics or psychographic data, The Home Depot builds audiences based on home projects shoppers are doing -- a data point not easily found within the retail media space, especially at that scale. Notably, the company has more than 2,300 stores across North America.\\n\\n\"Home Depot, they actually have something unique in the sense of they created the retail media plus network,\" said the second agency exec. \"From that capacity, they are trying to not only sell media to their suppliers, but ask their suppliers what they want.\"\\n\\nIn a recent interview with Digiday, Melanie Babcock, vp of Retail Media+ and monetization at The Home Depot, said the company is looking to expand beyond endemic advertisers.\\n\\nInstacart exploded during the pandemic lockdown, when shoppers turned to the delivery service to shop at grocery stores and convenience stores without leaving the comfort of their home.\\n\\nIn a post-Covid world, agency execs wondered if Instacart would continue to thrive and if it would gobble up ad dollars via its retail media network, which launched in 2022.\\n\\n\"We were questioning whether it was true incrementality because a lot of what they were delivering was retailers that we already had agreements with. They were just the delivery platform at the time,\" said the first agency executive. Thus far, they said, it\\'s held up.\\n\\nThis year, the company started looking at off-site retail media, pitching advertisers on Google Shopping ads, which are enhanced by its own retail media data. As Retail Dive recently reported in January, early advertisers for the move include Danone\\'s Oikos and Kraft Heinz\\'s Kraft.\\n\\nThat partnership has sparked advertisers\\' interest as the company\\'s retail partners are making placements available on their shopping cart, an interesting proposition for consumer packaged goods brands, the exec said.\\n\\nOther off-site efforts include a partnership with Roku last April, and ad targeting on Sprouts Farmers Market last May.\\n\\nWith seven years in the retail media network game, Kroger Precision Marketing (KPM) has made a name for itself, partnering with the likes of Cooler Screens, Meta, Pinterest, Roku, Snap, The Trade Desk and others.\\n\\nLike Albertsons, the U.S. Federal Trade Commission\\'s decision to block the Kroger-Albertsons merger may have put a damper on growth. But with recent innovations, growth is expected to continue. The retailer has been steadily growing its ad offering, with efforts to marry online and offline sales data dating back to 2020.\\n\\nLast November, KPM announced new programmatic capabilities with The Trade Desk. Last June, Kroger took its self-service ad platform in-house, giving advertisers access to the grocer\\'s product listing ads as well as display advertising.\\n\\n\"Kroger is one of the top offerings in the U.S.,\" said the second agency executive. \"We think the best data offerings to date. However, they are extremely conservative when it comes to making any type of decisions (innovations, legal, negotiations etc.).\" Again, this is in comparison to retailers like Albertsons, which the agency exec says is more ambitious when it comes to responding to an ever-changing marketplace.\\n\\nKroger may have more red tape, but it has spent the last year-and-a-half shifting to a \"mindset of collaboration,\" according to the first agency executive. The retailer has also started to focus on things like standardization and measurement. All in all, Kroger is considered a top partner for the agency, who said Kroger\\'s offering is on par with Walmart.\\n\\nTarget has been aiming to build a media business to rival Amazon since rebranding as Roundel in 2019. Seemingly, it\\'s making good on its promise, coming in at marketers\\' third most-used retail media network, according to Digiday research, behind Amazon and Walmart.\\n\\nLast October, Target announced that it was enhancing its Roundel retail media business with Roundel Media Studio, a self-service buying tool, premium programmatic publisher partners and experimenting with shoppable connected TV. Roundel has recently been focused on expanding both its onsite and offsite inventory, including new ad formats like shoppable CTV, according to The Mars Agency\\'s Retail Media Report Card, a quarterly assessment and comparison retail media platform comparison tool.\\n\\nIt all makes a compelling argument as far as advertisers are concerned. Meaning Roundel is considered one of the leaders in the retail media landscape, given the retailer\\'s capabilities around audiences, channels and measurement. \"They are also notably ahead of the game when it comes to taking an integrated approach to media and merchandising, and creating both seamless omnichannel experiences for Target guests and holistic, added-value opportunities for brands/advertisers,\" said a third agency exec, who spoke anonymously.\\n\\nWawa convenience store is the latest to throw its hat in the ring as a retail media network competitor. While having only launched weeks ago, agency executives say clients are already interested in its offerings, especially in its fuel pump screen inventory.\\n\\nThe convenience store partnered with Publicis Groupe\\'s Publicis Sapient, Epsilon, and CitrusAd for its offering, with custom ads and campaigns on digital channels like Wawa\\'s websites, mobile app or video ads at a Wawa pump -- a selling point for advertisers looking for more ways to get in front of shoppers.\\n\\n\"In addition to allowing brands to reach their shoppers on their website and inside their mobile app, they\\'re also making some of their gas station screen inventory available,\" said Goodman. \"Some of those unique inventory opportunities are again, a potential point of differentiation for players like that.\"\\n\\nOther selling points are Wawa\\'s audience, which could be unique given it has a cult-like following, and its ability to close the loop from customers seeing an ad at the pump before going into the convenience store to make a purchase. Given, the convenience store chain is smaller with about 1,000 locations in Pennsylvania, New Jersey and Florida. This year, the convenience store opened its first Georgia location.\\n\\n\"For a challenger like Wawa to go out to the brand marketplace and say, \\'I can uniquely reach this audience segment that you can\\'t reach through another retail media network,\\' is a potential way in and is an advantage for them for sure,\" per Goodman.',\n",
" 'https://digiday.com/marketing/how-media-buyers-view-the-retail-media-landscape-from-amazon-to-walmart-to-wawa/',\n",
" '2024-03-21 04:02:42')]"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"list(news_df.itertuples(index=False, name=None))[:3]"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [],
"source": [
"def upload_news(df: pd.DataFrame):\n",
" df = df.copy()\n",
" df = df.drop(columns=[\"id\"])\n",
"\n",
" df[\"published_at\"] = pd.to_datetime(df[\"published_at\"])\n",
"\n",
" data = list(df.itertuples(index=False, name=None))\n",
" copy_manager = CopyManager(\n",
" conn,\n",
" \"news\",\n",
" [\"company_id\", \"title\", \"body\", \"url\", \"published_at\"],\n",
" )\n",
" try:\n",
" copy_manager.copy(data)\n",
" except ValueError as e:\n",
" print(f\"Error occurred: {e}\")\n",
" conn.commit()"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"upload_news(news_df)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"10000\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>transaction_id</th>\n",
" <th>company_id</th>\n",
" <th>date</th>\n",
" <th>amount</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>txn-1</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>2024-03-15</td>\n",
" <td>1764</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>txn-2</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>2023-12-29</td>\n",
" <td>2913</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>txn-3</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>2024-01-04</td>\n",
" <td>1508</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>txn-4</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>2024-01-20</td>\n",
" <td>3662</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>txn-5</td>\n",
" <td>73d5d45c-2547-580c-8421-e4819278af3a</td>\n",
" <td>2023-12-23</td>\n",
" <td>2050</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" transaction_id company_id date amount\n",
"0 txn-1 73d5d45c-2547-580c-8421-e4819278af3a 2024-03-15 1764\n",
"1 txn-2 73d5d45c-2547-580c-8421-e4819278af3a 2023-12-29 2913\n",
"2 txn-3 73d5d45c-2547-580c-8421-e4819278af3a 2024-01-04 1508\n",
"3 txn-4 73d5d45c-2547-580c-8421-e4819278af3a 2024-01-20 3662\n",
"4 txn-5 73d5d45c-2547-580c-8421-e4819278af3a 2023-12-23 2050"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sales_df = pd.read_csv(\"data/dummy_sales_transactions.csv\")\n",
"\n",
"print(len(sales_df))\n",
"sales_df.head()"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"def upload_sales(df: pd.DataFrame):\n",
" df = df.copy()\n",
"\n",
" df[\"date\"] = pd.to_datetime(df[\"date\"])\n",
"\n",
" data = list(df.itertuples(index=False, name=None))\n",
" copy_manager = CopyManager(\n",
" conn,\n",
" \"sales\",\n",
" [\"transaction_id\", \"company_id\", \"date\", \"amount\"],\n",
" )\n",
" try:\n",
" copy_manager.copy(data)\n",
" except ValueError as e:\n",
" print(f\"Error occurred: {e}\")\n",
" conn.commit()"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [],
"source": [
"upload_sales(sales_df)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Combine Vector + Relational Queries\n"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[1, '73d5d45c-2547-580c-8421-e4819278af3a', 'Walmart $4 find makes car interior look brand new thanks to deep spring clean', 'DRIVERS are in the mood for a vehicle re-vamp after a TikToker showed them how their car can look brand new in just a few hours.\\n\\nWhile many people start spring cleaning their homes, TikTok users have been reminded not to forget their cars.\\n\\nNatalie Steinman (@nataliesteinman) showcased how she gets her vehicle looking brand new with some elbow grease, easy changes, and a little-known children\\'s toy that doubles as a cleaning product.\\n\\n\"Let the spring cleaning comments,\" Steinman told viewers in the caption of the video.\\n\\nSteinman focuses entirely on the interior of her car and starts by filling a trash bag full of receipts, empty bottles, and food wrappers.\\n\\nShe then removes the mats which she later cleans with soap and water and scrubs with a toilet brush.\\n\\nUsing a car hoover she then removes any crumbs and dirt from her Ford\\'s carpets and storage areas.\\n\\nThe TikToker then showed off the most ingenious cleaning hack using a children\\'s toy that can be bought at Walmart for less than $5.\\n\\nWhen it comes to cleaning cars, all drivers know the problem of getting dirt and dust out of various hard-to-reach areas like air vents.\\n\\nHowever, by using Silly Putty, Steinman can easily mold the slime into these problem areas.\\n\\nThis then picks up the dirt and removes it without leaving a mark.\\n\\nThe TikToker can be seen wiping the slime over her navigation and central console as well as the gear shift and inside cup holders.\\n\\nShe then uses wipes and screen cleaner to finish it all off, not forgetting the leather seats.\\n\\nOnce the mats are washed and have been dried with a leaf blower, they are placed back inside the vehicle and she adds a stylish car trash bag to the back and storage boxes in the trunk.\\n\\nFor moms and female drivers, the TikToker reminded them that a bag of essentials is always useful to keep in the car.\\n\\nSteinman fills a small cosmetics bag with tampons, lip gloss, Advil, perfume, and mascara which she then places on the armrest next to the driver.\\n\\nOther items that may be useful to store in the vehicle include tissues, wipes, small snacks, band-aids, a phone charger, and sanitary pads.\\n\\nAfter some hard work, Steinman rewarded herself with a new key cover for her fob which was the final touch to make the car look and feel brand new.\\n\\n\"Giving me the motivation,\" one viewer commented as others fell in love with the key cover from Amazon.\\n\\nOne tip includes how to do the Japanese door trick which does not involve any additional items but effectively displaces hot air and cools the interior.', 'https://www.the-sun.com/motors/10845977/drivers-rave-spring-car-cleaning-walmart-find/', datetime.datetime(2024, 3, 21, 9, 31), '73d5d45c-2547-580c-8421-e4819278af3a', \"Walmart is a multinational retail corporation that operates a chain of hypermarkets, discount department stores, and grocery stores. It is one of the world's largest companies by revenue and employs millions of people globally. Walmart is known for its wide range of products at competitive prices, offering everything from groceries and household goods to electronics and clothing. With its online presence and extensive network of physical stores, Walmart serves millions of customers every day, making it a key player in the retail industry.\", {'ceo': 'C. Douglas McMillon', 'city': 'Bentonville', 'rank': 1, 'state': 'AR', 'profit': 13673.0, 'sector': 'Retailing', 'ticker': 'WMT', 'company': 'Walmart', 'revenue': 572754.0, 'website': 'https://www.stock.walmart.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 1, 'market_cap': 352037.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 2300000}, '[-0.012008068,-0.0070781065,-0.004993329,-0.0019025976,-0.03221584,0.0037703433,-0.014282947,0.005104221,0.012122129,-0.0402001,-0.013687297,0.014561763,-0.02410485,-0.005436898,0.005671357,0.015030679,0.023864055,-0.026639534,-0.019618459,-0.03832443,-0.01643743,0.020923821,-0.025372192,-0.0020245793,-0.015182761,0.012331241,0.016893672,-0.012869861,0.029554423,-0.030821765,-0.02402881,-0.032013066,-0.010157748,-0.005478087,0.00022237896,0.0069133523,0.007223851,-0.022241857,0.0094417,-0.022039082,0.01984658,0.034522403,0.0122552,0.016348716,-0.032165147,-0.005291154,-0.0015002164,-0.020936495,-0.0007639698,0.019415684,0.011184296,0.041315358,-0.022634733,-0.005750566,-0.0003766383,0.00840248,-0.0063050278,0.021823633,0.016057227,-0.029757198,-0.0057822494,0.026005864,-0.04919823,0.00853555,-0.025524274,-0.023205038,-0.02828708,-0.003919256,0.0020594313,0.031683557,0.025739722,0.024345646,0.012546688,0.025891803,0.018642604,0.0018835875,-0.0030352848,0.024637135,-0.0011714995,0.006653547,0.007914552,-0.015410882,0.014561763,0.0022511168,0.025765069,0.01718516,-0.014865926,0.02106323,-0.035409544,-0.0017283381,0.0031731082,-0.0061941356,-0.0009829823,-0.018275077,-0.008396143,-0.0021069567,-0.004445203,0.021278678,0.017375262,-0.038425818,-0.014536416,0.017007733,-0.03551093,0.0024871593,-0.0034408343,0.03028948,-0.010626665,-0.018008934,0.038831368,0.01369997,-0.008541887,-0.004619463,0.02772945,-0.013877398,0.00087129785,-0.007946236,0.012730453,0.0036721244,0.03328041,-0.032570697,0.024332972,0.04331776,0.01973252,-0.010804093,0.017425956,-0.002796074,-0.034116853,-0.0011556578,0.018934093,-0.005192935,0.015018006,0.010119728,0.00025683484,-0.019783214,-0.022875529,0.020454904,0.0027390434,0.031201968,0.009004467,-0.012261537,0.010005668,8.069406e-05,-0.02010005,-0.018693298,-0.026614187,0.03784284,0.007154147,0.013459175,0.009733189,0.029376995,0.028464507,-0.0019390337,-0.00062099774,0.0007893166,0.035460237,-0.004068169,0.026436761,-0.0010772409,-0.011754599,-0.026690228,0.0027548852,0.011393407,-0.03173425,0.017717445,-0.018439831,0.01651347,0.02173492,0.01221718,-0.015423556,0.015854452,0.00753435,0.007154147,-0.044255592,0.012052425,-0.002156066,0.010062697,0.006422257,0.024180891,-0.022191163,0.0018661615,0.001398037,-0.0011810046,0.0074139526,-0.0075153396,0.0024681492,-0.021202637,0.021861654,0.02487793,0.035663012,-0.006615527,-0.0014487307,0.019935295,0.00853555,0.010512604,-0.65780133,0.008250399,-0.0075216764,-0.027957572,-0.016779613,0.021367392,0.03649946,0.0130156055,-0.012210843,0.022165816,-0.01895944,0.006849985,-0.00982824,-0.044078164,-0.014536416,-0.022862855,6.217898e-05,-0.009961311,0.01040488,-0.0035010332,-0.00838347,0.03360992,-0.017096447,-0.02917422,-0.014485722,0.032443963,0.010183095,-0.015322168,0.0047810487,0.028084306,-0.012381935,0.020936495,-0.0023303255,0.023002263,0.050490916,0.011000531,-0.0132183805,0.0018059628,0.013776011,0.0033299418,-0.031176621,-0.018617257,0.019580439,-0.019022807,0.009625465,-0.0020625996,0.007464646,0.0042360914,-0.008110991,-0.010214779,-0.0060452227,-0.013307094,-0.0018392305,-0.019555092,0.006057896,-0.001851904,-0.025245458,-0.013649276,-0.009004467,0.0046162945,-0.012356588,0.027298553,-0.0049267933,0.004499065,-0.029959971,0.023673953,0.010626665,-0.004666988,0.010677359,0.026512802,-0.0011081324,0.014435029,-0.025169417,-0.0021307191,0.0133324405,0.033305757,0.005262639,-0.0030859786,0.00272637,0.019504398,0.0036214306,-0.027450634,0.0090868445,-0.026132599,-0.0013742743,0.020074703,0.02217849,-0.013243727,0.019225582,-0.0011714995,0.007268208,-0.0113680605,0.0037259862,-0.023978116,-0.019174889,0.00029366696,-0.007952573,-0.0036150939,-0.0119320275,-0.0013029863,-0.015005332,-0.0053133327,0.0058202697,0.027501328,0.014054826,0.007458309,-0.0013711059,0.030847112,0.02184898,-0.011101918,0.014435029,-0.006270176,-0.015309495,-0.0081616845,-0.014536416,-0.01514474,-0.005297491,-0.027526675,0.0044325297,-0.01836379,0.011101918,0.015005332,0.023572566,-0.0062765125,-0.0047715437,-0.025093377,0.00327608,-0.0133324405,0.0070781065,-0.0005924825,0.00543373,-0.026335374,0.016221981,0.0058646263,0.0053133327,0.015778411,0.020923821,-0.009061498,0.0196945,-0.023635933,-0.016120594,-0.008282082,0.015930492,-0.0073062284,-0.010417554,-0.038197696,0.011558162,0.006314533,-0.044128858,-0.014397008,-0.022533346,-0.01454909,-0.031151274,0.03665154,0.02173492,0.004603621,-0.03928761,-0.01514474,-0.008269409,-0.027856184,0.0010027846,0.011444101,-0.034522403,0.0046574827,0.016158614,-0.016741592,-0.0044737183,0.008852386,-0.0007972375,-0.022900876,0.019707173,-0.0043089637,-0.003136672,0.032241188,0.0017600216,0.03254535,-0.0013109072,0.005870963,0.0069513726,-0.0012443718,0.012787484,0.020480251,-0.015715044,0.0036499458,0.0065331496,-0.0040491587,-0.006362058,0.015753064,-0.02162086,-0.014954639,0.012210843,0.03054295,0.0041632196,-0.016919019,-0.016881,-0.0069070156,0.003554895,0.020594312,0.005227787,0.026107252,-0.010417554,-0.0024824068,-0.008009603,-0.0170711,0.007401279,-0.021291351,-0.008890406,-0.0037798483,-0.00037644026,0.01310432,0.016690899,-0.010398543,0.027146472,-0.0014685328,0.010259136,0.040707033,-0.010620329,0.018680625,-0.01551227,0.012223517,0.03360992,-0.0084785195,-0.01643743,-0.022381265,-0.020378863,-0.005769576,0.004774712,0.027273206,0.0127558,-0.00491412,0.0024602283,0.01944103,0.005167588,0.020176088,-0.008827039,-0.0027152807,0.018832706,-0.02106323,0.02410485,0.010601318,-0.00037168773,0.036271337,0.034344975,0.003659451,-0.012033415,-0.022241857,0.030897805,0.0010138738,-0.017121794,-0.008605254,-0.0032475647,0.01840181,-0.017463977,-0.011076571,-0.022165816,-0.01799626,0.009834576,-0.0030495424,0.03520677,0.019960642,0.0054242252,-0.0052848174,-0.011545489,0.013915419,0.00016881396,-0.016703572,0.02965581,0.0024554757,0.0012602134,-0.0046543144,0.007756135,0.008808029,0.018465178,-0.014485722,0.00710979,0.024611788,0.006010371,-0.0043501523,-0.011317367,0.018465178,-0.0064539406,-0.019263603,-0.0033552886,0.025498927,-0.010252799,0.0018360622,-0.02828708,0.00807297,0.01038587,-0.0010217947,-0.009226252,0.0040491587,-0.01643743,0.0062670074,-0.009371996,0.016133267,0.057334565,0.0042741117,0.024497727,-0.019580439,0.020467578,-0.00037743038,-0.007198504,0.021151943,0.020860454,-0.0010709042,-0.01314234,0.016500797,-0.0021972547,0.003624599,-0.023724647,-0.018503197,0.003367962,-0.012584709,0.006019876,0.003634104,-0.018224383,-0.004635304,0.0038178687,0.010043688,0.0075660334,0.0026059726,-0.023521872,0.0088840695,0.10052559,0.009505067,-0.019935295,0.023927422,-0.021684228,-0.017616058,-0.0329509,-0.0036816294,-0.004711345,0.0006380276,0.0034851914,-0.0119320275,0.013028279,-0.03328041,0.008484856,0.0076040537,-0.00021426006,-0.010468247,-0.00080555445,0.007578707,0.028464507,-0.022926223,-0.0039255926,0.009429026,0.0069070156,0.008294756,0.022774141,0.028515201,-0.013763337,-0.042709436,-0.004480055,-0.017692098,-0.0051359045,0.022229183,0.013307094,0.016906345,-0.015524943,0.020112721,-0.0038717308,-0.005094716,0.027425287,0.016234655,0.002992512,-0.026969044,-0.014447702,0.007623064,0.027019737,0.018427158,-0.027273206,-0.012445302,0.016919019,-0.007952573,-0.008668621,-0.016348716,-0.0013623929,0.009156548,0.013243727,0.012476984,-0.02699439,-0.027045084,0.007952573,-0.0009766456,-0.0066091903,0.00031861776,-0.0188834,-0.023395138,-0.0063810684,0.006875332,0.0018756666,-0.01574039,0.020746393,-0.037158474,-0.014751865,-0.015613657,0.037386596,-0.009207242,-0.006596517,0.018072302,0.026969044,0.016133267,-0.00272637,0.007198504,-0.006830975,-0.016703572,-0.00398896,0.0076357373,0.01418156,-0.00010079332,-0.044230245,-0.010683696,0.004150546,-0.020518271,0.053329762,0.012990259,-0.004967982,0.019010134,0.004356489,0.0017077437,0.0039034144,-0.0028245891,-0.011957374,0.01566435,-0.005959677,0.00084040634,0.018376464,-0.023078304,-0.0058171013,-0.028160345,0.0033077635,-0.0059723505,0.0068436484,-0.0016427925,0.0016966545,-0.008985457,-0.01186866,0.026969044,0.0147772115,0.027856184,0.0045117387,-0.0145744365,-0.0041378727,-0.035156075,0.00199448,0.029858584,-0.008123664,-0.00803495,0.004365994,-0.037158474,-0.03469983,-0.01651347,0.0054939287,0.019174889,-0.010537951,-0.025156744,-0.008617927,0.0039667813,0.005468582,0.0069070156,-0.03799492,-0.033736654,-0.0035422216,-0.009593781,-0.003393309,-0.004210745,-0.0011350635,-0.028489854,-0.0146631505,0.019833907,0.0018297255,0.018477852,0.026081905,-0.02084778,-0.012907881,0.0028340942,0.015170087,-0.030010665,-0.012027078,-0.03229188,0.02362326,0.03913553,0.03350853,0.015081373,0.005059864,-0.008598917,0.011976385,-0.008269409,-0.010709043,0.011406081,-0.016830307,0.015486923,0.0045560957,0.028540548,0.015157414,0.020024009,0.0069513726,0.023205038,0.0010471416,-0.01940301,-0.010721716,0.008396143,-0.003992128,-0.0028293417,-0.014865926,0.015182761,-0.0349533,-0.026056558,0.023433158,0.008130001,0.015651677,-0.023433158,0.004863426,-0.018262403,0.01714714,-0.0007105038,-0.015385536,-0.031125927,0.002670924,-0.0445851,-0.011634203,-0.0057473974,0.009701505,0.012476984,-0.0030653842,-0.01614594,-0.0034661812,0.01676694,-0.01077241,0.01081043,0.021937694,-0.017248528,0.000695058,-0.014206907,-0.021595513,-0.020429557,-0.0029291448,0.02636072,-0.023496525,0.015930492,-0.01574039,-0.05046557,0.0054242252,-0.018541217,0.024561094,-0.0024285447,0.027349247,0.008510203,0.014954639,-0.018034281,0.013028279,-0.01859191,-0.027501328,0.005113726,0.0046891663,-0.011317367,-0.029934624,-0.01595584,-0.021709574,-0.011222316,-0.023268405,0.031227315,0.0041442094,0.01647545,-0.008643274,-0.0014558595,-0.016957039,0.015778411,-0.0074139526,-0.0044483715,-0.0054242252,-0.055763062,-0.031632863,0.01780616,-0.031303354,0.014764538,0.017425956,-0.013978786,-0.004961645,-0.00044594606,-0.034091506,0.024903277,-0.0041251993,0.014675824,-0.021709574,0.02506803,0.012084109,0.010341513,-0.0038432155,0.004961645,-0.0036752927,0.015778411,-0.012356588,0.004191735,0.018237056,-0.005167588,-0.0012095198,-0.013687297,0.007578707,-0.015778411,-0.009992994,-0.007268208,-0.0045465906,0.003830542,0.003535885,-0.018731318,0.0010677358,-0.022343244,-0.028565895,-0.011336377,0.03206376,-0.017007733,-0.025245458,0.007667421,0.015841778,-0.01795824,0.008814366,0.0012641739,0.002379435,0.009169222,-0.015132067,0.029224914,0.0031129096,0.010937164,-0.008231388,0.004302627,-0.0044198562,-0.023597913,0.028337773,-0.003732323,-0.029275607,-0.023179691,0.0015936829,-0.002743796,-0.025574967,0.00025802298,-0.017565364,0.014929292,0.00427728,0.004996497,-0.0026835974,0.011634203,-0.026893003,0.012648076,0.0029735018,-0.019048154,0.008915753,-0.0022305225,-4.834218e-05,-0.019010134,0.00021029961,-0.015981186,-0.0357644,0.013928092,0.012432628,0.021075903,-0.023141671,0.013167687,-0.0060262126,0.005256302,0.0053481846,-0.03905949,0.011545489,0.0023588408,0.012863524,0.0026059726,-0.013066299,0.013370461,-0.011672222,-0.00992329,-0.026081905,-0.0074456357,-0.0047873855,0.030720377,-0.00016049702,-0.011735589,-0.025296152,0.015081373,-0.036296684,-0.029959971,0.039084837,-0.008110991,0.010569635,0.032925554,-0.0013465512,0.026107252,0.0076357373,0.00541472,-0.023255732,0.022609387,0.009587444,-0.0065331496,0.025220111,-0.01928895,-0.026259333,-0.0052689756,0.017261202,-0.016792286,0.007908216,0.0053196694,-0.013547889,0.0037703433,-0.020885801,0.02487793,-0.0049553085,0.0051644198,0.032824166,-0.023902075,0.016260002,0.0076103904,0.0008348617,-0.03110058,0.0245104,-0.0018122995,0.008459509,0.022938896,-0.004641641,-0.0064507723,0.0016855652,0.00982824,0.014346315,0.007242861,0.0039414344,0.019757867,0.0122488635,-0.012413618,-0.00703375,-0.0067739445,-0.0007893166,0.009397343,-0.008763672,-0.014042153,0.002404782,-0.020353517,0.001139816,-0.018439831,-0.011279346,-0.0178822,-0.006742261,-0.018972114,0.024789216,-0.012046088,0.0058392794,0.01414354,0.01090548,0.019162215,0.0036657876,-0.003491528,-0.00011534795,-0.00755336,-0.012331241,-0.0022035914,-0.011874997,-0.01086746,0.00089664466,0.019238256,-0.02443436,0.016830307,0.18918885,0.00422025,0.0014463544,0.039008796,0.0076737576,0.024332972,0.035257462,0.003982623,0.0032348912,-0.012103119,-0.0069133523,0.014979986,-0.0093593225,0.007882869,0.01090548,-0.020632332,-0.024662482,-0.02554962,-0.006596517,0.03262139,0.023230385,0.002849936,-0.014498396,-0.022862855,0.025308825,0.0076800943,-0.013421155,-0.0023493357,0.034598444,0.006317701,-0.02121531,0.004749365,0.00859258,0.0022162648,0.0077688084,0.0015849699,-0.019124195,-0.012388271,0.009815566,0.0017410115,-0.0012784315,-0.0090424875,-0.0236993,0.003437666,0.013928092,0.017869527,-0.011228653,-0.010050025,0.008313766,-0.00491412,-0.03931296,0.0037735116,0.019491725,0.024700502,-0.0026788448,0.016728919,-0.00472085,0.002146561,-0.005167588,0.0014883351,0.0026107251,0.01636139,0.003367962,0.007876532,-0.034522403,0.022457305,-0.027475981,9.8565564e-05,0.0013584325,-0.024092177,0.01081043,0.0059279935,-0.025536947,0.019073501,0.009999331,-0.00990428,0.017387936,0.0145744365,0.0059881923,0.024155544,-0.00013911062,-0.010335176,-0.024079503,0.024928624,-0.0109435,-0.0045370855,0.0045560957,0.0073442487,0.004112526,-0.019504398,0.0043501523,0.006013539,0.0013513038,-0.01740061,0.007876532,0.015448903,0.001335462,-0.0026392404,-0.026056558,-0.0188834,-0.003098652,0.04590314,0.0018471514,-0.016044553,-0.018224383,-0.012641739,0.00072515744,0.014789885,0.0065331496,-0.015322168,-0.00048515448,-0.03649946,0.006083243,-0.028591242,0.0056428416,-0.006004034,-0.0048951097,-0.0106900325,-0.0009774377,-0.01042389,0.006742261,-0.032824166,0.020873128,-0.0150687,0.00036634112,-0.009935964,-0.004746197,0.010892807,-0.0035644001,-0.034902606,-0.010005668,-0.0014194234,0.017273875,0.007578707,-0.0050250124,-0.0068689953,-0.007939899,0.004286785,-0.026538149,0.011082908,-0.024662482,0.007832175,-0.00840248,-0.007382269,0.0069957296,0.0051454096,-0.0016681392,0.012907881,0.016665552,-0.008846049,-0.011431428,-0.01418156,0.019960642,-0.0027485485,0.024332972,0.00425827,-0.005753734,-0.0007857522,0.015639003,-0.0236993,-0.018503197,-0.02828708,0.04346984,0.009980321,-0.009961311,0.011824303,-0.15725183,0.009536751,-0.008212378,0.018300423,0.04653681,0.019301623,0.011976385,0.0038780675,-0.010715379,0.003516875,0.014232254,-0.028261732,-0.031607516,-0.023255732,0.011862324,-0.008326439,-0.0038432155,-0.001504969,-0.010069034,0.00986626,0.043672614,0.009264272,0.014561763,-0.014270274,0.0066028535,0.02373732,0.00947972,0.023864055,0.025448233,-0.0028736987,8.178318e-05,-0.039034143,0.008472183,-0.0031636031,-0.01127301,0.0012515006,0.0005326798,-0.01310432,-0.00075565284,0.012635402,0.03561232,0.015182761,-0.012438965,0.013028279,0.019491725,-0.00709078,0.007914552,-0.00851654,-0.0116848955,-0.031151274,0.021367392,0.0028531044,0.021684228,0.015930492,0.0037735116,0.011051225,0.003732323,-0.0007061473,-0.0057125455,-0.03954108,-0.014802558,0.010322503,0.0038622257,-0.015271475,0.006048391,-0.0028927089,-0.011279346,-0.044230245,-0.0043945094,-0.0019532912,0.0050915475,-0.006596517,0.0022590377,-0.008820702,-0.003285585,0.011874997,-0.002636072,0.020670353,-0.01086746,-0.017616058,-0.01551227,0.0015936829,-0.02006203,0.0041251993,-0.027197165,-0.0047176816,-0.010785083,0.008529213,0.008712978,0.012559362,0.02988393,-0.0075596967,-0.033736654,-0.0057569025,-0.004375499,0.025612988,0.010436564,-0.001015458,0.0018408147,0.0024285447,-0.008472183,0.014435029,0.003323605,-0.008085644,0.031201968,0.04572571,0.020378863,0.03791888,0.011133602,-0.026183292,0.017451303,0.0014772458,0.022165816,0.005750566,0.0026756765,-0.011760936,0.01614594,-0.0072301878,0.014701171,0.0048856046,0.046181954,-0.0024871593,-0.001674476,-0.019529745,-0.02554962,-0.016412083,-0.1028575,-0.048589904,-0.012838177,0.026335374,-0.023610586,0.032596044,-0.0154995965,0.027095778,0.0063779,0.03406616,-0.009238926,-0.012743127,-0.0075216764,0.004714513,0.033584572,-0.013383134,0.010544288,-0.004400846,-0.027552022,0.01759071,-0.016640205,-0.03396477,-0.029630464,-0.022748794,-0.013395808,0.0006582259,-0.023914749,0.011399744,0.016158614,0.013776011,-0.015246128,0.00260122,0.011855987,-0.033305757,0.02699439,-0.0026202302,-0.032443963,-0.0028261733,-0.0036816294,-0.012464312,0.0018281413,0.0022495326,-0.0066852304,-0.037741452,0.014688497,-0.026816962,0.016690899,-0.013750664,-0.020480251,0.016665552,0.0084405,2.5866655e-05,-0.019390337,-0.009378333,0.002930729,0.03312833,-0.009549424,0.00270736,-0.014447702,-0.00545274,-0.0010558545,0.02229255,-0.015170087,0.0048760995,-0.009029814,0.021633534,-0.0046891663,0.00077783136,0.016526144,-0.031278007,-0.0023857718,0.02184898,-0.0061592837,0.020923821,-0.0053481846,0.023610586,-0.025980517,-0.0047081765,0.03698105,-0.01965648,-0.01639941,-0.031683557,0.0037196497,0.004141041,0.0022336908,-0.0024332972,-0.014409682,0.008225052,0.012686096,-0.04557363,0.0122488635,0.035637666,0.04491461,-0.019301623,0.016221981,-0.004147378,-0.0329509,-0.010677359,0.03535885,0.0076991045,-0.0011002115,0.005699872,-0.07117394,0.01131103,0.005218282,0.011013204,0.023407811,-0.01680496,0.010918153,-0.007901879,0.024421686,-0.0076040537,-0.03584044,0.027881531,-0.0025552788,-0.0019992325,-0.027628062,-0.007971583,0.013712644,0.019897275,0.00033069713,0.009701505,0.00210062,-0.027171819,0.020822434,-0.0017124963,0.02980789,0.0019406179,-0.03905949,0.011951038,-0.013915419,-0.014308294,0.009029814,-0.006232156,-0.02739994,0.03561232,0.013547889,-0.0053101643,-0.02917422,-0.0031826133,0.002948155,0.016386736,-0.0422025,-0.015524943,0.011456775,-0.011596182,-0.01751467,0.0017774475,0.009378333,-0.00890308,0.009074171,-0.006279681,0.03672758,0.021304024,0.0013568484,-0.01828775,-0.014675824,-0.016450103,0.0023762668,-0.012679759,0.020936495,0.0021719078,-0.01318036,0.013750664,0.020556292,0.0023018105,0.019529745,-0.017311895,0.008225052,-0.020340843,0.00807297,-0.018870726,-0.0002805975,-0.0065141395,0.043926083,-0.02154482,0.002163987,-0.011881334,-0.029909277,0.0031746924,-0.013750664,0.019453704,0.0077434615,0.008275745,-0.028160345,0.039515734,0.02587913,0.012413618,-0.012990259,0.0049711503,-0.013509869,-0.0021972547,-0.046815623,-0.0021671553,-0.02395277,0.011082908,-0.027298553,0.005021844,0.0142576005,0.020429557,0.018313097,0.007426626,0.013357787,0.003206376,-0.008852386,-0.03246931,-0.030517602,-0.017451303,-0.011076571,-0.018477852,-0.0024380498,0.027374594,0.010455574,0.009137538,0.01462513,0.0018677457,-0.014967312,0.012844514,0.03429428,-0.0066788937,-0.018820032,0.026233986,-0.0013703138,0.02310365,0.026310027,0.0010233789,-0.01610792,0.01184965,-0.016057227,-0.023116324,0.009935964,-0.0016887336,-0.021608187,-0.01129202,-0.025258131,-0.008776345,-0.031683557,0.003855889,0.027932225,0.033407144,0.013801358,0.036195297,0.009821903,-0.014739191,0.00199448,0.008193368,0.031683557,0.03173425,-0.01821171,-0.018161016,0.010335176,0.020797087,0.004365994,0.010499931,-0.0061149267,-0.029072832,0.014295621,-0.014726518,-0.00982824,-0.012033415,0.016196635,0.013370461,-0.024624461,0.011710242,0.007781482,-0.028946098,-0.017324569,-0.0051992717,0.019973315,-0.0005912944,-0.021367392,0.02040421,0.0012063514,-0.023838708,-0.0049362984,0.0086812945,-0.009720515,0.00982824,0.013345114,0.019859254,0.0034503394,0.00024257724,0.020784413,0.009181895,-0.018122995,-0.0077688084,-0.0086369375,-0.009897944,-0.009821903,-0.0012895208]']\n",
"[2, '73d5d45c-2547-580c-8421-e4819278af3a', 'Police searching for man, woman after incident at a Canton Walmart', 'Holly Springs Police Department is asking you to be on the lookout for two suspects.\\n\\nPolice said the man and woman pictured are persons of interest in an open investigation.\\n\\n[DOWNLOAD: Free WSB-TV News app for alerts as news breaks]\\n\\nPolice said the incident happened at the Wal-Mart on Holly Springs Parkway in Canton.\\n\\nAt this time, details on why the suspects are wanted have not been shared by police.\\n\\nPolice provided a photo of the vehicle they drove away in.\\n\\nTRENDING STORIES:\\n\\nIf you have any information on either of the suspects, please contact The Holly Springs Police Department.', 'https://www.yahoo.com/news/police-searching-man-woman-incident-035624244.html', datetime.datetime(2024, 3, 21, 5, 18, 49), '73d5d45c-2547-580c-8421-e4819278af3a', \"Walmart is a multinational retail corporation that operates a chain of hypermarkets, discount department stores, and grocery stores. It is one of the world's largest companies by revenue and employs millions of people globally. Walmart is known for its wide range of products at competitive prices, offering everything from groceries and household goods to electronics and clothing. With its online presence and extensive network of physical stores, Walmart serves millions of customers every day, making it a key player in the retail industry.\", {'ceo': 'C. Douglas McMillon', 'city': 'Bentonville', 'rank': 1, 'state': 'AR', 'profit': 13673.0, 'sector': 'Retailing', 'ticker': 'WMT', 'company': 'Walmart', 'revenue': 572754.0, 'website': 'https://www.stock.walmart.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 1, 'market_cap': 352037.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 2300000}, '[-0.012008068,-0.0070781065,-0.004993329,-0.0019025976,-0.03221584,0.0037703433,-0.014282947,0.005104221,0.012122129,-0.0402001,-0.013687297,0.014561763,-0.02410485,-0.005436898,0.005671357,0.015030679,0.023864055,-0.026639534,-0.019618459,-0.03832443,-0.01643743,0.020923821,-0.025372192,-0.0020245793,-0.015182761,0.012331241,0.016893672,-0.012869861,0.029554423,-0.030821765,-0.02402881,-0.032013066,-0.010157748,-0.005478087,0.00022237896,0.0069133523,0.007223851,-0.022241857,0.0094417,-0.022039082,0.01984658,0.034522403,0.0122552,0.016348716,-0.032165147,-0.005291154,-0.0015002164,-0.020936495,-0.0007639698,0.019415684,0.011184296,0.041315358,-0.022634733,-0.005750566,-0.0003766383,0.00840248,-0.0063050278,0.021823633,0.016057227,-0.029757198,-0.0057822494,0.026005864,-0.04919823,0.00853555,-0.025524274,-0.023205038,-0.02828708,-0.003919256,0.0020594313,0.031683557,0.025739722,0.024345646,0.012546688,0.025891803,0.018642604,0.0018835875,-0.0030352848,0.024637135,-0.0011714995,0.006653547,0.007914552,-0.015410882,0.014561763,0.0022511168,0.025765069,0.01718516,-0.014865926,0.02106323,-0.035409544,-0.0017283381,0.0031731082,-0.0061941356,-0.0009829823,-0.018275077,-0.008396143,-0.0021069567,-0.004445203,0.021278678,0.017375262,-0.038425818,-0.014536416,0.017007733,-0.03551093,0.0024871593,-0.0034408343,0.03028948,-0.010626665,-0.018008934,0.038831368,0.01369997,-0.008541887,-0.004619463,0.02772945,-0.013877398,0.00087129785,-0.007946236,0.012730453,0.0036721244,0.03328041,-0.032570697,0.024332972,0.04331776,0.01973252,-0.010804093,0.017425956,-0.002796074,-0.034116853,-0.0011556578,0.018934093,-0.005192935,0.015018006,0.010119728,0.00025683484,-0.019783214,-0.022875529,0.020454904,0.0027390434,0.031201968,0.009004467,-0.012261537,0.010005668,8.069406e-05,-0.02010005,-0.018693298,-0.026614187,0.03784284,0.007154147,0.013459175,0.009733189,0.029376995,0.028464507,-0.0019390337,-0.00062099774,0.0007893166,0.035460237,-0.004068169,0.026436761,-0.0010772409,-0.011754599,-0.026690228,0.0027548852,0.011393407,-0.03173425,0.017717445,-0.018439831,0.01651347,0.02173492,0.01221718,-0.015423556,0.015854452,0.00753435,0.007154147,-0.044255592,0.012052425,-0.002156066,0.010062697,0.006422257,0.024180891,-0.022191163,0.0018661615,0.001398037,-0.0011810046,0.0074139526,-0.0075153396,0.0024681492,-0.021202637,0.021861654,0.02487793,0.035663012,-0.006615527,-0.0014487307,0.019935295,0.00853555,0.010512604,-0.65780133,0.008250399,-0.0075216764,-0.027957572,-0.016779613,0.021367392,0.03649946,0.0130156055,-0.012210843,0.022165816,-0.01895944,0.006849985,-0.00982824,-0.044078164,-0.014536416,-0.022862855,6.217898e-05,-0.009961311,0.01040488,-0.0035010332,-0.00838347,0.03360992,-0.017096447,-0.02917422,-0.014485722,0.032443963,0.010183095,-0.015322168,0.0047810487,0.028084306,-0.012381935,0.020936495,-0.0023303255,0.023002263,0.050490916,0.011000531,-0.0132183805,0.0018059628,0.013776011,0.0033299418,-0.031176621,-0.018617257,0.019580439,-0.019022807,0.009625465,-0.0020625996,0.007464646,0.0042360914,-0.008110991,-0.010214779,-0.0060452227,-0.013307094,-0.0018392305,-0.019555092,0.006057896,-0.001851904,-0.025245458,-0.013649276,-0.009004467,0.0046162945,-0.012356588,0.027298553,-0.0049267933,0.004499065,-0.029959971,0.023673953,0.010626665,-0.004666988,0.010677359,0.026512802,-0.0011081324,0.014435029,-0.025169417,-0.0021307191,0.0133324405,0.033305757,0.005262639,-0.0030859786,0.00272637,0.019504398,0.0036214306,-0.027450634,0.0090868445,-0.026132599,-0.0013742743,0.020074703,0.02217849,-0.013243727,0.019225582,-0.0011714995,0.007268208,-0.0113680605,0.0037259862,-0.023978116,-0.019174889,0.00029366696,-0.007952573,-0.0036150939,-0.0119320275,-0.0013029863,-0.015005332,-0.0053133327,0.0058202697,0.027501328,0.014054826,0.007458309,-0.0013711059,0.030847112,0.02184898,-0.011101918,0.014435029,-0.006270176,-0.015309495,-0.0081616845,-0.014536416,-0.01514474,-0.005297491,-0.027526675,0.0044325297,-0.01836379,0.011101918,0.015005332,0.023572566,-0.0062765125,-0.0047715437,-0.025093377,0.00327608,-0.0133324405,0.0070781065,-0.0005924825,0.00543373,-0.026335374,0.016221981,0.0058646263,0.0053133327,0.015778411,0.020923821,-0.009061498,0.0196945,-0.023635933,-0.016120594,-0.008282082,0.015930492,-0.0073062284,-0.010417554,-0.038197696,0.011558162,0.006314533,-0.044128858,-0.014397008,-0.022533346,-0.01454909,-0.031151274,0.03665154,0.02173492,0.004603621,-0.03928761,-0.01514474,-0.008269409,-0.027856184,0.0010027846,0.011444101,-0.034522403,0.0046574827,0.016158614,-0.016741592,-0.0044737183,0.008852386,-0.0007972375,-0.022900876,0.019707173,-0.0043089637,-0.003136672,0.032241188,0.0017600216,0.03254535,-0.0013109072,0.005870963,0.0069513726,-0.0012443718,0.012787484,0.020480251,-0.015715044,0.0036499458,0.0065331496,-0.0040491587,-0.006362058,0.015753064,-0.02162086,-0.014954639,0.012210843,0.03054295,0.0041632196,-0.016919019,-0.016881,-0.0069070156,0.003554895,0.020594312,0.005227787,0.026107252,-0.010417554,-0.0024824068,-0.008009603,-0.0170711,0.007401279,-0.021291351,-0.008890406,-0.0037798483,-0.00037644026,0.01310432,0.016690899,-0.010398543,0.027146472,-0.0014685328,0.010259136,0.040707033,-0.010620329,0.018680625,-0.01551227,0.012223517,0.03360992,-0.0084785195,-0.01643743,-0.022381265,-0.020378863,-0.005769576,0.004774712,0.027273206,0.0127558,-0.00491412,0.0024602283,0.01944103,0.005167588,0.020176088,-0.008827039,-0.0027152807,0.018832706,-0.02106323,0.02410485,0.010601318,-0.00037168773,0.036271337,0.034344975,0.003659451,-0.012033415,-0.022241857,0.030897805,0.0010138738,-0.017121794,-0.008605254,-0.0032475647,0.01840181,-0.017463977,-0.011076571,-0.022165816,-0.01799626,0.009834576,-0.0030495424,0.03520677,0.019960642,0.0054242252,-0.0052848174,-0.011545489,0.013915419,0.00016881396,-0.016703572,0.02965581,0.0024554757,0.0012602134,-0.0046543144,0.007756135,0.008808029,0.018465178,-0.014485722,0.00710979,0.024611788,0.006010371,-0.0043501523,-0.011317367,0.018465178,-0.0064539406,-0.019263603,-0.0033552886,0.025498927,-0.010252799,0.0018360622,-0.02828708,0.00807297,0.01038587,-0.0010217947,-0.009226252,0.0040491587,-0.01643743,0.0062670074,-0.009371996,0.016133267,0.057334565,0.0042741117,0.024497727,-0.019580439,0.020467578,-0.00037743038,-0.007198504,0.021151943,0.020860454,-0.0010709042,-0.01314234,0.016500797,-0.0021972547,0.003624599,-0.023724647,-0.018503197,0.003367962,-0.012584709,0.006019876,0.003634104,-0.018224383,-0.004635304,0.0038178687,0.010043688,0.0075660334,0.0026059726,-0.023521872,0.0088840695,0.10052559,0.009505067,-0.019935295,0.023927422,-0.021684228,-0.017616058,-0.0329509,-0.0036816294,-0.004711345,0.0006380276,0.0034851914,-0.0119320275,0.013028279,-0.03328041,0.008484856,0.0076040537,-0.00021426006,-0.010468247,-0.00080555445,0.007578707,0.028464507,-0.022926223,-0.0039255926,0.009429026,0.0069070156,0.008294756,0.022774141,0.028515201,-0.013763337,-0.042709436,-0.004480055,-0.017692098,-0.0051359045,0.022229183,0.013307094,0.016906345,-0.015524943,0.020112721,-0.0038717308,-0.005094716,0.027425287,0.016234655,0.002992512,-0.026969044,-0.014447702,0.007623064,0.027019737,0.018427158,-0.027273206,-0.012445302,0.016919019,-0.007952573,-0.008668621,-0.016348716,-0.0013623929,0.009156548,0.013243727,0.012476984,-0.02699439,-0.027045084,0.007952573,-0.0009766456,-0.0066091903,0.00031861776,-0.0188834,-0.023395138,-0.0063810684,0.006875332,0.0018756666,-0.01574039,0.020746393,-0.037158474,-0.014751865,-0.015613657,0.037386596,-0.009207242,-0.006596517,0.018072302,0.026969044,0.016133267,-0.00272637,0.007198504,-0.006830975,-0.016703572,-0.00398896,0.0076357373,0.01418156,-0.00010079332,-0.044230245,-0.010683696,0.004150546,-0.020518271,0.053329762,0.012990259,-0.004967982,0.019010134,0.004356489,0.0017077437,0.0039034144,-0.0028245891,-0.011957374,0.01566435,-0.005959677,0.00084040634,0.018376464,-0.023078304,-0.0058171013,-0.028160345,0.0033077635,-0.0059723505,0.0068436484,-0.0016427925,0.0016966545,-0.008985457,-0.01186866,0.026969044,0.0147772115,0.027856184,0.0045117387,-0.0145744365,-0.0041378727,-0.035156075,0.00199448,0.029858584,-0.008123664,-0.00803495,0.004365994,-0.037158474,-0.03469983,-0.01651347,0.0054939287,0.019174889,-0.010537951,-0.025156744,-0.008617927,0.0039667813,0.005468582,0.0069070156,-0.03799492,-0.033736654,-0.0035422216,-0.009593781,-0.003393309,-0.004210745,-0.0011350635,-0.028489854,-0.0146631505,0.019833907,0.0018297255,0.018477852,0.026081905,-0.02084778,-0.012907881,0.0028340942,0.015170087,-0.030010665,-0.012027078,-0.03229188,0.02362326,0.03913553,0.03350853,0.015081373,0.005059864,-0.008598917,0.011976385,-0.008269409,-0.010709043,0.011406081,-0.016830307,0.015486923,0.0045560957,0.028540548,0.015157414,0.020024009,0.0069513726,0.023205038,0.0010471416,-0.01940301,-0.010721716,0.008396143,-0.003992128,-0.0028293417,-0.014865926,0.015182761,-0.0349533,-0.026056558,0.023433158,0.008130001,0.015651677,-0.023433158,0.004863426,-0.018262403,0.01714714,-0.0007105038,-0.015385536,-0.031125927,0.002670924,-0.0445851,-0.011634203,-0.0057473974,0.009701505,0.012476984,-0.0030653842,-0.01614594,-0.0034661812,0.01676694,-0.01077241,0.01081043,0.021937694,-0.017248528,0.000695058,-0.014206907,-0.021595513,-0.020429557,-0.0029291448,0.02636072,-0.023496525,0.015930492,-0.01574039,-0.05046557,0.0054242252,-0.018541217,0.024561094,-0.0024285447,0.027349247,0.008510203,0.014954639,-0.018034281,0.013028279,-0.01859191,-0.027501328,0.005113726,0.0046891663,-0.011317367,-0.029934624,-0.01595584,-0.021709574,-0.011222316,-0.023268405,0.031227315,0.0041442094,0.01647545,-0.008643274,-0.0014558595,-0.016957039,0.015778411,-0.0074139526,-0.0044483715,-0.0054242252,-0.055763062,-0.031632863,0.01780616,-0.031303354,0.014764538,0.017425956,-0.013978786,-0.004961645,-0.00044594606,-0.034091506,0.024903277,-0.0041251993,0.014675824,-0.021709574,0.02506803,0.012084109,0.010341513,-0.0038432155,0.004961645,-0.0036752927,0.015778411,-0.012356588,0.004191735,0.018237056,-0.005167588,-0.0012095198,-0.013687297,0.007578707,-0.015778411,-0.009992994,-0.007268208,-0.0045465906,0.003830542,0.003535885,-0.018731318,0.0010677358,-0.022343244,-0.028565895,-0.011336377,0.03206376,-0.017007733,-0.025245458,0.007667421,0.015841778,-0.01795824,0.008814366,0.0012641739,0.002379435,0.009169222,-0.015132067,0.029224914,0.0031129096,0.010937164,-0.008231388,0.004302627,-0.0044198562,-0.023597913,0.028337773,-0.003732323,-0.029275607,-0.023179691,0.0015936829,-0.002743796,-0.025574967,0.00025802298,-0.017565364,0.014929292,0.00427728,0.004996497,-0.0026835974,0.011634203,-0.026893003,0.012648076,0.0029735018,-0.019048154,0.008915753,-0.0022305225,-4.834218e-05,-0.019010134,0.00021029961,-0.015981186,-0.0357644,0.013928092,0.012432628,0.021075903,-0.023141671,0.013167687,-0.0060262126,0.005256302,0.0053481846,-0.03905949,0.011545489,0.0023588408,0.012863524,0.0026059726,-0.013066299,0.013370461,-0.011672222,-0.00992329,-0.026081905,-0.0074456357,-0.0047873855,0.030720377,-0.00016049702,-0.011735589,-0.025296152,0.015081373,-0.036296684,-0.029959971,0.039084837,-0.008110991,0.010569635,0.032925554,-0.0013465512,0.026107252,0.0076357373,0.00541472,-0.023255732,0.022609387,0.009587444,-0.0065331496,0.025220111,-0.01928895,-0.026259333,-0.0052689756,0.017261202,-0.016792286,0.007908216,0.0053196694,-0.013547889,0.0037703433,-0.020885801,0.02487793,-0.0049553085,0.0051644198,0.032824166,-0.023902075,0.016260002,0.0076103904,0.0008348617,-0.03110058,0.0245104,-0.0018122995,0.008459509,0.022938896,-0.004641641,-0.0064507723,0.0016855652,0.00982824,0.014346315,0.007242861,0.0039414344,0.019757867,0.0122488635,-0.012413618,-0.00703375,-0.0067739445,-0.0007893166,0.009397343,-0.008763672,-0.014042153,0.002404782,-0.020353517,0.001139816,-0.018439831,-0.011279346,-0.0178822,-0.006742261,-0.018972114,0.024789216,-0.012046088,0.0058392794,0.01414354,0.01090548,0.019162215,0.0036657876,-0.003491528,-0.00011534795,-0.00755336,-0.012331241,-0.0022035914,-0.011874997,-0.01086746,0.00089664466,0.019238256,-0.02443436,0.016830307,0.18918885,0.00422025,0.0014463544,0.039008796,0.0076737576,0.024332972,0.035257462,0.003982623,0.0032348912,-0.012103119,-0.0069133523,0.014979986,-0.0093593225,0.007882869,0.01090548,-0.020632332,-0.024662482,-0.02554962,-0.006596517,0.03262139,0.023230385,0.002849936,-0.014498396,-0.022862855,0.025308825,0.0076800943,-0.013421155,-0.0023493357,0.034598444,0.006317701,-0.02121531,0.004749365,0.00859258,0.0022162648,0.0077688084,0.0015849699,-0.019124195,-0.012388271,0.009815566,0.0017410115,-0.0012784315,-0.0090424875,-0.0236993,0.003437666,0.013928092,0.017869527,-0.011228653,-0.010050025,0.008313766,-0.00491412,-0.03931296,0.0037735116,0.019491725,0.024700502,-0.0026788448,0.016728919,-0.00472085,0.002146561,-0.005167588,0.0014883351,0.0026107251,0.01636139,0.003367962,0.007876532,-0.034522403,0.022457305,-0.027475981,9.8565564e-05,0.0013584325,-0.024092177,0.01081043,0.0059279935,-0.025536947,0.019073501,0.009999331,-0.00990428,0.017387936,0.0145744365,0.0059881923,0.024155544,-0.00013911062,-0.010335176,-0.024079503,0.024928624,-0.0109435,-0.0045370855,0.0045560957,0.0073442487,0.004112526,-0.019504398,0.0043501523,0.006013539,0.0013513038,-0.01740061,0.007876532,0.015448903,0.001335462,-0.0026392404,-0.026056558,-0.0188834,-0.003098652,0.04590314,0.0018471514,-0.016044553,-0.018224383,-0.012641739,0.00072515744,0.014789885,0.0065331496,-0.015322168,-0.00048515448,-0.03649946,0.006083243,-0.028591242,0.0056428416,-0.006004034,-0.0048951097,-0.0106900325,-0.0009774377,-0.01042389,0.006742261,-0.032824166,0.020873128,-0.0150687,0.00036634112,-0.009935964,-0.004746197,0.010892807,-0.0035644001,-0.034902606,-0.010005668,-0.0014194234,0.017273875,0.007578707,-0.0050250124,-0.0068689953,-0.007939899,0.004286785,-0.026538149,0.011082908,-0.024662482,0.007832175,-0.00840248,-0.007382269,0.0069957296,0.0051454096,-0.0016681392,0.012907881,0.016665552,-0.008846049,-0.011431428,-0.01418156,0.019960642,-0.0027485485,0.024332972,0.00425827,-0.005753734,-0.0007857522,0.015639003,-0.0236993,-0.018503197,-0.02828708,0.04346984,0.009980321,-0.009961311,0.011824303,-0.15725183,0.009536751,-0.008212378,0.018300423,0.04653681,0.019301623,0.011976385,0.0038780675,-0.010715379,0.003516875,0.014232254,-0.028261732,-0.031607516,-0.023255732,0.011862324,-0.008326439,-0.0038432155,-0.001504969,-0.010069034,0.00986626,0.043672614,0.009264272,0.014561763,-0.014270274,0.0066028535,0.02373732,0.00947972,0.023864055,0.025448233,-0.0028736987,8.178318e-05,-0.039034143,0.008472183,-0.0031636031,-0.01127301,0.0012515006,0.0005326798,-0.01310432,-0.00075565284,0.012635402,0.03561232,0.015182761,-0.012438965,0.013028279,0.019491725,-0.00709078,0.007914552,-0.00851654,-0.0116848955,-0.031151274,0.021367392,0.0028531044,0.021684228,0.015930492,0.0037735116,0.011051225,0.003732323,-0.0007061473,-0.0057125455,-0.03954108,-0.014802558,0.010322503,0.0038622257,-0.015271475,0.006048391,-0.0028927089,-0.011279346,-0.044230245,-0.0043945094,-0.0019532912,0.0050915475,-0.006596517,0.0022590377,-0.008820702,-0.003285585,0.011874997,-0.002636072,0.020670353,-0.01086746,-0.017616058,-0.01551227,0.0015936829,-0.02006203,0.0041251993,-0.027197165,-0.0047176816,-0.010785083,0.008529213,0.008712978,0.012559362,0.02988393,-0.0075596967,-0.033736654,-0.0057569025,-0.004375499,0.025612988,0.010436564,-0.001015458,0.0018408147,0.0024285447,-0.008472183,0.014435029,0.003323605,-0.008085644,0.031201968,0.04572571,0.020378863,0.03791888,0.011133602,-0.026183292,0.017451303,0.0014772458,0.022165816,0.005750566,0.0026756765,-0.011760936,0.01614594,-0.0072301878,0.014701171,0.0048856046,0.046181954,-0.0024871593,-0.001674476,-0.019529745,-0.02554962,-0.016412083,-0.1028575,-0.048589904,-0.012838177,0.026335374,-0.023610586,0.032596044,-0.0154995965,0.027095778,0.0063779,0.03406616,-0.009238926,-0.012743127,-0.0075216764,0.004714513,0.033584572,-0.013383134,0.010544288,-0.004400846,-0.027552022,0.01759071,-0.016640205,-0.03396477,-0.029630464,-0.022748794,-0.013395808,0.0006582259,-0.023914749,0.011399744,0.016158614,0.013776011,-0.015246128,0.00260122,0.011855987,-0.033305757,0.02699439,-0.0026202302,-0.032443963,-0.0028261733,-0.0036816294,-0.012464312,0.0018281413,0.0022495326,-0.0066852304,-0.037741452,0.014688497,-0.026816962,0.016690899,-0.013750664,-0.020480251,0.016665552,0.0084405,2.5866655e-05,-0.019390337,-0.009378333,0.002930729,0.03312833,-0.009549424,0.00270736,-0.014447702,-0.00545274,-0.0010558545,0.02229255,-0.015170087,0.0048760995,-0.009029814,0.021633534,-0.0046891663,0.00077783136,0.016526144,-0.031278007,-0.0023857718,0.02184898,-0.0061592837,0.020923821,-0.0053481846,0.023610586,-0.025980517,-0.0047081765,0.03698105,-0.01965648,-0.01639941,-0.031683557,0.0037196497,0.004141041,0.0022336908,-0.0024332972,-0.014409682,0.008225052,0.012686096,-0.04557363,0.0122488635,0.035637666,0.04491461,-0.019301623,0.016221981,-0.004147378,-0.0329509,-0.010677359,0.03535885,0.0076991045,-0.0011002115,0.005699872,-0.07117394,0.01131103,0.005218282,0.011013204,0.023407811,-0.01680496,0.010918153,-0.007901879,0.024421686,-0.0076040537,-0.03584044,0.027881531,-0.0025552788,-0.0019992325,-0.027628062,-0.007971583,0.013712644,0.019897275,0.00033069713,0.009701505,0.00210062,-0.027171819,0.020822434,-0.0017124963,0.02980789,0.0019406179,-0.03905949,0.011951038,-0.013915419,-0.014308294,0.009029814,-0.006232156,-0.02739994,0.03561232,0.013547889,-0.0053101643,-0.02917422,-0.0031826133,0.002948155,0.016386736,-0.0422025,-0.015524943,0.011456775,-0.011596182,-0.01751467,0.0017774475,0.009378333,-0.00890308,0.009074171,-0.006279681,0.03672758,0.021304024,0.0013568484,-0.01828775,-0.014675824,-0.016450103,0.0023762668,-0.012679759,0.020936495,0.0021719078,-0.01318036,0.013750664,0.020556292,0.0023018105,0.019529745,-0.017311895,0.008225052,-0.020340843,0.00807297,-0.018870726,-0.0002805975,-0.0065141395,0.043926083,-0.02154482,0.002163987,-0.011881334,-0.029909277,0.0031746924,-0.013750664,0.019453704,0.0077434615,0.008275745,-0.028160345,0.039515734,0.02587913,0.012413618,-0.012990259,0.0049711503,-0.013509869,-0.0021972547,-0.046815623,-0.0021671553,-0.02395277,0.011082908,-0.027298553,0.005021844,0.0142576005,0.020429557,0.018313097,0.007426626,0.013357787,0.003206376,-0.008852386,-0.03246931,-0.030517602,-0.017451303,-0.011076571,-0.018477852,-0.0024380498,0.027374594,0.010455574,0.009137538,0.01462513,0.0018677457,-0.014967312,0.012844514,0.03429428,-0.0066788937,-0.018820032,0.026233986,-0.0013703138,0.02310365,0.026310027,0.0010233789,-0.01610792,0.01184965,-0.016057227,-0.023116324,0.009935964,-0.0016887336,-0.021608187,-0.01129202,-0.025258131,-0.008776345,-0.031683557,0.003855889,0.027932225,0.033407144,0.013801358,0.036195297,0.009821903,-0.014739191,0.00199448,0.008193368,0.031683557,0.03173425,-0.01821171,-0.018161016,0.010335176,0.020797087,0.004365994,0.010499931,-0.0061149267,-0.029072832,0.014295621,-0.014726518,-0.00982824,-0.012033415,0.016196635,0.013370461,-0.024624461,0.011710242,0.007781482,-0.028946098,-0.017324569,-0.0051992717,0.019973315,-0.0005912944,-0.021367392,0.02040421,0.0012063514,-0.023838708,-0.0049362984,0.0086812945,-0.009720515,0.00982824,0.013345114,0.019859254,0.0034503394,0.00024257724,0.020784413,0.009181895,-0.018122995,-0.0077688084,-0.0086369375,-0.009897944,-0.009821903,-0.0012895208]']\n",
"[3, '73d5d45c-2547-580c-8421-e4819278af3a', 'How media buyers view the retail media landscape -- from Amazon to Walmart to Wawa', 'The promise of wealth, or in this case, ad dollars, has the marketplace heating up with scads of retailers, from first-movers like Amazon to newcomers like Wawa convenience store -- even to the unsuspected like Cars.com automotive company.\\n\\nBy the end of this year, retail media ad spend is expected to make up one-fifth of worldwide digital ad spend, scooping up $140 billion, which is up from the forecasted $115 billion in 2023, according to eMarketer.\\n\\nRetail media is a growing space, no doubt. Especially as advertisers are eager to plug the holes Google\\'s third-party cookie deprecation is leaving behind. But that growth has led to fragmentation as agencies grapple with where to spend client ad dollars that\\'ll give the most bang for their buck.\\n\\n\"From where we sit as an agency, it\\'s certainly making our lives and our day-to-day work more exciting, more challenging,\" said Ethan Goodman, evp of digital commerce at The Mars Agency.\\n\\nIn regards to the biggest players in the space, like Amazon Ads, Roundel (Target\\'s retail media business), Walmart Connect and Albertsons Media Collective, he said, \"They have significantly improved and scaled their capabilities -- their audience and targeting capabilities, their measurement capabilities. Really practically, they\\'ve improved their channel offering and the breadth of their channel capabilities.\"\\n\\nDigiday caught up with Goodman and other agency executives to talk about how the retail media competition is looking -- and the players most on their radar.\\n\\nAmazon Advertising launched in 2012, giving it a first-mover advantage in the space and making it almost synonymous with the concept of retail media. This year, Amazon is expected to hoover up 74% of the nearly $60 billion in U.S. digital retail media ad spend, according to eMarketer\\'s forecasts. Given its pure scale, Amazon could stand as an unexpected beneficiary of Google Chrome\\'s third-party cookie fallout once the dust settles.\\n\\nAs its business matures, the mammoth-sized company has made recent ad tech and artificial intelligence upgrades to enhance its offering as well as new inventory, selling ads on Prime Video to advertisers. This layers on top of its self-service ad solution through its owned streaming services like Freevee, Twitch and Thursday Night Football, and in-store advertising through Whole Foods Market and Amazon Fresh, making it a top contender for ad dollars.\\n\\n\"A lot of our brand national dollars are spent across Amazon,\" said an agency executive who spoke with Digiday and requested anonymity. The exec did not disclose spend figures. \"As CPG becomes more important for Amazon and grocery becomes a bigger deal for them, whether that\\'s through Whole Foods or Amazon Fresh or other places, we\\'re going to see our CPG spend continue to increase.\"\\n\\nBeyond its sheer size (it touts an audience of more than 150 million), Amazon\\'s ad business is an ecosystem with data from Amazon DSP, Amazon Ads APIs and Amazon Marketing Cloud, offering marketers more granular audience insights. Amazon also opened its platform to developers and plug-ins for things like dashboards or other tools.\\n\\n\"They\\'re able to do closed loop attribution, whereby the performance of an impression served on Amazon Prime can be tracked back to what it ultimately helps drive at the Amazon.com level,\" said Harry Inglis, head of activation at Media by Mother, Mother\\'s three-year-old media agency. \"It\\'s hard to compete with.\"\\n\\nAnother early entrant to the retail media competition, Walmart Connect, has moved recently to close the gap between it and Amazon. In February, Walmart announced plans to acquire smart TV manufacturer Vizio for $2.3 billion, bolstering its retail media offering by adding more streaming capabilities. In January, it set its sights on a TikTok integration, offering advertisers sales measurement data and access to the coveted Gen Z audience. Both of these events build on its partnership with Roku, announced in 2022, to bring shoppable ads to streaming. And it helps that Walmart has a massive physical presence with more than 4,600 locations in the U.S., shadowing Amazon\\'s 500 Whole Foods Markets.\\n\\nHaving launched back in 2017, Walmart Connect has spent the last year-and-a-half beefing up its advertising capabilities, including the Walmart Connect Academy Ad Certification program to educate agencies and brands on what it can do. Its latest move with Vizio, and now integration with TikTok, is intended to reach advertisers\\' latest fascination: streaming and digital video.\\n\\n\"The more that they\\'re moving those digital solutions in-store, I think will be some of the growth,\" the anonymous agency exec told Digiday. \"[RMNs] already made partnerships and social, which was smart because that\\'s where people are spending a lot of their time. And then, now where? Now, it\\'s streaming?\"\\n\\nSpending on platforms outside of Amazon, like Walmart, Target and the like, is seeing double-digit growth this year. Notably, Walmart appears to be at the helm of said growth spurt, according to previous Digiday reporting.\\n\\nThe U.S. Federal Trade Commission\\'s decision to block the Kroger-Albertsons merger last month may have put a wrench in growth plans, but Albertsons Media Collective is still one of the top contenders for retail media network spend -- a tertiary challenger, behind the likes of Amazon, Walmart, Target and of course, Kroger, agency execs say.\\n\\nIt only launched back in 2022, but has sparked advertisers\\' interest, noted as a more ambitious player in the space, listening to both needs and wants in the marketplace, per agency execs. Last January, Albertsons became the first advertiser to use LiveRamp and Pinterest\\'s clean room offering to tie offline sales to online behavior.\\n\\nBut perhaps most notably, the grocery chain has started aiming to tackle standardization and measurement issues, a pain point in an increasingly crowded and fragmented marketplace. And that\\'s what sets it apart, per agency execs.\\n\\n\"Albertsons actually came out publicly and are talking all about measurement and standardization,\" said a second agency exec who wished to remain anonymous. \"They\\'re really trying to set the standards, be the retailer that\\'s leaning into these standards.\"\\n\\nIn a sea of retail media networks, agency executives highlighted The Home Depot\\'s unique data as a keen proposition to advertisers. The retailer offers on-site and off-site ad placements and is able to create audiences around specific groups, including people who have recently moved, those who are redecorating, or setting up a business or any other life event. Each of these data points can win over a range of advertisers, whether it be internet providers or insurance companies.\\n\\nThe niche nature of The Home Depot, which launched its offering in 2019, gives it a competitive edge for some executives. Instead of identifiers like demographics or psychographic data, The Home Depot builds audiences based on home projects shoppers are doing -- a data point not easily found within the retail media space, especially at that scale. Notably, the company has more than 2,300 stores across North America.\\n\\n\"Home Depot, they actually have something unique in the sense of they created the retail media plus network,\" said the second agency exec. \"From that capacity, they are trying to not only sell media to their suppliers, but ask their suppliers what they want.\"\\n\\nIn a recent interview with Digiday, Melanie Babcock, vp of Retail Media+ and monetization at The Home Depot, said the company is looking to expand beyond endemic advertisers.\\n\\nInstacart exploded during the pandemic lockdown, when shoppers turned to the delivery service to shop at grocery stores and convenience stores without leaving the comfort of their home.\\n\\nIn a post-Covid world, agency execs wondered if Instacart would continue to thrive and if it would gobble up ad dollars via its retail media network, which launched in 2022.\\n\\n\"We were questioning whether it was true incrementality because a lot of what they were delivering was retailers that we already had agreements with. They were just the delivery platform at the time,\" said the first agency executive. Thus far, they said, it\\'s held up.\\n\\nThis year, the company started looking at off-site retail media, pitching advertisers on Google Shopping ads, which are enhanced by its own retail media data. As Retail Dive recently reported in January, early advertisers for the move include Danone\\'s Oikos and Kraft Heinz\\'s Kraft.\\n\\nThat partnership has sparked advertisers\\' interest as the company\\'s retail partners are making placements available on their shopping cart, an interesting proposition for consumer packaged goods brands, the exec said.\\n\\nOther off-site efforts include a partnership with Roku last April, and ad targeting on Sprouts Farmers Market last May.\\n\\nWith seven years in the retail media network game, Kroger Precision Marketing (KPM) has made a name for itself, partnering with the likes of Cooler Screens, Meta, Pinterest, Roku, Snap, The Trade Desk and others.\\n\\nLike Albertsons, the U.S. Federal Trade Commission\\'s decision to block the Kroger-Albertsons merger may have put a damper on growth. But with recent innovations, growth is expected to continue. The retailer has been steadily growing its ad offering, with efforts to marry online and offline sales data dating back to 2020.\\n\\nLast November, KPM announced new programmatic capabilities with The Trade Desk. Last June, Kroger took its self-service ad platform in-house, giving advertisers access to the grocer\\'s product listing ads as well as display advertising.\\n\\n\"Kroger is one of the top offerings in the U.S.,\" said the second agency executive. \"We think the best data offerings to date. However, they are extremely conservative when it comes to making any type of decisions (innovations, legal, negotiations etc.).\" Again, this is in comparison to retailers like Albertsons, which the agency exec says is more ambitious when it comes to responding to an ever-changing marketplace.\\n\\nKroger may have more red tape, but it has spent the last year-and-a-half shifting to a \"mindset of collaboration,\" according to the first agency executive. The retailer has also started to focus on things like standardization and measurement. All in all, Kroger is considered a top partner for the agency, who said Kroger\\'s offering is on par with Walmart.\\n\\nTarget has been aiming to build a media business to rival Amazon since rebranding as Roundel in 2019. Seemingly, it\\'s making good on its promise, coming in at marketers\\' third most-used retail media network, according to Digiday research, behind Amazon and Walmart.\\n\\nLast October, Target announced that it was enhancing its Roundel retail media business with Roundel Media Studio, a self-service buying tool, premium programmatic publisher partners and experimenting with shoppable connected TV. Roundel has recently been focused on expanding both its onsite and offsite inventory, including new ad formats like shoppable CTV, according to The Mars Agency\\'s Retail Media Report Card, a quarterly assessment and comparison retail media platform comparison tool.\\n\\nIt all makes a compelling argument as far as advertisers are concerned. Meaning Roundel is considered one of the leaders in the retail media landscape, given the retailer\\'s capabilities around audiences, channels and measurement. \"They are also notably ahead of the game when it comes to taking an integrated approach to media and merchandising, and creating both seamless omnichannel experiences for Target guests and holistic, added-value opportunities for brands/advertisers,\" said a third agency exec, who spoke anonymously.\\n\\nWawa convenience store is the latest to throw its hat in the ring as a retail media network competitor. While having only launched weeks ago, agency executives say clients are already interested in its offerings, especially in its fuel pump screen inventory.\\n\\nThe convenience store partnered with Publicis Groupe\\'s Publicis Sapient, Epsilon, and CitrusAd for its offering, with custom ads and campaigns on digital channels like Wawa\\'s websites, mobile app or video ads at a Wawa pump -- a selling point for advertisers looking for more ways to get in front of shoppers.\\n\\n\"In addition to allowing brands to reach their shoppers on their website and inside their mobile app, they\\'re also making some of their gas station screen inventory available,\" said Goodman. \"Some of those unique inventory opportunities are again, a potential point of differentiation for players like that.\"\\n\\nOther selling points are Wawa\\'s audience, which could be unique given it has a cult-like following, and its ability to close the loop from customers seeing an ad at the pump before going into the convenience store to make a purchase. Given, the convenience store chain is smaller with about 1,000 locations in Pennsylvania, New Jersey and Florida. This year, the convenience store opened its first Georgia location.\\n\\n\"For a challenger like Wawa to go out to the brand marketplace and say, \\'I can uniquely reach this audience segment that you can\\'t reach through another retail media network,\\' is a potential way in and is an advantage for them for sure,\" per Goodman.', 'https://digiday.com/marketing/how-media-buyers-view-the-retail-media-landscape-from-amazon-to-walmart-to-wawa/', datetime.datetime(2024, 3, 21, 4, 2, 42), '73d5d45c-2547-580c-8421-e4819278af3a', \"Walmart is a multinational retail corporation that operates a chain of hypermarkets, discount department stores, and grocery stores. It is one of the world's largest companies by revenue and employs millions of people globally. Walmart is known for its wide range of products at competitive prices, offering everything from groceries and household goods to electronics and clothing. With its online presence and extensive network of physical stores, Walmart serves millions of customers every day, making it a key player in the retail industry.\", {'ceo': 'C. Douglas McMillon', 'city': 'Bentonville', 'rank': 1, 'state': 'AR', 'profit': 13673.0, 'sector': 'Retailing', 'ticker': 'WMT', 'company': 'Walmart', 'revenue': 572754.0, 'website': 'https://www.stock.walmart.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 1, 'market_cap': 352037.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 2300000}, '[-0.012008068,-0.0070781065,-0.004993329,-0.0019025976,-0.03221584,0.0037703433,-0.014282947,0.005104221,0.012122129,-0.0402001,-0.013687297,0.014561763,-0.02410485,-0.005436898,0.005671357,0.015030679,0.023864055,-0.026639534,-0.019618459,-0.03832443,-0.01643743,0.020923821,-0.025372192,-0.0020245793,-0.015182761,0.012331241,0.016893672,-0.012869861,0.029554423,-0.030821765,-0.02402881,-0.032013066,-0.010157748,-0.005478087,0.00022237896,0.0069133523,0.007223851,-0.022241857,0.0094417,-0.022039082,0.01984658,0.034522403,0.0122552,0.016348716,-0.032165147,-0.005291154,-0.0015002164,-0.020936495,-0.0007639698,0.019415684,0.011184296,0.041315358,-0.022634733,-0.005750566,-0.0003766383,0.00840248,-0.0063050278,0.021823633,0.016057227,-0.029757198,-0.0057822494,0.026005864,-0.04919823,0.00853555,-0.025524274,-0.023205038,-0.02828708,-0.003919256,0.0020594313,0.031683557,0.025739722,0.024345646,0.012546688,0.025891803,0.018642604,0.0018835875,-0.0030352848,0.024637135,-0.0011714995,0.006653547,0.007914552,-0.015410882,0.014561763,0.0022511168,0.025765069,0.01718516,-0.014865926,0.02106323,-0.035409544,-0.0017283381,0.0031731082,-0.0061941356,-0.0009829823,-0.018275077,-0.008396143,-0.0021069567,-0.004445203,0.021278678,0.017375262,-0.038425818,-0.014536416,0.017007733,-0.03551093,0.0024871593,-0.0034408343,0.03028948,-0.010626665,-0.018008934,0.038831368,0.01369997,-0.008541887,-0.004619463,0.02772945,-0.013877398,0.00087129785,-0.007946236,0.012730453,0.0036721244,0.03328041,-0.032570697,0.024332972,0.04331776,0.01973252,-0.010804093,0.017425956,-0.002796074,-0.034116853,-0.0011556578,0.018934093,-0.005192935,0.015018006,0.010119728,0.00025683484,-0.019783214,-0.022875529,0.020454904,0.0027390434,0.031201968,0.009004467,-0.012261537,0.010005668,8.069406e-05,-0.02010005,-0.018693298,-0.026614187,0.03784284,0.007154147,0.013459175,0.009733189,0.029376995,0.028464507,-0.0019390337,-0.00062099774,0.0007893166,0.035460237,-0.004068169,0.026436761,-0.0010772409,-0.011754599,-0.026690228,0.0027548852,0.011393407,-0.03173425,0.017717445,-0.018439831,0.01651347,0.02173492,0.01221718,-0.015423556,0.015854452,0.00753435,0.007154147,-0.044255592,0.012052425,-0.002156066,0.010062697,0.006422257,0.024180891,-0.022191163,0.0018661615,0.001398037,-0.0011810046,0.0074139526,-0.0075153396,0.0024681492,-0.021202637,0.021861654,0.02487793,0.035663012,-0.006615527,-0.0014487307,0.019935295,0.00853555,0.010512604,-0.65780133,0.008250399,-0.0075216764,-0.027957572,-0.016779613,0.021367392,0.03649946,0.0130156055,-0.012210843,0.022165816,-0.01895944,0.006849985,-0.00982824,-0.044078164,-0.014536416,-0.022862855,6.217898e-05,-0.009961311,0.01040488,-0.0035010332,-0.00838347,0.03360992,-0.017096447,-0.02917422,-0.014485722,0.032443963,0.010183095,-0.015322168,0.0047810487,0.028084306,-0.012381935,0.020936495,-0.0023303255,0.023002263,0.050490916,0.011000531,-0.0132183805,0.0018059628,0.013776011,0.0033299418,-0.031176621,-0.018617257,0.019580439,-0.019022807,0.009625465,-0.0020625996,0.007464646,0.0042360914,-0.008110991,-0.010214779,-0.0060452227,-0.013307094,-0.0018392305,-0.019555092,0.006057896,-0.001851904,-0.025245458,-0.013649276,-0.009004467,0.0046162945,-0.012356588,0.027298553,-0.0049267933,0.004499065,-0.029959971,0.023673953,0.010626665,-0.004666988,0.010677359,0.026512802,-0.0011081324,0.014435029,-0.025169417,-0.0021307191,0.0133324405,0.033305757,0.005262639,-0.0030859786,0.00272637,0.019504398,0.0036214306,-0.027450634,0.0090868445,-0.026132599,-0.0013742743,0.020074703,0.02217849,-0.013243727,0.019225582,-0.0011714995,0.007268208,-0.0113680605,0.0037259862,-0.023978116,-0.019174889,0.00029366696,-0.007952573,-0.0036150939,-0.0119320275,-0.0013029863,-0.015005332,-0.0053133327,0.0058202697,0.027501328,0.014054826,0.007458309,-0.0013711059,0.030847112,0.02184898,-0.011101918,0.014435029,-0.006270176,-0.015309495,-0.0081616845,-0.014536416,-0.01514474,-0.005297491,-0.027526675,0.0044325297,-0.01836379,0.011101918,0.015005332,0.023572566,-0.0062765125,-0.0047715437,-0.025093377,0.00327608,-0.0133324405,0.0070781065,-0.0005924825,0.00543373,-0.026335374,0.016221981,0.0058646263,0.0053133327,0.015778411,0.020923821,-0.009061498,0.0196945,-0.023635933,-0.016120594,-0.008282082,0.015930492,-0.0073062284,-0.010417554,-0.038197696,0.011558162,0.006314533,-0.044128858,-0.014397008,-0.022533346,-0.01454909,-0.031151274,0.03665154,0.02173492,0.004603621,-0.03928761,-0.01514474,-0.008269409,-0.027856184,0.0010027846,0.011444101,-0.034522403,0.0046574827,0.016158614,-0.016741592,-0.0044737183,0.008852386,-0.0007972375,-0.022900876,0.019707173,-0.0043089637,-0.003136672,0.032241188,0.0017600216,0.03254535,-0.0013109072,0.005870963,0.0069513726,-0.0012443718,0.012787484,0.020480251,-0.015715044,0.0036499458,0.0065331496,-0.0040491587,-0.006362058,0.015753064,-0.02162086,-0.014954639,0.012210843,0.03054295,0.0041632196,-0.016919019,-0.016881,-0.0069070156,0.003554895,0.020594312,0.005227787,0.026107252,-0.010417554,-0.0024824068,-0.008009603,-0.0170711,0.007401279,-0.021291351,-0.008890406,-0.0037798483,-0.00037644026,0.01310432,0.016690899,-0.010398543,0.027146472,-0.0014685328,0.010259136,0.040707033,-0.010620329,0.018680625,-0.01551227,0.012223517,0.03360992,-0.0084785195,-0.01643743,-0.022381265,-0.020378863,-0.005769576,0.004774712,0.027273206,0.0127558,-0.00491412,0.0024602283,0.01944103,0.005167588,0.020176088,-0.008827039,-0.0027152807,0.018832706,-0.02106323,0.02410485,0.010601318,-0.00037168773,0.036271337,0.034344975,0.003659451,-0.012033415,-0.022241857,0.030897805,0.0010138738,-0.017121794,-0.008605254,-0.0032475647,0.01840181,-0.017463977,-0.011076571,-0.022165816,-0.01799626,0.009834576,-0.0030495424,0.03520677,0.019960642,0.0054242252,-0.0052848174,-0.011545489,0.013915419,0.00016881396,-0.016703572,0.02965581,0.0024554757,0.0012602134,-0.0046543144,0.007756135,0.008808029,0.018465178,-0.014485722,0.00710979,0.024611788,0.006010371,-0.0043501523,-0.011317367,0.018465178,-0.0064539406,-0.019263603,-0.0033552886,0.025498927,-0.010252799,0.0018360622,-0.02828708,0.00807297,0.01038587,-0.0010217947,-0.009226252,0.0040491587,-0.01643743,0.0062670074,-0.009371996,0.016133267,0.057334565,0.0042741117,0.024497727,-0.019580439,0.020467578,-0.00037743038,-0.007198504,0.021151943,0.020860454,-0.0010709042,-0.01314234,0.016500797,-0.0021972547,0.003624599,-0.023724647,-0.018503197,0.003367962,-0.012584709,0.006019876,0.003634104,-0.018224383,-0.004635304,0.0038178687,0.010043688,0.0075660334,0.0026059726,-0.023521872,0.0088840695,0.10052559,0.009505067,-0.019935295,0.023927422,-0.021684228,-0.017616058,-0.0329509,-0.0036816294,-0.004711345,0.0006380276,0.0034851914,-0.0119320275,0.013028279,-0.03328041,0.008484856,0.0076040537,-0.00021426006,-0.010468247,-0.00080555445,0.007578707,0.028464507,-0.022926223,-0.0039255926,0.009429026,0.0069070156,0.008294756,0.022774141,0.028515201,-0.013763337,-0.042709436,-0.004480055,-0.017692098,-0.0051359045,0.022229183,0.013307094,0.016906345,-0.015524943,0.020112721,-0.0038717308,-0.005094716,0.027425287,0.016234655,0.002992512,-0.026969044,-0.014447702,0.007623064,0.027019737,0.018427158,-0.027273206,-0.012445302,0.016919019,-0.007952573,-0.008668621,-0.016348716,-0.0013623929,0.009156548,0.013243727,0.012476984,-0.02699439,-0.027045084,0.007952573,-0.0009766456,-0.0066091903,0.00031861776,-0.0188834,-0.023395138,-0.0063810684,0.006875332,0.0018756666,-0.01574039,0.020746393,-0.037158474,-0.014751865,-0.015613657,0.037386596,-0.009207242,-0.006596517,0.018072302,0.026969044,0.016133267,-0.00272637,0.007198504,-0.006830975,-0.016703572,-0.00398896,0.0076357373,0.01418156,-0.00010079332,-0.044230245,-0.010683696,0.004150546,-0.020518271,0.053329762,0.012990259,-0.004967982,0.019010134,0.004356489,0.0017077437,0.0039034144,-0.0028245891,-0.011957374,0.01566435,-0.005959677,0.00084040634,0.018376464,-0.023078304,-0.0058171013,-0.028160345,0.0033077635,-0.0059723505,0.0068436484,-0.0016427925,0.0016966545,-0.008985457,-0.01186866,0.026969044,0.0147772115,0.027856184,0.0045117387,-0.0145744365,-0.0041378727,-0.035156075,0.00199448,0.029858584,-0.008123664,-0.00803495,0.004365994,-0.037158474,-0.03469983,-0.01651347,0.0054939287,0.019174889,-0.010537951,-0.025156744,-0.008617927,0.0039667813,0.005468582,0.0069070156,-0.03799492,-0.033736654,-0.0035422216,-0.009593781,-0.003393309,-0.004210745,-0.0011350635,-0.028489854,-0.0146631505,0.019833907,0.0018297255,0.018477852,0.026081905,-0.02084778,-0.012907881,0.0028340942,0.015170087,-0.030010665,-0.012027078,-0.03229188,0.02362326,0.03913553,0.03350853,0.015081373,0.005059864,-0.008598917,0.011976385,-0.008269409,-0.010709043,0.011406081,-0.016830307,0.015486923,0.0045560957,0.028540548,0.015157414,0.020024009,0.0069513726,0.023205038,0.0010471416,-0.01940301,-0.010721716,0.008396143,-0.003992128,-0.0028293417,-0.014865926,0.015182761,-0.0349533,-0.026056558,0.023433158,0.008130001,0.015651677,-0.023433158,0.004863426,-0.018262403,0.01714714,-0.0007105038,-0.015385536,-0.031125927,0.002670924,-0.0445851,-0.011634203,-0.0057473974,0.009701505,0.012476984,-0.0030653842,-0.01614594,-0.0034661812,0.01676694,-0.01077241,0.01081043,0.021937694,-0.017248528,0.000695058,-0.014206907,-0.021595513,-0.020429557,-0.0029291448,0.02636072,-0.023496525,0.015930492,-0.01574039,-0.05046557,0.0054242252,-0.018541217,0.024561094,-0.0024285447,0.027349247,0.008510203,0.014954639,-0.018034281,0.013028279,-0.01859191,-0.027501328,0.005113726,0.0046891663,-0.011317367,-0.029934624,-0.01595584,-0.021709574,-0.011222316,-0.023268405,0.031227315,0.0041442094,0.01647545,-0.008643274,-0.0014558595,-0.016957039,0.015778411,-0.0074139526,-0.0044483715,-0.0054242252,-0.055763062,-0.031632863,0.01780616,-0.031303354,0.014764538,0.017425956,-0.013978786,-0.004961645,-0.00044594606,-0.034091506,0.024903277,-0.0041251993,0.014675824,-0.021709574,0.02506803,0.012084109,0.010341513,-0.0038432155,0.004961645,-0.0036752927,0.015778411,-0.012356588,0.004191735,0.018237056,-0.005167588,-0.0012095198,-0.013687297,0.007578707,-0.015778411,-0.009992994,-0.007268208,-0.0045465906,0.003830542,0.003535885,-0.018731318,0.0010677358,-0.022343244,-0.028565895,-0.011336377,0.03206376,-0.017007733,-0.025245458,0.007667421,0.015841778,-0.01795824,0.008814366,0.0012641739,0.002379435,0.009169222,-0.015132067,0.029224914,0.0031129096,0.010937164,-0.008231388,0.004302627,-0.0044198562,-0.023597913,0.028337773,-0.003732323,-0.029275607,-0.023179691,0.0015936829,-0.002743796,-0.025574967,0.00025802298,-0.017565364,0.014929292,0.00427728,0.004996497,-0.0026835974,0.011634203,-0.026893003,0.012648076,0.0029735018,-0.019048154,0.008915753,-0.0022305225,-4.834218e-05,-0.019010134,0.00021029961,-0.015981186,-0.0357644,0.013928092,0.012432628,0.021075903,-0.023141671,0.013167687,-0.0060262126,0.005256302,0.0053481846,-0.03905949,0.011545489,0.0023588408,0.012863524,0.0026059726,-0.013066299,0.013370461,-0.011672222,-0.00992329,-0.026081905,-0.0074456357,-0.0047873855,0.030720377,-0.00016049702,-0.011735589,-0.025296152,0.015081373,-0.036296684,-0.029959971,0.039084837,-0.008110991,0.010569635,0.032925554,-0.0013465512,0.026107252,0.0076357373,0.00541472,-0.023255732,0.022609387,0.009587444,-0.0065331496,0.025220111,-0.01928895,-0.026259333,-0.0052689756,0.017261202,-0.016792286,0.007908216,0.0053196694,-0.013547889,0.0037703433,-0.020885801,0.02487793,-0.0049553085,0.0051644198,0.032824166,-0.023902075,0.016260002,0.0076103904,0.0008348617,-0.03110058,0.0245104,-0.0018122995,0.008459509,0.022938896,-0.004641641,-0.0064507723,0.0016855652,0.00982824,0.014346315,0.007242861,0.0039414344,0.019757867,0.0122488635,-0.012413618,-0.00703375,-0.0067739445,-0.0007893166,0.009397343,-0.008763672,-0.014042153,0.002404782,-0.020353517,0.001139816,-0.018439831,-0.011279346,-0.0178822,-0.006742261,-0.018972114,0.024789216,-0.012046088,0.0058392794,0.01414354,0.01090548,0.019162215,0.0036657876,-0.003491528,-0.00011534795,-0.00755336,-0.012331241,-0.0022035914,-0.011874997,-0.01086746,0.00089664466,0.019238256,-0.02443436,0.016830307,0.18918885,0.00422025,0.0014463544,0.039008796,0.0076737576,0.024332972,0.035257462,0.003982623,0.0032348912,-0.012103119,-0.0069133523,0.014979986,-0.0093593225,0.007882869,0.01090548,-0.020632332,-0.024662482,-0.02554962,-0.006596517,0.03262139,0.023230385,0.002849936,-0.014498396,-0.022862855,0.025308825,0.0076800943,-0.013421155,-0.0023493357,0.034598444,0.006317701,-0.02121531,0.004749365,0.00859258,0.0022162648,0.0077688084,0.0015849699,-0.019124195,-0.012388271,0.009815566,0.0017410115,-0.0012784315,-0.0090424875,-0.0236993,0.003437666,0.013928092,0.017869527,-0.011228653,-0.010050025,0.008313766,-0.00491412,-0.03931296,0.0037735116,0.019491725,0.024700502,-0.0026788448,0.016728919,-0.00472085,0.002146561,-0.005167588,0.0014883351,0.0026107251,0.01636139,0.003367962,0.007876532,-0.034522403,0.022457305,-0.027475981,9.8565564e-05,0.0013584325,-0.024092177,0.01081043,0.0059279935,-0.025536947,0.019073501,0.009999331,-0.00990428,0.017387936,0.0145744365,0.0059881923,0.024155544,-0.00013911062,-0.010335176,-0.024079503,0.024928624,-0.0109435,-0.0045370855,0.0045560957,0.0073442487,0.004112526,-0.019504398,0.0043501523,0.006013539,0.0013513038,-0.01740061,0.007876532,0.015448903,0.001335462,-0.0026392404,-0.026056558,-0.0188834,-0.003098652,0.04590314,0.0018471514,-0.016044553,-0.018224383,-0.012641739,0.00072515744,0.014789885,0.0065331496,-0.015322168,-0.00048515448,-0.03649946,0.006083243,-0.028591242,0.0056428416,-0.006004034,-0.0048951097,-0.0106900325,-0.0009774377,-0.01042389,0.006742261,-0.032824166,0.020873128,-0.0150687,0.00036634112,-0.009935964,-0.004746197,0.010892807,-0.0035644001,-0.034902606,-0.010005668,-0.0014194234,0.017273875,0.007578707,-0.0050250124,-0.0068689953,-0.007939899,0.004286785,-0.026538149,0.011082908,-0.024662482,0.007832175,-0.00840248,-0.007382269,0.0069957296,0.0051454096,-0.0016681392,0.012907881,0.016665552,-0.008846049,-0.011431428,-0.01418156,0.019960642,-0.0027485485,0.024332972,0.00425827,-0.005753734,-0.0007857522,0.015639003,-0.0236993,-0.018503197,-0.02828708,0.04346984,0.009980321,-0.009961311,0.011824303,-0.15725183,0.009536751,-0.008212378,0.018300423,0.04653681,0.019301623,0.011976385,0.0038780675,-0.010715379,0.003516875,0.014232254,-0.028261732,-0.031607516,-0.023255732,0.011862324,-0.008326439,-0.0038432155,-0.001504969,-0.010069034,0.00986626,0.043672614,0.009264272,0.014561763,-0.014270274,0.0066028535,0.02373732,0.00947972,0.023864055,0.025448233,-0.0028736987,8.178318e-05,-0.039034143,0.008472183,-0.0031636031,-0.01127301,0.0012515006,0.0005326798,-0.01310432,-0.00075565284,0.012635402,0.03561232,0.015182761,-0.012438965,0.013028279,0.019491725,-0.00709078,0.007914552,-0.00851654,-0.0116848955,-0.031151274,0.021367392,0.0028531044,0.021684228,0.015930492,0.0037735116,0.011051225,0.003732323,-0.0007061473,-0.0057125455,-0.03954108,-0.014802558,0.010322503,0.0038622257,-0.015271475,0.006048391,-0.0028927089,-0.011279346,-0.044230245,-0.0043945094,-0.0019532912,0.0050915475,-0.006596517,0.0022590377,-0.008820702,-0.003285585,0.011874997,-0.002636072,0.020670353,-0.01086746,-0.017616058,-0.01551227,0.0015936829,-0.02006203,0.0041251993,-0.027197165,-0.0047176816,-0.010785083,0.008529213,0.008712978,0.012559362,0.02988393,-0.0075596967,-0.033736654,-0.0057569025,-0.004375499,0.025612988,0.010436564,-0.001015458,0.0018408147,0.0024285447,-0.008472183,0.014435029,0.003323605,-0.008085644,0.031201968,0.04572571,0.020378863,0.03791888,0.011133602,-0.026183292,0.017451303,0.0014772458,0.022165816,0.005750566,0.0026756765,-0.011760936,0.01614594,-0.0072301878,0.014701171,0.0048856046,0.046181954,-0.0024871593,-0.001674476,-0.019529745,-0.02554962,-0.016412083,-0.1028575,-0.048589904,-0.012838177,0.026335374,-0.023610586,0.032596044,-0.0154995965,0.027095778,0.0063779,0.03406616,-0.009238926,-0.012743127,-0.0075216764,0.004714513,0.033584572,-0.013383134,0.010544288,-0.004400846,-0.027552022,0.01759071,-0.016640205,-0.03396477,-0.029630464,-0.022748794,-0.013395808,0.0006582259,-0.023914749,0.011399744,0.016158614,0.013776011,-0.015246128,0.00260122,0.011855987,-0.033305757,0.02699439,-0.0026202302,-0.032443963,-0.0028261733,-0.0036816294,-0.012464312,0.0018281413,0.0022495326,-0.0066852304,-0.037741452,0.014688497,-0.026816962,0.016690899,-0.013750664,-0.020480251,0.016665552,0.0084405,2.5866655e-05,-0.019390337,-0.009378333,0.002930729,0.03312833,-0.009549424,0.00270736,-0.014447702,-0.00545274,-0.0010558545,0.02229255,-0.015170087,0.0048760995,-0.009029814,0.021633534,-0.0046891663,0.00077783136,0.016526144,-0.031278007,-0.0023857718,0.02184898,-0.0061592837,0.020923821,-0.0053481846,0.023610586,-0.025980517,-0.0047081765,0.03698105,-0.01965648,-0.01639941,-0.031683557,0.0037196497,0.004141041,0.0022336908,-0.0024332972,-0.014409682,0.008225052,0.012686096,-0.04557363,0.0122488635,0.035637666,0.04491461,-0.019301623,0.016221981,-0.004147378,-0.0329509,-0.010677359,0.03535885,0.0076991045,-0.0011002115,0.005699872,-0.07117394,0.01131103,0.005218282,0.011013204,0.023407811,-0.01680496,0.010918153,-0.007901879,0.024421686,-0.0076040537,-0.03584044,0.027881531,-0.0025552788,-0.0019992325,-0.027628062,-0.007971583,0.013712644,0.019897275,0.00033069713,0.009701505,0.00210062,-0.027171819,0.020822434,-0.0017124963,0.02980789,0.0019406179,-0.03905949,0.011951038,-0.013915419,-0.014308294,0.009029814,-0.006232156,-0.02739994,0.03561232,0.013547889,-0.0053101643,-0.02917422,-0.0031826133,0.002948155,0.016386736,-0.0422025,-0.015524943,0.011456775,-0.011596182,-0.01751467,0.0017774475,0.009378333,-0.00890308,0.009074171,-0.006279681,0.03672758,0.021304024,0.0013568484,-0.01828775,-0.014675824,-0.016450103,0.0023762668,-0.012679759,0.020936495,0.0021719078,-0.01318036,0.013750664,0.020556292,0.0023018105,0.019529745,-0.017311895,0.008225052,-0.020340843,0.00807297,-0.018870726,-0.0002805975,-0.0065141395,0.043926083,-0.02154482,0.002163987,-0.011881334,-0.029909277,0.0031746924,-0.013750664,0.019453704,0.0077434615,0.008275745,-0.028160345,0.039515734,0.02587913,0.012413618,-0.012990259,0.0049711503,-0.013509869,-0.0021972547,-0.046815623,-0.0021671553,-0.02395277,0.011082908,-0.027298553,0.005021844,0.0142576005,0.020429557,0.018313097,0.007426626,0.013357787,0.003206376,-0.008852386,-0.03246931,-0.030517602,-0.017451303,-0.011076571,-0.018477852,-0.0024380498,0.027374594,0.010455574,0.009137538,0.01462513,0.0018677457,-0.014967312,0.012844514,0.03429428,-0.0066788937,-0.018820032,0.026233986,-0.0013703138,0.02310365,0.026310027,0.0010233789,-0.01610792,0.01184965,-0.016057227,-0.023116324,0.009935964,-0.0016887336,-0.021608187,-0.01129202,-0.025258131,-0.008776345,-0.031683557,0.003855889,0.027932225,0.033407144,0.013801358,0.036195297,0.009821903,-0.014739191,0.00199448,0.008193368,0.031683557,0.03173425,-0.01821171,-0.018161016,0.010335176,0.020797087,0.004365994,0.010499931,-0.0061149267,-0.029072832,0.014295621,-0.014726518,-0.00982824,-0.012033415,0.016196635,0.013370461,-0.024624461,0.011710242,0.007781482,-0.028946098,-0.017324569,-0.0051992717,0.019973315,-0.0005912944,-0.021367392,0.02040421,0.0012063514,-0.023838708,-0.0049362984,0.0086812945,-0.009720515,0.00982824,0.013345114,0.019859254,0.0034503394,0.00024257724,0.020784413,0.009181895,-0.018122995,-0.0077688084,-0.0086369375,-0.009897944,-0.009821903,-0.0012895208]']\n"
]
}
],
"source": [
"cur.execute(\n",
" \"\"\"\n",
" SELECT *\n",
" FROM news\n",
" JOIN (\n",
" SELECT * from fortune_100\n",
" WHERE metadata->>'company' = 'Walmart'\n",
" ) AS walmart\n",
" ON news.company_id = walmart.id::text\n",
" WHERE news.published_at > current_date - interval '60 days'\n",
"\"\"\"\n",
")\n",
"\n",
"news_data = cur.fetchall()\n",
"for row in news_data:\n",
" print(row)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Apple: $273503.0\n",
"['33a3f638-20dc-5797-a9e2-660ae1bad782', \"Apple Inc. is a multinational technology company renowned for its cutting-edge products and innovation. They design, manufacture, and market a range of consumer electronics, software, and online services. Apple is best known for their iconic products such as the iPhone, iPad, Mac computers, Apple Watch, and AirPods. Their software offerings include the iOS, macOS, watchOS, and tvOS operating systems, as well as various productivity and creativity apps. Apple's services like the App Store, iCloud, Apple Music, and Apple Pay provide seamless integration and enhance the user experience across all devices. With a focus on user-friendly design and technological advancements, Apple continues to be a leader in the tech industry.\", {'ceo': 'Timothy D. Cook', 'city': 'Cupertino', 'rank': 3, 'state': 'CA', 'profit': 94680.0, 'sector': 'Technology', 'ticker': 'AAPL', 'company': 'Apple', 'revenue': 365817.0, 'website': 'www.apple.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 3, 'market_cap': 2443962.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 154000}, '[-0.004569143,-0.011583377,0.0030612284,-0.02679872,0.0005691161,0.0010952647,-0.021247001,0.014060897,0.020572493,-0.020377923,-0.0035541381,0.009267999,-0.0112915225,-0.004682642,-0.007834669,0.0042578313,0.007484444,-0.00898263,-0.0045756283,-0.017991202,-0.06615367,0.023075955,0.002106216,0.005519291,-0.001074997,0.0046145422,0.0025196765,-0.020767063,0.019249419,-0.014852147,0.0015881744,-0.012452454,-0.01598065,0.013386388,-0.008794546,0.00396922,-0.01007222,-0.032168843,0.0022099863,-0.020987574,0.014527864,0.018704625,-0.021415628,0.009987907,-0.019742329,0.023802347,0.0050296243,-0.0038297784,0.00622947,0.010052763,0.0030466358,0.001271188,-0.0144370645,-0.03273958,-0.00059384265,-0.0060608434,-0.03761679,0.017887432,0.012718366,0.008690775,-0.02205122,0.02321864,-0.034659334,0.00092663773,-0.017640978,-0.00019386024,-0.032532036,-0.002252143,-0.012368141,0.016784871,0.048227318,0.013671758,0.022012308,0.03860261,-0.016408702,0.0038070786,-0.025164336,0.007912497,0.019962842,0.02600747,0.0036157519,-0.023179725,0.026279869,0.0033952396,0.0168627,0.011401779,-0.039744083,0.017290752,-0.0092031425,0.015863908,-0.0070304484,0.005470649,-0.007471473,0.028459048,-0.022206876,0.025735073,0.0048058694,0.025553474,-0.009851707,-0.0153709985,0.018224686,0.012037373,-0.020559521,-0.009170714,-0.025449704,0.011434207,0.008651862,-0.011401779,0.042571828,0.0049907104,-0.004475101,-0.004530229,0.030975481,-0.010617015,0.014800261,-0.025761016,-0.014229524,-0.0074909297,0.004303231,-0.026643064,0.042935025,0.04041859,0.021584254,-0.021895565,0.0013409088,-0.0020462237,-0.025021652,-0.028433105,0.014748376,-0.018951079,0.029496752,-0.011226666,0.016123334,0.012452454,0.0011220181,-0.006213256,-0.011401779,0.047293384,0.0013538802,-0.017044296,0.017939318,0.009339341,-0.015850937,0.004209189,0.0021905294,0.025929643,0.023996918,0.020377923,0.00868429,0.02978212,0.02114323,-0.011259095,-0.011213695,0.005580905,0.012283827,0.0051787943,0.0015208857,-0.0060349004,-0.0035671094,-0.003518467,-0.010266789,0.013237218,-0.021363743,0.02251819,0.008749146,0.027032204,0.009987907,0.016162248,-0.012329227,-0.00050304347,-0.0020818948,-0.02372452,-0.031157078,-0.0013271269,0.010415959,-0.0020316308,0.012828623,0.02253116,-0.0088594025,-0.0058176313,0.023192696,-0.0020640593,0.0026137184,0.026552266,-0.014034954,0.009721994,0.0009898728,0.009417169,0.036475316,-0.018289542,-0.0075752432,0.022453332,0.004899911,-0.016707044,-0.65001816,-0.02461954,0.0042708027,-0.020987574,0.01627899,0.035800807,0.019677473,-0.0030109647,0.013788499,0.010461359,-0.0075363293,0.008612948,0.03235044,0.0045723855,-0.008664833,-0.023958003,-7.283693e-06,-0.031079251,-0.027525114,0.0023591565,-0.03582675,0.01160932,-0.0080227535,-0.034503676,-0.02639661,0.010934812,0.023011098,0.007614157,-0.03891392,0.036916338,-0.00863889,0.0136977,0.012108715,0.02341321,0.04485478,0.0025893971,-0.034814987,0.019080792,0.013580958,0.02163614,0.005353907,-0.024165545,-0.0036352088,-0.021804767,0.012108715,-0.012698909,0.01136935,-0.007691985,-0.0003970436,-0.03595646,0.01787446,-0.01116181,-0.01896405,0.005684675,0.0124719115,0.0007097737,0.008405407,0.0047020987,0.029626464,0.00069193816,-0.017796634,0.03017126,-0.037071995,0.00016001322,-0.021091346,0.014527864,0.0013717157,-0.021519398,0.0023834775,0.00080503174,-0.0011163431,0.025281077,-0.014281409,-0.011764975,-0.0061321855,0.030638227,0.022959214,0.00086826686,-0.017498292,0.014748376,0.0033919967,-0.021610197,0.020767063,-0.037071995,0.016590301,0.014826204,0.016694073,-0.016097391,0.0074001304,-0.0044524013,0.044076502,0.010039791,0.0021045946,-0.03561921,-0.021662083,-0.0057138605,-0.02799208,-0.008009782,-0.016720014,0.004682642,0.01380147,0.0011041824,-0.0037843788,0.016940527,0.014761347,0.013126963,0.021895565,0.021091346,0.029730236,-0.023075955,-0.008191381,-0.03997757,-0.014540835,-0.012342199,0.007880069,-0.01186226,0.0043810587,-0.02342618,0.011810374,-0.0130361635,0.030586341,-0.020377923,0.013172362,-0.004004891,-0.019132677,0.008016268,-0.005165823,-0.034348022,-0.02360778,0.011375836,-0.0069331634,-0.020157412,0.00082408334,0.011654719,-0.0015411534,0.0182636,0.00563279,-0.017394522,0.01275728,-0.03473716,-0.0072379895,0.0029915078,0.007899526,0.013905241,-0.012205999,-0.019820157,-0.013814442,-0.0048512686,0.005292293,-0.008398921,-0.023867205,-0.006569967,-0.0029428652,0.0454774,0.02293327,0.0040859617,-0.0470599,-0.030197203,-0.019534789,-0.0013749585,-0.006158128,0.020507636,-0.016240077,-0.020767063,0.013386388,-0.021104317,-0.008697261,0.023504008,-0.0008528634,-0.016849728,0.01617522,0.016694073,-0.0046307566,0.025527531,-0.0060284147,0.01965153,-0.009702537,-0.00019152946,0.013490159,-0.020533578,0.017303724,-0.00972848,-0.0064629535,0.002346185,0.003965977,0.004643728,0.024282286,0.012523796,-0.016629215,0.010707814,-0.012193029,0.01796526,0.015941735,-0.01906782,-0.015656367,0.02035198,-0.0063202693,0.0060738144,0.025838843,0.024113659,0.00045156362,0.010415959,0.0070434194,-0.009164228,0.01777069,-0.012193029,0.001492511,0.0054155206,0.0005184469,0.027966138,0.026215011,0.0013473945,-0.010104648,-0.008158952,0.007769813,0.038265355,0.009948992,0.021311857,-0.005723589,0.009994392,0.0026607392,0.016538417,-0.00011512035,-0.027758596,-0.013477188,0.0036773656,0.02123403,0.031857528,-0.0057171034,-0.03551544,-0.007263932,0.013113991,0.0047993837,0.009021544,0.005000439,0.011285037,0.0001437991,-0.02312784,0.030716054,-0.0064532254,-0.020390894,0.027058147,0.030145317,-0.013762557,0.01359393,0.008846431,0.03144245,0.020793006,-0.012095744,0.0010612151,-0.018315485,0.0028066665,-0.016110362,0.0074390443,-0.009144771,-0.031338677,0.036164004,0.00029307045,0.01766692,0.021195116,0.007257446,-0.02251819,0.004698856,-0.00070572016,-0.00844432,0.01797823,0.016382761,-0.02570913,0.011777947,-0.012387598,0.007581729,-0.0005573608,0.039873797,0.020468723,0.020572493,0.01796526,0.0013555016,-4.957978e-05,-0.010448388,0.019210506,-0.012530282,-0.032532036,-0.011187752,0.005126909,0.014566777,0.006307298,-0.019612616,0.0026347968,-0.008243266,0.026876548,-0.004111904,0.013055621,-0.017783662,0.044543467,0.029444866,-0.017290752,0.05089941,0.012270857,0.002663982,-0.010007363,-0.009021544,-0.0028018022,-0.010921841,0.0024937338,0.0353079,-0.008548091,0.010143562,-0.015954707,0.0028374733,-0.008697261,-0.01815983,-0.015604482,0.004786412,-0.01886028,0.017926347,-0.0021743153,7.144353e-06,-0.015773108,0.020027697,0.010986697,-0.01965153,-0.014644605,-0.016914584,0.021713968,0.09007276,0.0035314383,-0.014852147,0.019703414,-0.031805646,0.002694789,-0.016110362,-0.023140812,0.010707814,0.0039984053,-0.022310648,0.0046339994,0.0183544,-0.022946242,0.027836425,0.012491369,0.0077503556,-0.0013173984,-0.02908167,-0.00859349,-0.019521818,-0.012089258,0.048227318,-0.0034892815,0.021117287,-0.009994392,0.031157078,0.022038251,-0.007821698,-0.029470809,-0.011304494,-0.013944155,-0.02281653,-0.0065959096,-0.0027920739,0.034192365,-0.0013546909,0.026150154,-0.015254257,0.008619433,0.02669495,0.015487741,-0.012342199,-0.018445197,-0.011927117,0.013373418,-0.02957458,0.014151696,-0.010104648,-0.0005046649,-0.0007081523,-0.014346265,-4.012998e-05,-0.0064888964,-0.0041832463,0.024152573,0.005425249,-0.02352995,0.005619819,-0.039147403,0.0051787943,-0.018834338,-0.0075298436,-0.001965153,0.0046339994,-0.013321532,0.010124105,-0.012497854,-0.0012979414,0.0004248103,0.03779839,-0.036760684,-0.005892216,0.009858193,0.0410931,0.008463778,-0.008976145,0.011933602,0.017809605,0.05074375,0.024788167,-0.0070823333,-0.0004734527,-0.02044278,-0.0075363293,0.014138725,-0.0136977,0.019794215,0.00093069125,0.008210837,0.02144157,-0.02819962,0.026111241,0.024087718,-0.016149277,0.020468723,0.004342145,-0.00024645482,-0.016434645,-0.023672635,-0.009462568,-0.0049517965,-0.011239638,-0.020429809,-0.0013936048,0.020105526,-0.0033336258,0.004958282,-0.016512474,0.013879298,0.01795229,-0.013918213,0.015708253,0.003576838,-0.017550178,0.016019564,-0.00858052,-0.0051398803,-0.0054965913,0.0048123547,-0.0026137184,-0.024969766,0.019223478,0.011077496,-0.027499171,0.024788167,-0.009715509,-0.01195306,-0.020494664,-0.0063851257,0.009358798,0.014411122,-0.014255466,-0.015760139,-0.0052793217,-0.012063315,0.0046015712,0.020909747,-0.007075848,-0.034114536,-0.0084897205,0.013373418,0.0060576005,-0.003228234,-0.010487301,-0.030716054,0.013003735,0.022064192,-0.00868429,0.006605638,-0.028018022,-0.0056717037,-0.01856194,0.011135867,0.008509178,0.0010604043,-0.014112782,-0.0183544,0.038732324,0.047241498,-0.002843959,0.0041281185,0.02442497,0.004338902,0.0019797457,0.0008593491,-0.0016911342,-0.016642187,-0.007432559,0.014060897,0.012737824,0.017044296,0.016486531,-0.0031244636,-0.0142165525,0.001027976,0.0064629535,-0.017939318,-0.010714299,-0.0013660408,-0.01965153,-0.0066153663,-0.021999337,0.009397712,-0.012043859,-0.013016706,0.032168843,0.0183544,0.010707814,-0.011187752,0.035178185,-0.00271911,0.009741452,0.007867098,0.022686815,-0.043739248,0.008301636,-0.036968224,-0.010928326,0.0004787223,0.012776737,-0.0040924475,-0.007990325,-0.022505218,-0.0040665045,0.033595685,-0.029367039,-0.010480816,0.009968449,-0.031546216,0.00016862698,-0.015396941,-0.021000545,-0.009799822,0.021000545,0.026720893,-0.010513244,0.0045432,-0.021713968,-0.015889851,0.015734196,-0.0018613825,0.03432208,-0.01707024,0.021675054,0.016551388,0.0056263045,-0.016745957,-0.026215011,-0.019923927,0.0048804544,0.0069720773,0.023737492,0.0012136279,-0.023737492,0.012290313,-0.016032536,-0.0048869397,-0.0027823453,-0.0007823319,0.014268437,0.008184895,-0.03305089,-0.018393314,-0.003596295,0.029055728,-0.004173518,0.0039919196,-0.0052112225,-0.02382829,-0.015046716,0.0057527744,-0.017628007,0.0027434314,0.016486531,-0.021623168,0.007951411,-0.025462676,0.0005881677,0.0077049565,-0.022336591,0.0044426727,-0.033024948,0.019132677,0.0012606488,-0.0029898863,0.0053863353,-0.0028553088,0.013386388,0.030119374,-0.012997249,-0.018912164,-0.0032233698,0.00025902077,-0.0015257499,-0.02341321,-0.01489106,-0.0036773656,0.0003518467,-0.012562711,0.01607145,0.009494997,0.0006262709,-0.012692424,0.013269647,-0.022946242,-0.004047048,-0.00411839,0.020805975,0.0020429809,-0.024009889,0.001749505,0.011375836,0.0059603155,0.028926015,-0.005120423,0.00065383496,0.01886028,-0.019495875,-0.0031390563,0.006300812,0.0025666973,0.007724413,0.016745957,-0.024982737,-0.012912936,0.024243373,-0.012919421,-0.019340219,-0.017939318,-0.004303231,0.004287017,-0.018717596,0.0018970537,-0.014346265,0.0077049565,0.0023526708,-0.011739032,-0.019314276,-0.0006680223,-0.014527864,-0.0035703522,0.014307352,-0.012413541,-0.004997196,-0.009112343,0.019923927,-0.015267228,-0.036241833,-0.03377728,-0.023581836,0.01429438,0.0021856653,0.015799051,-0.014852147,0.016564358,-0.024736281,0.0012403813,-0.007523358,0.0013498266,-0.01627899,0.009053973,0.04028888,0.0057171034,0.0021905294,0.012186543,-0.005820874,-0.013944155,-0.04158601,-0.004364845,0.004248103,0.03663097,0.019145649,0.018484112,-0.035281956,0.0045561716,-0.061899077,-0.030897653,0.016460588,0.0028358519,5.786419e-05,0.030430686,0.005785203,0.01081807,0.0088594025,0.012718366,-0.034425847,-0.018600853,0.015409913,-0.004342145,0.00853512,-0.031779703,-0.015487741,-0.013827413,0.017887432,0.001379012,0.0018808395,0.020196324,-0.008723204,-0.018328456,0.008561063,0.020909747,-0.0034665817,0.014878089,0.01707024,-0.013840385,-0.0005257433,0.013023192,-0.013529073,-0.027628884,0.024762224,0.007659557,0.01329559,0.0092290845,0.024801139,-0.0004819651,-0.011492578,-0.0054187635,-3.3188305e-06,-0.020274153,-0.02054655,0.019508846,-0.002216472,-0.033102777,0.0037097938,0.015539626,-0.002788831,0.008619433,-0.0024775197,-0.029159497,-0.010338131,-0.0055257767,0.02809585,-0.02918544,-0.012017916,-0.0064694392,0.00090312725,-0.022803558,0.0044102445,-0.0054220064,0.026526323,0.009443112,-0.0069915345,0.022946242,-0.016304933,0.004228646,0.020364951,-0.02014444,0.0041086613,0.010798613,-0.029548638,-0.01886028,0.0020381166,-0.001843547,-0.017628007,0.011693633,0.21771042,0.0007644964,0.014800261,0.030638227,-0.013814442,0.021908537,0.016732985,0.009209628,0.0033174118,0.012783223,-0.005425249,0.019820157,-0.0037324936,-0.0004848026,0.0058857305,-0.046100024,-0.015526654,-0.0035087385,-0.0168627,0.042909082,0.0025050836,-0.019106735,0.0012014674,-0.0021726938,0.019729357,0.013159391,-0.033517856,0.0036384517,0.026954375,0.021973394,-0.013516102,0.0042708027,-0.0115379775,0.0137755275,-0.021610197,-0.019340219,-0.0009436626,0.017420465,0.0137495855,0.0071990755,-0.009112343,0.00051236665,-0.013334503,-0.028744416,0.014865118,0.009650652,-0.005201494,-0.016564358,0.008256237,-0.009572824,-0.046982072,0.010759699,0.014346265,0.0041281185,-0.0062748697,0.0066348235,-0.015824994,0.028069908,0.0011390429,-0.0057138605,-0.012426512,0.026850605,-0.014112782,0.031520277,-0.019716386,1.4858733e-05,-0.023283496,0.0017576121,-0.006012201,0.003106628,-0.0077179275,0.007225018,-0.019405074,0.006300812,-0.0035054956,-0.028303392,0.022998126,0.032402325,0.0047474983,0.033517856,-0.0072769034,0.014735404,-0.021454541,0.0075687575,-0.006197042,-0.0012452455,0.025812902,-0.013029678,-0.0116612045,-0.010422445,-0.0059570726,-0.009598767,-0.001141475,-0.018535998,0.0030320429,0.020105526,-0.019703414,-0.00017987554,0.004335659,0.0056814323,0.003366054,0.03203913,0.029237326,0.0056749466,-0.010402988,-0.0022586288,0.015293171,0.034348022,0.014748376,-0.008347036,-0.020170381,-0.012731338,0.021921508,-0.024191488,0.014346265,0.025825871,-0.017550178,-0.037149824,0.0011171538,-0.005084752,0.015228314,-0.005519291,-0.0051723085,0.0060349004,-0.0054868627,-0.020235239,-0.00036725012,0.026344724,0.003651423,-0.03175376,0.005402549,-0.014463007,-0.009851707,-0.011589862,0.005863031,0.007549301,0.021272942,-0.02877036,-0.014748376,-0.0040859617,-0.00719259,0.01847114,0.01166769,0.008619433,0.014333294,0.006693194,-0.006375397,0.010831041,0.012575682,-0.016953498,-0.019521818,-0.0021483726,-0.008671318,-0.023309438,0.0059408587,0.004215675,-0.020793006,0.0054155206,0.002197015,0.001918132,-0.023996918,-0.010552159,0.0273954,0.018574912,-0.020870833,-0.0028747658,-0.16312715,0.02770671,0.0056684613,0.014320322,0.038576666,-0.0055873906,-0.0028763872,0.00049655786,0.014929974,0.004773441,0.026539294,-0.032687694,-0.032583922,-0.020170381,0.034607448,0.0084897205,0.003173106,0.03582675,0.029211383,0.010331646,0.035852693,-0.009987907,-0.0034309106,-0.002918544,0.014333294,0.021298885,-0.005898702,-0.009021544,0.009060458,-0.01568231,0.006693194,-0.02242739,0.04350576,0.01359393,0.006725623,-0.0303788,-0.017926347,-0.018977022,0.0014090082,0.025034621,0.02481411,0.022193907,0.002393206,0.022712758,0.013023192,0.011628777,0.01136935,-0.010143562,0.014852147,-0.0055679334,0.022297677,-0.048875883,-0.010286246,0.009644167,0.0022294433,-0.00093150197,-0.012238428,-0.0019359676,0.0012476776,-0.028173678,-0.0034698246,-0.00053668785,0.007672528,-0.021882595,-0.0030061004,-0.007464987,0.0004848026,-0.0012047101,-0.026331753,0.013451246,0.00083259575,-0.00090393797,0.011576891,-0.02263493,-0.0006664009,-0.012205999,-0.02173991,0.00073125743,-0.009572824,0.00334984,0.008061667,-0.0013725264,-0.010999668,0.010351103,-0.023880176,-0.013477188,-0.0123486845,0.009559853,-0.030508514,-0.0077892696,0.029367039,-0.031779703,-0.023478065,-0.0023948275,0.013263161,0.036890395,0.024736281,-0.028900072,-0.00878806,-0.005820874,0.019119706,0.0044621294,-0.005619819,0.015474769,0.03938089,0.010766185,-0.0019570459,-0.0004248103,0.033024948,-0.0034665817,-0.017420465,0.016123334,0.036086176,0.026189068,-0.021675054,0.009300427,-0.0031552704,-0.0048966683,-0.0029396224,-0.0007827373,0.053856865,0.01111641,-0.0034179394,0.00503611,-0.029003842,-0.010454874,-0.10122808,-0.04010728,0.017355608,0.002576426,-0.020403866,0.027213803,0.005726832,0.02175288,-0.0069591063,0.023205668,0.020287124,-0.027836425,-0.023192696,-0.013347475,0.0053603924,-0.005120423,-0.024541713,-0.009812794,-0.05489457,0.009585796,-0.023542922,-0.027084088,-0.0029039513,-0.0055614477,-0.006197042,0.0046729133,-0.03203913,0.008814003,0.01886028,0.022090135,0.0039562485,0.003631966,0.0096701095,-0.028926015,0.020027697,0.0038589637,-0.016655158,-0.006326755,0.03642343,-0.023841262,-0.011693633,-0.005405792,0.0077892696,-0.051859286,0.0030109647,-0.011531492,0.008872374,0.007225018,0.007153676,-0.009138286,-0.024386058,0.0072379895,-0.029367039,-0.025151365,-0.005467406,-0.005901945,-0.009825765,-0.0060284147,-0.011570406,-0.012731338,-0.006514839,-0.0114406925,-0.025086507,0.0022634931,-0.0031990486,-0.0049096397,-0.0043843016,0.018795423,0.021454541,-0.036189947,0.0020348737,0.0014049547,-0.015059687,0.032506093,-0.01796526,-0.0019992027,-0.018691653,-0.0056392755,0.010915355,-0.012783223,-0.0018565183,-0.03346597,0.004157304,-0.027836425,0.009352312,0.0048772115,-0.015422883,0.002556969,0.005087995,-0.023555893,0.018107945,0.023050012,0.020416837,0.0183544,-0.0010085191,-0.02570913,-0.0077957553,-0.009566339,0.018886223,0.009897107,0.006154885,0.0061808275,-0.07627128,0.019586673,-0.017913375,0.0042189173,0.010085191,-0.0023737492,0.012452454,-0.017615035,0.009864679,-0.0019635316,-0.034685273,0.0074260733,-0.006553753,0.006086786,-0.019781243,-0.010941298,0.008969659,0.024411999,0.0043875445,0.0062229843,0.006339726,-0.008775089,0.008807518,0.0060608434,-0.009352312,0.016434645,-0.02541079,0.0034179394,-0.017498292,-0.025423761,0.008314608,0.0023948275,-0.006177585,0.029704293,-0.00049898995,-0.008969659,0.010655928,0.010688357,0.00396922,0.01339936,0.0056360327,-0.037149824,0.013334503,-0.030793883,-0.019443989,-0.01956073,0.003777893,-0.01718698,0.014333294,-0.005859788,0.014424093,0.013516102,-0.020559521,-0.015708253,-0.006719137,-0.028407162,0.026448494,-0.026059356,0.0037941074,-0.012848079,0.012024402,0.017485322,0.008029239,-0.0029963718,0.01854897,0.0053409357,-0.02809585,-0.019469932,0.026876548,0.015409913,0.011434207,-0.005577662,0.015409913,-0.010526216,0.0135031305,0.00047547946,-0.0019359676,-0.006472682,0.0025958829,0.012108715,0.0017997689,0.00055573945,-0.02284247,0.021960422,0.024165545,-0.0033790255,-0.046203796,-0.009845222,-0.0129388785,-0.0008479992,-0.013107506,0.0059797727,-0.014488949,-0.01389227,0.0101630185,-0.007413102,-0.01051973,-0.004685885,-0.013464216,0.018315485,0.0016505988,-0.0017640977,-0.009157742,-0.037383307,-0.022219848,-0.0047637126,-0.008509178,-0.010999668,-0.02341321,0.029730236,0.0012557846,0.019820157,0.018237658,0.0018143615,-0.036553144,0.00021706671,-0.0062359557,-0.0017657191,-0.007205561,0.015630424,0.006440254,0.0021127015,0.020079583,-0.02372452,0.00637864,0.006437011,-0.013542044,-0.028018022,-0.0020575735,0.0014535971,-0.0087361755,-0.011739032,0.0068229074,-0.00859349,-0.015435855,-0.0018678682,0.0106689,0.012439483,0.0013003735,0.04524392,0.0024434698,0.0024661697,-0.008113553,0.012394084,0.03128679,0.011252609,0.0085156625,-0.027732654,-0.015111572,0.0001005783,0.019599644,-0.023867205,0.011388808,-0.008003296,0.025955586,-0.011427721,0.0009185307,-0.029003842,-0.0028066665,0.01156392,-0.0013222626,0.020040669,0.0006809936,-0.026227983,-0.005934373,0.012465426,0.02521622,-0.0111942375,-0.025138393,0.022116078,0.0056263045,-0.038784206,-0.021156201,0.025319992,0.011285037,-0.01687567,-0.005188523,0.022803558,0.017796634,-0.0151504865,0.015539626,-0.021156201,-0.003208777,-0.021182144,-0.0006368101,-0.020689234,-0.0032801193,0.008742661]', 273503.0]\n",
"Intel: $247760.0\n",
"['390293f2-6297-554c-8a51-93d478191795', \"Intel Corporation is a leading multinational technology company known for its innovations in semiconductor manufacturing. Founded in 1968, Intel is headquartered in Santa Clara, California, and is a key player in the production of microprocessors for a wide range of devices, including personal computers, servers, mobile devices, and networking equipment. The company also provides solutions for data centers, cloud computing, artificial intelligence, and autonomous driving technologies. Intel's core operations include designing and manufacturing advanced integrated circuits and developing software products to complement its hardware offerings. Intel's products are used globally and have a significant impact on the technology industry, driving advancements in computing performance and capabilities.\", {'ceo': 'Patrick P. Gelsinger', 'city': 'Santa Clara', 'rank': 46, 'state': 'CA', 'profit': 19868.0, 'sector': 'Technology', 'ticker': 'INTC', 'company': 'Intel', 'revenue': 79024.0, 'website': 'www.intel.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 40, 'market_cap': 164460.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -6, 'num_of_employees': 121100}, '[-0.0150077185,-0.020359406,-0.000674549,-0.021445071,-0.013922053,0.01890334,-0.03995246,0.006846074,-0.007452769,-0.028074013,0.0032665737,0.03256994,-0.03315748,-0.0100200465,-0.002963226,3.1407442e-05,0.003739157,-0.01693637,0.017408954,-0.0062393793,-0.055892576,0.02062763,0.009611326,0.014432955,-0.020793673,-0.022492418,0.010907738,-0.017102413,0.00490465,-0.012536234,0.0027556724,-0.011335617,-0.024101757,0.012830002,-0.016310517,0.017907081,0.0021745225,-0.038138762,0.01820085,-0.0047992766,0.02720548,0.015288714,0.005540083,0.0072994987,-0.013487788,0.018762842,-0.017115185,0.013423925,0.003614625,0.004735414,0.00048615428,0.03282539,-0.008934382,-0.010773626,-0.016923597,-0.011207892,-0.043145593,0.002596016,0.021560024,-0.014407409,0.0076507432,0.015148216,-0.020359406,0.0155952545,-0.018801158,-0.0069035506,-0.011271754,-0.00043187104,-0.022581827,0.020717038,0.009445284,0.02684785,0.0018296643,0.055483855,0.00076515414,-0.014879993,-0.015033264,0.0011678878,0.018928884,0.009145129,-0.005600753,-0.017294,0.024817018,-0.004729028,0.013423925,0.014752268,-0.03412819,0.019593054,-0.0133472895,0.0093367165,0.01203172,0.003448582,-0.0016428662,0.02406344,-0.019056609,0.03841976,0.009873163,0.017472817,-0.008519275,-0.008027533,0.007031276,0.003860496,-0.021061895,-0.0087491805,-0.041382987,-0.0016747975,0.008276597,-0.013232337,0.0387263,-0.008800271,-0.008353232,-0.0130535215,0.0340771,-0.0070057306,0.011124871,-0.015991203,0.010384064,-0.0038381442,0.019682463,-0.02336095,0.03650388,0.01866066,-0.005552856,-0.018111443,0.01582516,-0.008844974,-0.017064095,-0.023884624,0.013858191,-0.012485145,0.007823172,-0.01977187,-0.021049123,0.012140286,-0.009394193,-0.020665947,-0.0045023155,0.02850828,-0.0038157923,-0.022428555,0.007305885,0.008206348,-0.015633572,-0.017166276,-0.0040680496,0.017600542,0.0035954663,0.036427245,0.0047194483,0.0104159955,0.013794328,0.0015806002,0.02072981,0.00080786226,0.023079954,-0.003930745,-0.015275941,0.027614202,0.029095815,-0.006884392,-0.009157902,-0.008372391,-0.028150648,0.019133244,-0.0038381442,0.02618368,0.007548563,-0.003783861,0.008583138,-0.0031963247,0.01567189,0.016246654,-0.029606717,-0.006268117,0.016348833,-0.008091396,0.0009427721,0.016182791,-0.020244455,-0.008033919,0.02406344,-0.0019094927,0.01820085,0.004824822,0.00016484542,0.0033847194,0.024076212,0.010058365,0.001820085,-0.01623388,0.0025752606,0.006846074,0.009100425,-0.02633695,-0.6555882,-0.0132451095,-0.015097126,-0.01774104,-0.0064852503,0.01936315,0.022517964,0.0026886167,0.002029235,0.00654592,0.013832646,-0.008455412,0.019682463,-0.0075357906,-0.03341293,-0.027307661,-0.0024666942,-0.022517964,-0.015748525,-0.022224195,-0.021955973,0.012849161,-0.0038956206,-0.017600542,-0.017000232,0.0071653873,0.021266256,0.012491531,-0.015735753,0.01982296,0.01744727,0.009528304,0.019950686,0.023846306,0.036784876,-0.00327296,-0.032953117,0.011527205,0.01698746,0.024280572,-0.020499906,-0.01541644,0.031573687,-0.014547908,-0.0027141618,0.015697435,-0.009617712,0.005345302,-0.011987016,-0.03675933,0.0045949165,-0.017294,-0.01567189,-0.009483601,-0.025596142,-0.002243175,0.014215821,-0.011188733,-0.0068269153,0.000328693,-0.00596477,0.0132451095,-0.03583971,-0.027639747,-0.020257227,0.006264924,-0.011444184,-0.015467529,0.013679376,0.0063990355,0.018430755,0.021036351,-0.008136099,0.0032617839,0.0025880332,0.01360274,0.030858424,0.00917706,-0.0011503256,0.010307428,-0.014586225,-0.028303917,0.0125617795,-0.045189198,0.010741695,0.009375034,0.010160545,-0.022990547,-0.008078623,0.0016412697,0.029683352,0.0123701915,0.004029732,-0.060541775,-0.0104159955,-0.00037379598,-0.017383408,-0.017230138,-0.006360718,0.013117384,0.0007962872,-0.012459599,-0.001676394,0.02568555,0.056096934,0.010364905,0.017766584,0.008717249,0.01208281,-0.027307661,0.0031707797,-0.02664349,-0.01820085,0.020167818,-0.010256339,-0.008417095,-0.0011862484,-0.025034152,0.0038988136,-0.009573009,0.017332317,-0.015097126,-0.004735414,0.013526105,-0.009854004,-0.016157245,-0.0007982829,-0.015339804,-0.024025122,-0.02139398,-0.004141492,-0.018136987,0.025034152,-0.004706676,0.020819217,0.037244685,0.0008868923,-0.04135744,-0.0058657825,-0.03325966,-0.034307007,-0.0065235677,0.015505847,0.015786843,0.0026263506,-0.009528304,-0.011520819,-0.015991203,0.005591173,-0.0022288058,-0.004872719,-0.00038197837,0.0047034826,0.02522574,0.018673433,-0.001351493,-0.014215821,-0.046236545,0.001709922,-0.018788386,-0.021125758,0.01673201,-0.0060094735,0.005920066,0.014841676,-0.015965657,-0.020436043,0.009649644,-0.011444184,-0.02305441,0.01915879,0.016182791,-0.0031372518,-0.006312821,-0.023450358,-0.0066097826,0.00020346235,0.015224852,0.0068652327,-0.009879549,0.012881093,0.0029472604,-0.019286515,0.0023980418,0.01739618,0.011342003,0.015454757,0.013909281,0.00179454,-0.008097782,0.004096788,0.008008374,0.013130157,-0.012791685,0.00047138604,0.035916343,0.0021713295,-0.011520819,-0.00015895808,-0.007835945,0.012600097,0.018916111,0.00032569942,-0.0012692699,0.008915223,-0.020142274,-0.0011998191,-0.022007063,0.025008606,0.011233437,0.030219797,0.004735414,-0.013947599,-0.0074080653,-0.0016891666,0.060439594,0.004246865,0.014100869,-0.018673433,-0.020040093,0.011718793,0.0037551227,0.011469728,-0.031292688,0.004591723,-0.003787054,0.017613314,0.023399267,0.01572298,-0.028355008,-0.01461177,0.014037007,0.015071581,0.0060797227,-0.0033879126,0.012248852,0.00021374025,-0.01165493,0.034281462,0.0015710207,-0.005830658,0.028687093,0.023118272,-0.023067182,-0.014177504,0.0026934065,0.048816595,0.005291019,-0.013008818,0.030321978,-0.028814819,0.0073122713,-0.019746326,-0.005868976,0.009400579,-0.018443529,0.024101757,0.014624543,0.03619734,0.018507391,0.009400579,-0.014177504,0.010141386,0.0049333884,-0.011955084,0.019503647,0.012274398,-0.018865021,0.0026423163,-0.0007763301,0.0010010467,0.0026790374,0.011616613,0.0050834655,0.027179936,0.008979086,0.011463342,-0.0056135254,0.0008158451,0.015761297,-0.013117384,-0.024753155,-0.0111951195,0.022249741,0.002621561,0.010103068,-0.023974031,0.005872169,0.0016540422,-0.0035954663,0.011322845,0.027103301,-0.011290913,0.01820085,0.0063351733,-0.0004689912,0.03300421,-0.0028179386,0.006114847,0.0179454,0.01461177,-0.0062872763,0.004438453,0.0003755921,0.04094872,-0.013628285,0.024025122,-0.0063224006,0.006654486,0.010218021,-0.0033336293,-0.007273954,0.0021234325,-0.015582482,0.021968745,0.0029903678,-0.005112204,0.009694347,0.020819217,-0.012108355,0.016859734,-0.014177504,-0.030781789,0.016221108,0.08950987,0.012255239,-0.02705221,0.016808644,-0.02472761,0.0057604094,-0.028201738,-0.015148216,0.017817674,-0.02583882,-0.0006306435,-0.0137432385,0.0018136987,-0.033183023,0.019593054,0.010811944,0.011731565,-0.022939457,-0.007210091,-0.010262725,-0.010703377,-0.017626086,0.028355008,-0.006450126,0.016808644,-0.022007063,0.017268455,0.030602973,0.0022543508,-0.014432955,0.009489987,-0.010460699,-0.019937914,-0.018596798,-0.0048152423,0.03180359,0.009170674,0.029734442,-0.01471395,-0.0037551227,0.0010162141,-0.005967963,-0.0007934932,-0.01203172,-0.0046013026,-0.010665059,0.0006689611,0.01551862,0.0019733554,-0.010863034,0.018839477,0.0010481455,-0.012574553,-0.033131935,-0.020563768,0.009049335,0.024331663,-0.0042085475,-0.014203049,-0.027409842,-0.0011407463,-0.041434076,0.020819217,-0.026464675,-0.0045087016,-0.014854448,-0.0018152953,-0.006063757,-0.023629174,0.019529192,0.0068141427,-0.0142285945,-0.017638858,0.0067758253,0.02886591,-0.00849373,0.017421726,0.006360718,0.00046021008,0.03969701,0.0012093986,-0.02886591,0.00960494,-0.022173105,0.008212734,0.023846306,0.0003454569,-0.01160384,0.0013251496,-0.0015510636,0.013653831,-0.016706465,0.03382165,0.027563112,-0.004633234,0.041689526,0.018213622,-0.0077273785,-0.003978642,-0.03599298,0.0005472229,-0.004291569,-0.01261287,-0.027435387,-0.0007739353,0.002669458,-0.008934382,-0.004764152,0.009247309,0.01309184,0.031726956,-0.01765163,0.010473471,-0.004387363,-0.029249085,0.037985492,0.0063798768,-0.009796527,0.0027317242,-0.0013187634,-0.0021042738,-0.027793018,0.006089302,0.012983273,-0.029811077,0.0011239824,-0.004010573,-0.0036018523,-0.019937914,-0.0033783333,-0.014982173,0.027997378,-0.015850706,-0.018532936,0.0033687537,-0.030781789,-0.0047673453,0.009566622,-0.03144596,-0.037704498,0.0068333014,-0.0035379897,0.02264569,-0.011591068,-0.022684006,-0.026975576,-0.018328575,0.020959716,0.028636005,0.028993635,-0.029811077,0.017562224,-0.00231981,0.009783755,-0.00039934102,-0.014879993,-0.027793018,-0.033183023,0.046491995,0.036171794,-0.002367707,-0.0006486048,0.0020867116,0.004917423,0.00014688405,0.008455412,-0.009317558,-0.0063224006,-0.015429212,0.0038892343,0.0063000484,0.03241667,0.0015223254,0.0055943667,-0.017102413,0.0062872763,0.0067630527,-0.011629385,-0.013475015,-0.02173884,-0.020231681,0.001171081,-0.0088513605,0.02932572,-0.01185929,0.0018440335,0.022403011,0.0047513796,0.033131935,0.0134494705,0.0059871217,-0.017472817,0.011578295,0.027997378,-0.0067630527,-0.012580939,-0.0044065216,-0.034613546,0.016055066,0.011220665,0.008819429,0.006316014,0.013973144,-0.0014688405,-0.009247309,0.039364927,-0.024076212,-0.017115185,0.0014576645,-0.0137432385,0.004812049,-0.026566856,-0.01461177,-0.0033623676,0.0028482734,0.009362262,-0.0069482545,0.016463786,-0.016221108,-0.034920085,0.0191077,-0.0033559813,0.023680264,-0.023795217,0.052035272,0.037270233,0.017830446,-0.018341348,-0.0010537334,0.007401679,0.020998033,0.01804758,0.017715493,-0.020244455,-0.012497917,0.007159001,-0.012459599,0.01059481,-0.013564423,0.0035284103,0.016604284,0.007305885,-0.021406755,-0.028738184,0.0020499905,-0.017779356,0.011801815,0.0023341791,-0.016591512,-0.010626742,-0.0042308993,-0.00030095264,-0.02209647,0.013079067,0.00369126,0.027128845,0.015084353,-0.014688405,3.8167902e-05,0.0039243586,-0.0018695785,0.021342892,-0.018213622,0.0056454567,-0.003662522,0.009764596,-0.0037966333,0.0016747975,0.003713612,0.02173884,-0.010403222,-0.021342892,0.0022080506,-0.010965214,0.025417328,-0.01592734,-0.0070185033,-0.0039690626,-0.010537334,-0.017804902,0.009905094,0.012887479,0.01860957,-0.011910381,0.007867876,-0.027639747,-0.018277485,-0.0015478706,0.01028827,0.0061563575,-0.01693637,0.0050802724,0.0070759794,0.001808909,0.02325877,0.024152847,-0.011897609,0.0067822114,-0.016361605,0.022569055,0.0070759794,0.01551862,-0.017357863,0.017255682,-0.010562879,-0.006363911,0.025085242,-0.01597843,0.0022926684,0.00039036034,-0.0037008396,-7.868076e-05,-0.0074336105,-0.018481845,-0.0019845313,0.016451014,0.0005967165,8.396938e-05,-0.011246209,0.007695447,-0.034868997,-0.0064405464,-0.0021234325,-0.012529848,0.0040744357,-0.0012381368,0.009464442,-0.012721436,-0.007612426,-0.022339148,-0.0016716043,0.009017403,0.0010960425,0.022326376,-0.008940768,0.0015798019,-0.005926452,-0.009694347,-0.032288946,0.0059136795,-0.003732771,0.020461587,0.028610459,0.009170674,-0.009898708,0.0009778965,-0.010192476,-0.04278796,-0.032518853,0.009579395,-0.0041830023,0.02315659,0.013781556,0.010051978,-0.023820762,-0.015148216,-0.065855145,-0.023629174,0.029606717,-0.003033475,0.0036273974,0.014982173,0.006890778,0.034613546,-0.011884836,0.020308318,-0.021457843,0.010275497,0.026209224,-0.015914569,0.010914124,-0.014215821,-0.009841232,-0.0134494705,0.008282984,0.0020946944,-0.018034806,0.023935715,0.01657874,-0.0068652327,0.0040712426,0.014151959,0.0028786082,0.011207892,0.03297866,-0.019401468,-0.004952547,0.0018536128,-0.024484932,-0.017779356,0.007376134,0.00014897954,0.013551651,-0.0051345555,0.013653831,0.008583138,0.0027492864,-0.018826704,-0.011565522,0.005785954,0.010620356,0.010422382,0.009119584,-0.024983061,-0.0007559739,-0.0008629438,-0.012740595,0.004869526,0.00059591816,-0.03200795,-0.014343547,-0.0018999133,0.010218021,-0.024242256,-0.017932627,-0.016221108,0.010933283,-0.005064307,-0.0006869224,-0.01039045,0.0051569077,-0.010428768,-0.010358519,0.0068269153,-0.036171794,-0.009528304,-0.0058178855,-0.028942544,0.0008477764,0.028176192,-0.028099557,-0.04115308,-0.015991203,0.010914124,-0.0021968745,0.0061850958,0.19863833,0.0021585568,0.003062213,0.025647232,-0.028942544,0.019797416,0.019912368,-0.0001793143,-0.008838588,0.0075421766,-0.018303031,0.017613314,-0.022760643,-0.0019605828,0.012957728,-0.030705154,0.0041830023,-0.021419527,-0.021202393,0.028457189,0.011342003,-0.016144473,-0.012331874,-0.022786187,0.02937681,-0.005214384,-0.022032607,0.018635117,0.02922354,0.012331874,-0.011271754,0.0006118838,0.011188733,0.0041670366,0.0061914823,-0.005942418,0.0066289413,0.016846962,0.0065778513,0.0037487366,-0.0012413299,-0.014688405,0.013334517,-0.02705221,0.019146018,0.043196686,-0.0038030196,-0.00717816,-0.031982407,-0.0064213877,-0.033055298,0.0021154496,0.007612426,0.00400738,-0.011227051,0.026873395,-0.0074463827,0.026068727,0.01673201,-0.015786843,-0.0047449935,0.019235425,-0.0031627968,0.0142285945,-0.005875362,0.022236967,-0.02411453,0.01693637,0.014739496,-0.011156802,0.0156208,0.01608061,-0.03246776,0.009885935,0.0011183943,-0.008761953,0.016221108,0.012727822,0.0021122566,0.023974031,0.0034294233,0.011265368,-0.02320768,0.022249741,-0.021049123,-0.0028722219,0.035456534,-0.02139398,-0.013219565,-0.019018292,-0.0023661104,0.013142929,0.003544376,-0.0043139206,0.011923153,0.013002432,-0.0056167184,0.02269678,0.0016843769,0.0037902473,-0.009100425,0.059877604,-0.00033028953,0.008621455,-0.0051888386,0.022415783,0.016668146,-0.015275941,-0.014688405,-0.008308528,-0.016182791,-0.012861934,0.019146018,-0.0046236543,0.00045302554,0.005833851,0.015914569,-0.04863778,0.019056609,-0.007523018,0.031829137,-0.004665165,0.00015656323,0.022185879,-0.016042292,-0.011942312,0.0075932667,0.041996066,-0.007720992,-0.014650088,0.007427224,-0.030858424,-0.01688528,-0.004527861,-0.015250396,0.018085897,0.022326376,0.01648933,-0.024152847,-0.004614075,-0.02315659,-0.0070759794,0.018673433,-0.0038668823,-0.0062968554,-0.010160545,0.0009451669,0.027435387,0.0065171816,-0.023373723,-0.0111951195,-0.0148161305,0.015684662,0.0024507286,0.026771216,-0.0043522385,-0.027026666,-0.0041861953,-0.02467652,0.0076507432,-0.043349955,-0.007063207,0.03246776,0.004776925,-0.030270888,-0.002672651,-0.15950331,0.00458853,-0.0057380577,-0.0012413299,0.031829137,0.015608028,0.010582038,-0.018647889,0.02062763,0.0015510636,0.013947599,-0.004518281,-0.037091415,-0.039262746,0.026362494,0.0037710883,-0.010843875,0.045316923,0.016144473,-0.0063224006,0.046849627,-0.033131935,0.008723635,-0.014931084,0.024446616,0.008295756,-0.0007847121,-0.022109242,-0.0026263506,-0.028636005,0.016106155,-0.043171138,0.04393749,-0.0030398613,0.017511133,-0.04013128,-0.016016748,-0.00044903412,-0.016246654,0.0231055,0.010530948,0.016195564,0.01602952,0.027435387,0.018532936,0.010575652,-0.011597454,-0.021521706,0.019350378,-0.005300598,0.042506967,-0.033361837,-0.0034741273,0.01608061,0.0037487366,0.009873163,-0.007887035,0.002607192,0.0076507432,-0.0132451095,-0.015659118,-0.003346402,0.00770822,-0.022786187,0.0184563,-0.013513333,0.004575758,0.020078411,-0.016042292,0.012593711,-0.0026024021,-0.019784642,-0.0012213729,-0.02118962,-0.015735753,0.0072164773,-0.007574108,-0.0044065216,-0.015224852,-0.00034066723,-0.00056837744,0.014394637,0.0025401362,-0.0021266257,-0.035533167,-0.01774104,0.007867876,0.02537901,0.015850706,-0.0123701915,0.025455644,-0.046900716,-0.011987016,-0.01350056,0.014330775,0.029197995,-0.0017290808,0.005099431,0.0073122713,0.00337514,-0.019899596,0.0031532175,-0.008512889,0.0070121167,0.011144029,0.024548795,-0.0151098985,0.008397936,0.02305441,-0.009464442,0.001049742,0.0054187444,0.02452325,0.023948487,-0.034588,0.00152951,-0.0151098985,-0.009138742,0.00012024136,-0.0004450427,0.036938146,0.0027812177,-0.02209647,0.0100200465,-0.015952885,-0.016476559,-0.09109366,-0.024510479,-0.0042819893,0.005252701,-0.012772527,0.020218909,0.0027381103,0.024868108,-0.01920988,0.028201738,0.01160384,-0.025915455,-0.00443526,-0.027179936,0.020895854,-0.012938569,-0.027767472,-0.00042428737,-0.035609804,0.034588,-0.020589313,-0.024229482,0.010230794,-0.026311405,-0.014420182,0.0012660767,-0.041663982,-0.012153058,0.034971178,0.026720125,-0.014113641,-0.006354332,0.02285005,-0.024778701,0.02633695,0.0075294045,-0.005993508,0.00849373,0.019631373,0.002629544,0.0028211318,0.002867432,-0.0023597241,-0.010422382,0.0012165832,0.0056199115,0.0022527543,0.012357419,0.016502105,-0.011565522,-0.013130157,-0.0064373533,-0.031573687,-0.023437586,-0.019146018,0.015914569,0.027026666,0.012989659,-0.03423037,-0.007848717,0.012344646,0.0131557025,-0.03882848,-0.004045698,7.329235e-05,-0.022965003,-0.016668146,0.0027365137,0.01541644,-0.037704498,0.018775614,0.0005815491,-0.016182791,0.015646344,-0.02163666,0.002088308,-0.0077720825,-0.0002911737,0.008813043,0.005198418,-0.023629174,-0.020895854,0.0018073125,-0.016336061,-0.004569371,0.022620143,-0.013666603,-0.00076555327,0.01719182,-0.034715727,0.028789274,0.026617944,0.0076890606,0.010946055,-0.009483601,0.0044959295,-0.013283428,-0.018686205,-0.0010728922,0.029683352,-0.008551206,-0.0076890606,-0.07326321,0.0054506757,-0.017306773,-0.018852249,0.0027876038,0.011456956,0.008793884,-0.022607371,-0.0021170462,0.014943856,-0.029683352,0.016042292,0.0029983507,0.02746093,-0.024931971,-0.009854004,-0.0059551904,0.008927996,0.008212734,0.005239929,0.017600542,-0.005003637,0.00986039,0.0148161305,-0.0056901607,3.0359697e-05,-0.020653175,0.0028243249,-0.0065906234,-0.02330986,-0.0072420225,0.007356975,-0.00859591,0.03346402,-0.006430967,0.0012525058,0.0036305906,0.012734208,0.008647,0.033540655,-0.024561567,-0.035686437,0.015263169,-0.011035463,-0.017127957,0.001955793,0.0075038592,-0.025519507,0.010556493,0.022492418,0.011923153,0.0046204613,-0.016476559,-0.012983273,-0.0047481866,0.002209647,0.027741928,0.010952441,-0.019503647,-0.028610459,0.0335662,0.0073378165,0.0022671234,0.028840365,0.016246654,0.003946711,-0.017549451,0.024344435,0.016476559,0.0006653688,0.009062108,0.013334517,0.011578295,-0.0179454,0.011080166,-0.00046300408,0.0048407875,-0.0036944533,-0.012057265,0.005677388,-0.0016348833,0.014777813,-0.002096291,0.009094039,0.04171507,6.9999434e-05,-0.0004661972,-0.0046236543,0.0033048913,0.008966314,-0.0076826746,0.016463786,-0.022019835,-0.01820085,0.010460699,-0.005096238,-0.016195564,0.011112098,-0.00012792484,-0.0062457654,0.025672778,0.0064852503,0.013334517,-0.032340035,-0.042762417,0.0039882213,-0.020218909,-0.0020867116,-0.02290114,0.01466286,0.011444184,-0.0005635877,0.009368648,0.008404322,-0.039569285,0.010486244,-0.0039754487,0.0077784685,-0.014841676,0.024817018,0.0068716193,-0.0024666942,0.02139398,-0.019899596,0.0073122713,0.0029807882,-0.0039754487,-0.020423269,-0.0040329252,0.019388694,-0.00717816,-0.0066225547,0.015250396,-0.0067822114,-0.021342892,0.0073186574,-0.0046428135,-0.007574108,0.016093383,0.03665715,0.033540655,-0.01840521,0.01597843,0.020308318,0.017140731,0.016923597,-0.002198471,-0.049685128,-0.007567722,-0.00024148058,0.009956184,-0.003713612,-0.01592734,-0.00242678,0.018328575,-0.009822072,0.0096368715,-0.02578773,-0.0059615765,0.018737296,-0.01028827,0.012944955,-0.004470384,-0.029351266,-0.0027955866,0.031982407,-0.0014009865,-0.0101158405,-0.05865144,0.024203938,-0.001591776,-0.04140853,-0.012351033,0.0032585908,0.025800504,-0.00543471,-0.0051824525,0.03887957,0.0037774746,-0.011610227,0.032442216,-0.010467085,-0.023322633,0.011776269,0.0042053545,-0.012478759,-0.015748525,-0.007210091]', 247760.0]\n",
"Alphabet: $248683.0\n",
"['73b37e59-1e24-5e0b-afbf-e84263089fbe', 'Alphabet Inc. is a multinational conglomerate that was created through a restructuring of Google in 2015. As the parent company of Google, Alphabet oversees various businesses in sectors such as technology, life sciences, investment capital, and research. Google remains the primary revenue generator for Alphabet, with its search engine, advertising platform, and various software products being key drivers of the company\\'s success. Additionally, Alphabet\\'s \"Other Bets\" segment includes projects such as Waymo (self-driving cars), Verily (life sciences), and Loon (internet balloons). Through its diverse ventures, Alphabet aims to innovate and create cutting-edge solutions that impact the world on a grand scale.', {'ceo': 'Sundar Pichai', 'city': 'Mountain View', 'rank': 8, 'state': 'CA', 'profit': 76033.0, 'sector': 'Technology', 'ticker': 'GOOGL', 'company': 'Alphabet', 'revenue': 257637.0, 'website': 'https://www.abc.xyz', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 9, 'market_cap': 1309359.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 1, 'num_of_employees': 156500}, '[0.00944344,-0.0048257797,-0.0025592241,-0.024089877,-0.011797796,0.016233351,-0.010646633,0.02392078,-0.0014129389,-0.010080807,-0.00013098952,0.014750497,-0.022750106,0.014347265,0.013397718,-0.00039672854,0.007596376,-0.016376434,0.015452902,-0.011257985,-0.0180544,0.004539615,-0.0066533326,-0.0022925707,-0.016246358,-0.007050061,0.013514785,-0.0030031048,0.0281222,0.0021381066,0.010906783,-0.008370321,-0.015895156,0.009814153,-0.008838591,0.00086581125,0.006126529,-0.025715813,0.023621608,-0.016948763,0.020994093,0.031270012,-0.016051246,-0.005648504,-0.0113685485,0.011914863,0.003466497,-0.008955659,0.020616876,0.03212851,-0.009014193,0.02807017,-0.017989364,-0.017351996,-0.012909937,0.011609187,-0.019628307,0.020473793,0.013683883,-7.016933e-05,-0.007336226,0.01001577,-0.023322435,0.008884118,-0.024011832,-0.032882944,-0.011706743,-0.011791293,0.013813958,0.026691375,0.029422948,0.007154121,0.011537646,0.019277105,0.014464332,-0.02241191,-0.01758613,-0.0039965524,0.022841157,0.016974779,0.016324403,0.0046566823,0.012519712,0.00063492823,0.015413879,-0.004279465,-0.024805289,0.0031396835,-0.024519125,-0.0028096184,0.027836034,0.021696499,0.013931025,0.019537255,-0.016584553,0.0014706596,0.0057102893,0.018548684,-0.005843616,-0.040635407,-0.015192752,0.017469063,-0.01987545,-0.0016552035,-0.031868357,0.019576278,0.020083569,-0.0028421371,0.019706352,-0.01291644,-0.0120644495,-0.00184869,0.03197242,-0.010327949,0.004793261,-0.02272409,0.0033656887,0.024454087,0.010464528,-0.0010462902,0.038684282,0.023933787,0.011121406,-0.022958225,0.023530554,0.008363818,-0.018288534,-0.033689406,0.008571938,-0.018587707,0.019576278,-0.015621999,0.013267643,0.010497047,-0.024558147,0.005394858,0.0044453107,0.021904618,-0.0031234242,-0.050208922,0.0052192565,0.009163779,0.0049428474,0.0005873696,-0.0027868554,0.025533708,0.018548684,0.012109976,0.014984632,0.011101895,0.013527793,-0.01951124,-0.007843519,0.020473793,0.025117468,0.00041745923,0.009918213,0.022763113,-0.00064021256,-0.007876037,-0.01655854,0.017560115,-0.008090661,0.020525824,0.011661218,0.02324439,-0.01196039,-0.011758774,-0.018535677,-0.026795436,-0.033793468,-0.01348877,-0.031270012,-0.022554994,-0.0073232185,0.0037266468,0.0074337823,0.0033982075,-0.030489564,-0.0030665165,0.029084755,-0.011966893,0.021423342,0.015700044,0.010861256,-0.009007689,0.015595984,0.002564102,0.0010950683,-0.01883485,0.0043022283,0.0008341055,-0.0017657671,-0.0054273764,-0.6514152,-0.02029169,0.014594407,-0.018951917,0.029969264,0.009892198,0.00087312795,-0.009033704,-0.01296847,0.026444234,0.0046794456,0.0026291395,-0.027107615,0.022177776,-0.0093458835,-0.02671739,0.02277612,-0.036056772,0.009690582,0.012539223,0.0039575296,0.006484235,0.010061296,-0.025715813,-0.0066273175,0.033689406,0.039776914,-0.014347265,-0.029136784,0.02869453,-0.013287154,0.016584553,0.023530554,0.016740642,0.038892403,0.031816326,-0.021007102,0.0029136785,0.0075053233,0.013931025,-0.04206623,-0.024558147,0.0043152357,-0.012454675,-0.016337411,-0.0010731182,0.029188814,0.016610568,-0.0045526223,-0.010256408,0.024545139,-0.010132837,-0.022528978,-0.015101699,-0.0037136392,-0.004133131,-0.009833665,-0.0128579065,-0.0018064156,-0.004724972,0.0023738674,0.0063476567,-0.014425309,-0.03465196,-0.025520701,0.026418218,-0.007037054,0.0032534993,0.014698467,0.010321446,0.0009316617,0.015270797,-0.00687446,-0.00037254274,0.0114335865,0.008897125,0.03949075,-0.015791096,0.008929644,0.008975171,-0.0069720163,-0.009332876,0.02433702,-0.017781243,0.013735913,-0.0010454772,-0.008422351,-0.0115311425,0.00075849943,-0.017612146,0.015361849,-0.0019121014,-0.006126529,-0.045422167,0.0025592241,-0.0070955874,-0.026639346,0.0038534699,0.006620814,-0.002998227,-0.006724874,-0.0093784025,0.018483648,0.013826965,0.033429258,0.0049298396,0.03465196,0.012799373,0.020343719,-0.019628307,0.0043445025,-0.015283804,-0.010666144,0.019316128,-0.010893775,-0.027523855,-0.010340957,-0.023647621,0.005824105,-0.0121294875,0.02282815,-0.02598897,0.006107018,0.007941075,0.008461374,-0.011147422,-0.004539615,-0.018964924,-0.024831304,-0.009970243,-0.00085280376,-0.04053135,0.010028777,0.0107637,0.023426495,0.025884911,0.004559126,-0.016974779,0.006539517,-0.03296099,-0.015713051,-0.019810412,0.009560508,0.01831455,-0.018535677,-0.018548684,-0.0035055194,0.0012088838,-0.024545139,0.0029966012,0.004926588,0.0029185563,-0.017729213,0.048648022,0.0038144472,-0.0017007297,-0.017260943,-0.013787943,-0.019537255,-0.016350418,0.008032127,0.00062517263,-0.0039152554,-0.024922356,-0.009729605,-0.02619709,-0.016168313,0.023517547,-0.013813958,-0.009417425,0.005024144,-0.015700044,-0.009645056,0.022385895,0.0043152357,0.0366291,-0.0026990548,0.0017413781,0.015569969,-0.014854557,0.006383427,0.0012535971,0.004767246,0.0011934375,0.021228228,-0.014776512,0.022229806,0.03532835,-0.0052387677,-0.00033534944,-0.0016064254,0.028044155,-0.0016828444,-0.015700044,-0.007817503,-0.009742612,-0.017521093,-0.005258279,0.017781243,0.0010649884,0.012864411,0.01992748,0.0068874676,0.0011357167,0.01841861,-0.011992908,-0.004354258,-0.02070793,0.017924326,0.01216851,0.02121522,-0.010536069,-0.024519125,-0.0047022086,-0.0007076889,0.02329642,0.016259367,0.016155306,0.00666634,0.011570165,0.020916048,0.025806867,-0.0030177385,-0.040635407,-0.015166737,0.014516362,0.015452902,0.018353572,-0.00827927,-0.024102885,-0.007609383,0.03145212,-0.0011430334,0.009384906,-0.0056029777,0.019264096,0.017547108,-0.01951124,0.024219953,-0.009554003,-0.0035347862,0.029657084,0.03309106,-0.008383329,0.017560115,0.018743798,0.03189437,-0.00548591,-0.04607254,0.003746158,-0.021176198,0.009040208,0.0004971301,-0.015010647,-0.003980293,-0.019381164,0.021670483,0.005677771,0.019836426,0.016792674,0.0022145256,-0.013774935,0.003053509,0.01737801,-0.005560703,-0.0067118662,0.0281222,-0.0012292081,-0.00210071,-0.0016056125,-0.0013950536,-0.004416044,0.027263705,0.012799373,0.005827357,-0.0009918213,-0.022138752,-0.00078410795,0.0016234977,0.008675998,-0.0010284049,-0.023725668,0.0013226995,0.04157195,0.011323023,0.008799569,-0.0021348547,-0.014854557,-0.0015243156,-0.0030144865,-0.014984632,2.5278234e-06,-0.008383329,0.023114314,0.0062891226,-0.0055769626,0.01716989,0.0059119053,0.0025104461,0.0043022283,-0.005134708,0.021904618,0.019823419,0.01681869,0.07086482,-0.0063964347,-0.003619335,0.004559126,-0.0039933003,-0.024792282,0.0122270435,-0.011459601,-0.016870718,0.0073232185,0.017820265,0.014204183,-0.019823419,-0.011427082,0.0128449,-0.008767051,0.01144009,0.0058826385,-0.01992748,0.028824605,0.09271741,0.020681914,-0.03954278,0.025299573,-0.030957833,0.016415456,-0.020226652,-0.04141586,-0.0030421275,-0.009092238,-0.00835081,0.0060127135,0.016506508,-0.017703198,0.0034892599,0.01789831,-0.0073297224,-0.026587315,-0.00066622754,0.0018291787,0.029110769,-0.014334257,0.024350027,0.009950732,0.02713363,-0.018379588,0.009586522,0.027731976,-0.015791096,-0.026470248,-0.02059086,-0.015674029,-0.021553416,0.025468672,0.010093815,0.01117994,-0.019823419,0.010887272,0.004412792,0.011973397,0.0256898,0.009365395,-0.007980097,-0.01270832,-0.011901856,-0.00671837,-0.001464156,0.032336626,-0.0007353298,-0.011277497,0.00553794,-0.02666536,-0.011791293,-0.009931221,0.011778285,-0.00048127724,0.015088691,0.0051379595,-0.013371702,-0.048049677,-0.00703055,-0.030359488,0.0067508887,-0.029683098,0.019264096,-0.020382741,0.013371702,-0.011784788,-0.021800559,0.019108007,0.032856926,-0.027159646,-0.030957833,-0.00179666,0.02433702,-0.017456055,0.0016478867,-0.00026299525,-0.009300358,0.038372103,-0.0014422057,-0.010178363,-0.024037847,-0.016181322,0.0021982663,0.0037364024,0.009163779,-7.286228e-05,0.0063444045,-0.0019316127,-0.016597562,-0.015062677,0.010542573,0.0127928695,0.016623575,0.008129683,0.010952309,0.0049591064,0.0020942064,-0.020733943,-0.016155306,0.023179352,-0.0021673734,-0.019290112,-0.010614114,0.0018031637,0.01883485,0.0026356434,-0.009053215,0.0056289923,0.008318292,0.003876233,0.0075638574,0.0040908563,-0.039828945,-0.0013625349,0.006243597,-0.00037924972,0.009684078,-0.010392987,-0.0009527989,-0.011713248,-0.007902052,0.021657476,-0.024727244,0.017872294,0.014256212,-0.005290798,-0.024532132,-0.011745766,-0.009775131,0.025585739,-0.02459717,-0.01359283,-0.015153729,-0.023855742,-0.025702806,-0.008741035,-0.027627915,-0.019264096,0.007973593,-0.010477535,0.019095,-0.01317659,-0.01029543,-0.027367765,-0.008136187,0.022737097,-0.009573515,0.03787782,-0.0046469267,0.009625545,-0.009105245,-0.015218766,-0.008012616,-0.0180544,0.02267206,-0.017391019,0.045136,0.02786205,0.018171467,-0.0032632549,0.023387473,0.012610764,0.012148999,-0.009222313,-0.011244978,0.0040323227,-0.0024291493,0.010893775,-0.0078109996,0.0075248345,0.018847857,-0.025559723,-0.0034990157,0.01107588,0.0030161124,-0.0072907,-0.019654322,-0.019081993,-0.03621286,0.009514981,-0.026223106,0.012363622,-0.025468672,-0.0112384735,0.040115107,0.01638944,0.018587707,-0.0005719232,0.0050891815,0.0058143493,-0.0072451737,0.035354365,0.021696499,-0.03772173,0.0059899506,-0.038476165,-0.02355657,-0.011349037,0.0038924923,0.0076353983,0.009677575,-0.021176198,-0.0005455017,0.013631852,-0.0005686713,0.0020828247,0.01102385,-0.02848641,0.0014153778,-0.018457633,-0.03967285,-0.0317643,-0.01144009,0.013579823,-0.01055558,0.018665751,-0.02666536,-0.037695713,-0.00498187,0.0048875655,0.03480805,-0.01588215,0.02734175,0.019589284,0.008513404,-0.01774222,-0.0015804104,0.000743866,0.009723101,0.00023210245,0.0090272,-0.024779273,-0.011966893,-0.008773554,0.025130477,-0.00032193545,-0.010848249,-0.0045070965,0.0135538075,0.028876634,-0.0041201236,-0.031816326,0.0049428474,0.0276019,-0.0025608502,0.021410333,-0.017768236,-0.02230785,-0.01711786,0.021462364,-0.008636976,0.0075638574,0.012240051,0.005905402,-0.0013308291,-0.022867173,-0.01452937,0.02947498,-0.008851599,0.000641432,-0.03140009,0.019433195,-0.005671267,0.021800559,-0.003308781,0.010562085,-0.025143484,0.017286958,-0.0070695723,-0.013118057,0.0032908956,-0.0057493118,-0.001129213,-0.016428463,-0.013183094,0.011557157,-0.026600324,-0.002438905,0.02692551,0.0064679757,-0.003076272,0.0014064352,0.0067638964,-0.022893187,0.0039900485,-0.0006389931,0.020890033,-0.011199451,-0.020655898,0.002053558,-0.0054208725,-0.0059834467,0.01317659,-0.008565434,-0.024193937,-0.009358891,-0.0021397325,0.0021901366,-0.0040095598,0.00333317,-0.011342534,0.034105647,0.0012722954,-0.016350418,0.030619638,0.00070728245,-0.0127928695,0.0048387875,-0.004510348,0.021059131,-0.0016194328,-0.0135538075,-0.018821843,0.0056322445,0.0018031637,-0.004308732,-0.026288142,0.012864411,-0.0012438415,-0.0046046525,0.024714237,-0.025299573,0.015504932,-0.010471032,-0.009293853,-0.017755227,-0.033143092,-0.016415456,-0.0010324698,0.020499809,0.015635006,0.023829727,-0.01447734,-0.017560115,-0.00708258,-0.003947774,-0.01716989,0.005713541,0.0032648807,0.004637171,0.044225477,0.004429051,0.006139537,0.004289221,-0.0028079925,-0.042612545,-0.050208922,-0.009671071,0.009742612,0.0291628,0.015387864,-0.022841157,-0.03756564,-0.00011981121,-0.034886096,-0.009033704,0.0054176208,-0.0053168125,0.016779667,0.019160038,-0.01690974,0.01338471,-0.0020600618,0.03751361,-0.009274342,0.008623968,0.043184876,-0.0107702045,-0.012974974,-0.014464332,-0.03553647,-0.023829727,0.018873872,-0.043314952,0.004978618,0.018301543,0.008331299,-0.011127911,-0.011244978,0.027575886,0.00028291298,0.020668907,0.021332288,-0.023907771,0.004337999,-0.0035835642,0.01034746,-0.02319236,0.026587315,-0.014243205,-0.0014373279,0.008786562,-0.0045266077,0.0078890445,-0.011797796,0.02702957,0.011427082,0.0072972034,0.018223498,0.017365003,0.0123246,-0.021007102,-0.010484039,0.006155796,-0.0038372104,-0.014360272,0.0071931435,-0.023829727,-0.0291628,-0.021423342,0.0060127135,-0.01473749,0.0029120524,0.004152642,-0.029136784,-0.0022568,0.0215274,-0.005326568,-0.010789716,0.018080415,-0.010119829,0.01992748,-0.024141908,0.00446157,0.008038631,-0.019016955,0.005794838,0.019719359,-0.020096576,-0.02267206,0.009859679,0.036551055,-0.048543964,0.00016767472,0.20291689,-0.00866299,0.0270816,0.010093815,-0.02515649,0.011140917,0.019095,0.008077653,0.008623968,-0.018223498,-0.031035878,0.008617464,-0.008702013,0.0074012633,0.005489162,-0.03532835,-0.012955463,-0.00827927,-0.013774935,0.009716597,0.00049875607,-0.011036858,-0.016233351,-0.012779862,0.0040095598,-0.0009162153,-0.023049278,0.013449748,0.042170294,0.016376434,-0.00642245,0.00087068905,-0.014347265,0.0142822275,0.012591253,-0.013410726,-0.0048550465,0.013241628,0.0052192565,0.017651169,0.008689005,-0.0033282922,-0.0015852882,-0.020499809,0.023803713,0.007745962,-0.01935515,-0.015947185,0.003794936,-0.0068614525,-0.039048493,0.017534101,0.019537255,0.02749784,-0.00534608,0.023478525,0.004464822,0.024037847,-0.0064777313,0.005216005,0.008903629,0.01001577,0.0075378423,0.0185747,0.018093422,-0.005359087,-0.0043575102,-0.01711786,0.006188315,-0.007368745,0.016246358,-0.00012001445,-0.019706352,0.031165954,-0.014191175,-0.02251597,0.04341901,0.03595271,0.012825388,0.013475763,0.0061980705,0.025481679,-0.019290112,-0.0063086343,-0.013449748,-0.010932798,0.030463548,0.008578442,0.0061232774,-0.0100743035,0.0031624467,-0.005824105,-0.011966893,0.0040453305,0.019446202,0.017312974,-0.015687037,0.00959953,0.00034551154,-0.018600715,-0.0025592241,0.03512023,0.012669298,0.020304697,-0.025195513,-0.013918017,-0.0002245825,0.009488966,-0.0128579065,-0.026262129,-0.015101699,-0.009775131,0.031426102,-0.009872687,0.023309428,0.010906783,0.0056029777,-0.0317643,0.015192752,0.00574606,-0.016038239,-0.019758381,-0.012545727,0.025221528,-0.014932602,-0.011121406,0.0049851215,0.018561693,-0.0075053233,-0.043392997,-0.014204183,-0.011570165,-0.01081573,-0.016831696,-0.010126334,-0.015010647,-0.013248132,0.0025364612,-0.031348057,0.01359283,-0.013566815,0.019433195,0.011297008,0.013826965,0.0017023557,-0.020109585,-0.012682306,0.011264489,0.0006003771,-0.008136187,-0.044901866,0.0040258192,-0.00024368725,-0.0006999657,0.013105049,-0.005229012,-0.021553416,-0.041493904,0.0039054998,0.0127928695,-0.0071996474,-0.010796219,0.02345251,-0.0020958323,-0.030385504,-0.026392203,-0.16368629,0.019368157,-0.005648504,0.002821,0.017338987,-0.005541192,0.009840168,-0.008728027,-0.0037266468,0.0007902052,0.0078565255,-0.013670875,-0.035562485,-0.03636895,0.025182506,0.01029543,0.005056663,0.02734175,0.03257076,-0.0100417845,0.034573916,-0.014620422,-0.0032274842,0.039204583,0.00118043,-0.0025689797,-0.013183094,-0.004897321,-0.0019560019,-0.024363033,-0.00933938,-0.013000989,0.02324439,0.009710093,-0.001718615,-0.021085147,0.00068899064,-0.021007102,-0.015452902,0.005720045,0.023179352,0.028434379,-0.0059834467,0.024558147,-0.0075768647,0.023699652,0.026262129,-0.00687446,0.015830118,0.0036811205,0.036499023,-0.049064264,0.010477535,0.0015348842,0.011901856,0.0027770998,-0.0032713844,-0.010197874,0.015856134,-0.03025543,-0.0038404623,-0.0015617121,0.017286958,-0.031478133,-0.00013729003,-0.017443048,-0.009397914,-0.009898702,-0.024974387,0.01586914,-0.005216005,0.01338471,-0.0016519516,-0.00970359,-0.009775131,0.0067508887,-0.013209109,-0.0027055584,-0.011895352,0.02251597,-0.007381752,0.022607023,-0.0012503453,-0.0142822275,-0.0034860082,0.022073716,0.0048127724,-0.0021982663,-0.02895468,-0.00760288,0.01940718,-0.019784397,-6.8797446e-05,-0.0012495323,0.0037559136,0.022919202,0.024623184,-0.003515275,0.005830609,0.002024291,0.010067799,-0.009209305,-0.026067017,-0.0031364318,0.05098937,0.016038239,0.015804105,0.011212459,0.021397326,-0.015830118,-0.020811988,0.008110172,0.01873079,0.007485812,-0.0066078063,0.023127323,-0.013865988,-0.018067408,0.024922356,0.010919791,0.060614917,-0.0033396739,0.0024470347,0.011986405,-0.02666536,-0.007876037,-0.09334177,-0.025585739,-0.0045428667,0.0024990647,-0.00718664,0.015153729,-0.005167227,0.017560115,-0.0067573925,0.04154593,0.005642,-0.021306273,-0.02853844,-0.009202802,0.022554994,0.006305382,0.006744385,-0.015348841,-0.0230883,0.020109585,-0.0063964347,-0.022932211,0.023738675,-0.017104853,-0.025975963,0.0028632744,-0.03475602,0.007160625,0.024154915,0.008825584,-0.010698663,-0.019810412,0.0053525832,-0.033351213,0.024376042,0.0121294875,-0.024948372,0.010158852,0.012896929,-0.011095392,0.014334257,0.0071671284,0.014867565,-0.03140009,-0.008623968,-0.022450933,0.0011284,0.009163779,0.016493501,-0.013787943,-0.009723101,-0.0077394582,-0.026899496,-0.019381164,0.004282717,0.009241824,-0.011472609,0.007258181,-0.013865988,0.015778089,0.023699652,0.00017173955,-0.035406396,-0.015322827,-0.007609383,-0.0053493315,-0.021618454,-0.0094759585,0.0270816,-0.011713248,-0.007882541,0.008968666,-0.011823811,0.03501617,-0.021319281,0.01758613,-0.0030096087,-0.01416516,0.033507302,-0.0014446446,0.0017869043,-0.024675215,-0.0024258974,-0.03548444,-0.006237093,-0.0058891424,-0.019498233,0.007693932,0.00089670403,-0.040037062,0.01722192,0.009872687,0.0049135806,-0.004282717,0.0061720554,-0.007381752,-0.0074402858,-0.024584161,0.011661218,0.024480103,0.003459993,0.008636976,-0.06935595,0.009560508,-0.015752073,0.00073654926,-0.006650081,-0.02728972,0.020746952,-0.0009820657,-0.016844703,0.025364611,-0.047035094,0.026405212,-0.013189598,-0.012077457,-0.0066793477,-0.017625153,0.02697754,-0.0062501,0.005615985,0.034677975,0.013996063,-0.0180544,0.022372888,0.0005849307,0.0006093198,0.020499809,-0.024727244,0.020538831,-0.006188315,-0.025351604,0.0005800529,-0.00739476,-0.02973513,0.012005916,0.0026323914,-0.0028307557,-0.005290798,0.024701228,-0.00013942407,0.034677975,-0.02111116,-0.027315736,0.025494685,-0.03160821,-0.02822626,0.0032860178,-0.0020356725,-0.012389637,0.0035217786,0.0069720163,0.01390501,0.02126725,-0.019042969,-0.012383133,0.01348877,-0.032154523,0.0270816,-0.012877418,0.005326568,-0.0017804006,0.023725668,0.0397509,0.0075508496,-0.0038534699,-0.013527793,-0.0028892893,-0.03465196,-0.0041689016,0.021566423,-0.025325589,0.001925109,0.005307057,0.019316128,0.0034469857,0.0004585141,0.0018308046,0.007700436,-0.013657868,-0.038007893,0.031217983,0.011570165,-0.010249904,-0.020161614,0.013683883,0.029266858,-0.0018535678,-0.017013801,-0.003616083,-0.0038859886,0.00666634,-0.026496263,0.015439894,-0.030827759,-0.021670483,0.013358695,-0.003102287,0.009866184,0.008448367,0.0028112445,0.0121945245,0.01348877,-0.0140871145,-0.007024046,-0.015621999,-0.030437533,0.028174229,-0.016311396,-0.01940718,0.011797796,0.016181322,0.012018924,0.016168313,-0.00786303,0.015700044,-0.017755227,-0.017963348,0.0077654733,-0.006744385,-0.02043477,0.022086723,0.020356726,0.011615691,0.052680347,0.0007593124,0.01270832,0.0036583573,0.009645056,-0.03210249,0.004146138,-0.009742612,-0.037695713,0.0013381458,-0.0021104657,-0.010035281,-0.02728972,-0.021995671,0.014334257,0.025338596,0.014750497,0.045474194,0.02111116,-0.010523062,0.016597562,-0.01196039,0.019290112,0.030021293,0.01359283,-0.040947586,-0.004048582,-0.0053720945,0.015049669,0.008897125,-0.00913126,-0.012402644,0.010854753,-0.00487781,0.019186052,-0.017443048,0.011270992,0.035302337,0.0033217885,0.015387864,0.007180136,-0.0025234537,-0.00317708,0.017026808,-0.0026291395,-0.009040208,-0.02687348,0.015218766,0.010249904,-0.053642903,-0.030827759,-0.0006068808,-0.017690191,-0.0040420783,0.0047152163,0.03709737,0.0072126547,0.0051021893,0.00089345215,0.0059021497,-0.012870914,-0.016038239,-0.018392595,-0.008305284,-0.009645056,-0.0035803125]', 248683.0]\n"
]
}
],
"source": [
"# Get the nearest neighbors to a vector, filtering on metadata\n",
"vec_query = get_embeddings(\"Smartphones, design\")\n",
"\n",
"sql = f\"\"\"\n",
"SELECT f.*, company_sales.total_sales\n",
"FROM fortune_100 f\n",
" JOIN (\n",
" SELECT company_id, sum(amount) as total_sales from sales group by company_id\n",
" ) AS company_sales\n",
" ON (f.id::text = company_sales.company_id)\n",
"WHERE (f.metadata ->> 'num_of_employees')::int > 100000\n",
" and f.metadata ->> 'state' = 'CA'\n",
"ORDER BY f.embedding <-> '{vec_query}' LIMIT 3;\n",
"\"\"\"\n",
"\n",
"try:\n",
" # Execute the SQL command\n",
" cur.execute(sql)\n",
"\n",
" # Fetch all the rows in a list of lists.\n",
" results = cur.fetchall()\n",
"\n",
" # Print results\n",
" for row in results:\n",
" print(f\"{row.get('metadata').get('company')}: ${row.get('total_sales')}\")\n",
" print(row) # Adjust print formatting as needed\n",
"\n",
"except Exception as e:\n",
" print(\"An error occurred:\", e)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Apple\n",
"['33a3f638-20dc-5797-a9e2-660ae1bad782', \"Apple Inc. is a multinational technology company renowned for its cutting-edge products and innovation. They design, manufacture, and market a range of consumer electronics, software, and online services. Apple is best known for their iconic products such as the iPhone, iPad, Mac computers, Apple Watch, and AirPods. Their software offerings include the iOS, macOS, watchOS, and tvOS operating systems, as well as various productivity and creativity apps. Apple's services like the App Store, iCloud, Apple Music, and Apple Pay provide seamless integration and enhance the user experience across all devices. With a focus on user-friendly design and technological advancements, Apple continues to be a leader in the tech industry.\", {'ceo': 'Timothy D. Cook', 'city': 'Cupertino', 'rank': 3, 'state': 'CA', 'profit': 94680.0, 'sector': 'Technology', 'ticker': 'AAPL', 'company': 'Apple', 'revenue': 365817.0, 'website': 'www.apple.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 3, 'market_cap': 2443962.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 154000}, '[-0.004569143,-0.011583377,0.0030612284,-0.02679872,0.0005691161,0.0010952647,-0.021247001,0.014060897,0.020572493,-0.020377923,-0.0035541381,0.009267999,-0.0112915225,-0.004682642,-0.007834669,0.0042578313,0.007484444,-0.00898263,-0.0045756283,-0.017991202,-0.06615367,0.023075955,0.002106216,0.005519291,-0.001074997,0.0046145422,0.0025196765,-0.020767063,0.019249419,-0.014852147,0.0015881744,-0.012452454,-0.01598065,0.013386388,-0.008794546,0.00396922,-0.01007222,-0.032168843,0.0022099863,-0.020987574,0.014527864,0.018704625,-0.021415628,0.009987907,-0.019742329,0.023802347,0.0050296243,-0.0038297784,0.00622947,0.010052763,0.0030466358,0.001271188,-0.0144370645,-0.03273958,-0.00059384265,-0.0060608434,-0.03761679,0.017887432,0.012718366,0.008690775,-0.02205122,0.02321864,-0.034659334,0.00092663773,-0.017640978,-0.00019386024,-0.032532036,-0.002252143,-0.012368141,0.016784871,0.048227318,0.013671758,0.022012308,0.03860261,-0.016408702,0.0038070786,-0.025164336,0.007912497,0.019962842,0.02600747,0.0036157519,-0.023179725,0.026279869,0.0033952396,0.0168627,0.011401779,-0.039744083,0.017290752,-0.0092031425,0.015863908,-0.0070304484,0.005470649,-0.007471473,0.028459048,-0.022206876,0.025735073,0.0048058694,0.025553474,-0.009851707,-0.0153709985,0.018224686,0.012037373,-0.020559521,-0.009170714,-0.025449704,0.011434207,0.008651862,-0.011401779,0.042571828,0.0049907104,-0.004475101,-0.004530229,0.030975481,-0.010617015,0.014800261,-0.025761016,-0.014229524,-0.0074909297,0.004303231,-0.026643064,0.042935025,0.04041859,0.021584254,-0.021895565,0.0013409088,-0.0020462237,-0.025021652,-0.028433105,0.014748376,-0.018951079,0.029496752,-0.011226666,0.016123334,0.012452454,0.0011220181,-0.006213256,-0.011401779,0.047293384,0.0013538802,-0.017044296,0.017939318,0.009339341,-0.015850937,0.004209189,0.0021905294,0.025929643,0.023996918,0.020377923,0.00868429,0.02978212,0.02114323,-0.011259095,-0.011213695,0.005580905,0.012283827,0.0051787943,0.0015208857,-0.0060349004,-0.0035671094,-0.003518467,-0.010266789,0.013237218,-0.021363743,0.02251819,0.008749146,0.027032204,0.009987907,0.016162248,-0.012329227,-0.00050304347,-0.0020818948,-0.02372452,-0.031157078,-0.0013271269,0.010415959,-0.0020316308,0.012828623,0.02253116,-0.0088594025,-0.0058176313,0.023192696,-0.0020640593,0.0026137184,0.026552266,-0.014034954,0.009721994,0.0009898728,0.009417169,0.036475316,-0.018289542,-0.0075752432,0.022453332,0.004899911,-0.016707044,-0.65001816,-0.02461954,0.0042708027,-0.020987574,0.01627899,0.035800807,0.019677473,-0.0030109647,0.013788499,0.010461359,-0.0075363293,0.008612948,0.03235044,0.0045723855,-0.008664833,-0.023958003,-7.283693e-06,-0.031079251,-0.027525114,0.0023591565,-0.03582675,0.01160932,-0.0080227535,-0.034503676,-0.02639661,0.010934812,0.023011098,0.007614157,-0.03891392,0.036916338,-0.00863889,0.0136977,0.012108715,0.02341321,0.04485478,0.0025893971,-0.034814987,0.019080792,0.013580958,0.02163614,0.005353907,-0.024165545,-0.0036352088,-0.021804767,0.012108715,-0.012698909,0.01136935,-0.007691985,-0.0003970436,-0.03595646,0.01787446,-0.01116181,-0.01896405,0.005684675,0.0124719115,0.0007097737,0.008405407,0.0047020987,0.029626464,0.00069193816,-0.017796634,0.03017126,-0.037071995,0.00016001322,-0.021091346,0.014527864,0.0013717157,-0.021519398,0.0023834775,0.00080503174,-0.0011163431,0.025281077,-0.014281409,-0.011764975,-0.0061321855,0.030638227,0.022959214,0.00086826686,-0.017498292,0.014748376,0.0033919967,-0.021610197,0.020767063,-0.037071995,0.016590301,0.014826204,0.016694073,-0.016097391,0.0074001304,-0.0044524013,0.044076502,0.010039791,0.0021045946,-0.03561921,-0.021662083,-0.0057138605,-0.02799208,-0.008009782,-0.016720014,0.004682642,0.01380147,0.0011041824,-0.0037843788,0.016940527,0.014761347,0.013126963,0.021895565,0.021091346,0.029730236,-0.023075955,-0.008191381,-0.03997757,-0.014540835,-0.012342199,0.007880069,-0.01186226,0.0043810587,-0.02342618,0.011810374,-0.0130361635,0.030586341,-0.020377923,0.013172362,-0.004004891,-0.019132677,0.008016268,-0.005165823,-0.034348022,-0.02360778,0.011375836,-0.0069331634,-0.020157412,0.00082408334,0.011654719,-0.0015411534,0.0182636,0.00563279,-0.017394522,0.01275728,-0.03473716,-0.0072379895,0.0029915078,0.007899526,0.013905241,-0.012205999,-0.019820157,-0.013814442,-0.0048512686,0.005292293,-0.008398921,-0.023867205,-0.006569967,-0.0029428652,0.0454774,0.02293327,0.0040859617,-0.0470599,-0.030197203,-0.019534789,-0.0013749585,-0.006158128,0.020507636,-0.016240077,-0.020767063,0.013386388,-0.021104317,-0.008697261,0.023504008,-0.0008528634,-0.016849728,0.01617522,0.016694073,-0.0046307566,0.025527531,-0.0060284147,0.01965153,-0.009702537,-0.00019152946,0.013490159,-0.020533578,0.017303724,-0.00972848,-0.0064629535,0.002346185,0.003965977,0.004643728,0.024282286,0.012523796,-0.016629215,0.010707814,-0.012193029,0.01796526,0.015941735,-0.01906782,-0.015656367,0.02035198,-0.0063202693,0.0060738144,0.025838843,0.024113659,0.00045156362,0.010415959,0.0070434194,-0.009164228,0.01777069,-0.012193029,0.001492511,0.0054155206,0.0005184469,0.027966138,0.026215011,0.0013473945,-0.010104648,-0.008158952,0.007769813,0.038265355,0.009948992,0.021311857,-0.005723589,0.009994392,0.0026607392,0.016538417,-0.00011512035,-0.027758596,-0.013477188,0.0036773656,0.02123403,0.031857528,-0.0057171034,-0.03551544,-0.007263932,0.013113991,0.0047993837,0.009021544,0.005000439,0.011285037,0.0001437991,-0.02312784,0.030716054,-0.0064532254,-0.020390894,0.027058147,0.030145317,-0.013762557,0.01359393,0.008846431,0.03144245,0.020793006,-0.012095744,0.0010612151,-0.018315485,0.0028066665,-0.016110362,0.0074390443,-0.009144771,-0.031338677,0.036164004,0.00029307045,0.01766692,0.021195116,0.007257446,-0.02251819,0.004698856,-0.00070572016,-0.00844432,0.01797823,0.016382761,-0.02570913,0.011777947,-0.012387598,0.007581729,-0.0005573608,0.039873797,0.020468723,0.020572493,0.01796526,0.0013555016,-4.957978e-05,-0.010448388,0.019210506,-0.012530282,-0.032532036,-0.011187752,0.005126909,0.014566777,0.006307298,-0.019612616,0.0026347968,-0.008243266,0.026876548,-0.004111904,0.013055621,-0.017783662,0.044543467,0.029444866,-0.017290752,0.05089941,0.012270857,0.002663982,-0.010007363,-0.009021544,-0.0028018022,-0.010921841,0.0024937338,0.0353079,-0.008548091,0.010143562,-0.015954707,0.0028374733,-0.008697261,-0.01815983,-0.015604482,0.004786412,-0.01886028,0.017926347,-0.0021743153,7.144353e-06,-0.015773108,0.020027697,0.010986697,-0.01965153,-0.014644605,-0.016914584,0.021713968,0.09007276,0.0035314383,-0.014852147,0.019703414,-0.031805646,0.002694789,-0.016110362,-0.023140812,0.010707814,0.0039984053,-0.022310648,0.0046339994,0.0183544,-0.022946242,0.027836425,0.012491369,0.0077503556,-0.0013173984,-0.02908167,-0.00859349,-0.019521818,-0.012089258,0.048227318,-0.0034892815,0.021117287,-0.009994392,0.031157078,0.022038251,-0.007821698,-0.029470809,-0.011304494,-0.013944155,-0.02281653,-0.0065959096,-0.0027920739,0.034192365,-0.0013546909,0.026150154,-0.015254257,0.008619433,0.02669495,0.015487741,-0.012342199,-0.018445197,-0.011927117,0.013373418,-0.02957458,0.014151696,-0.010104648,-0.0005046649,-0.0007081523,-0.014346265,-4.012998e-05,-0.0064888964,-0.0041832463,0.024152573,0.005425249,-0.02352995,0.005619819,-0.039147403,0.0051787943,-0.018834338,-0.0075298436,-0.001965153,0.0046339994,-0.013321532,0.010124105,-0.012497854,-0.0012979414,0.0004248103,0.03779839,-0.036760684,-0.005892216,0.009858193,0.0410931,0.008463778,-0.008976145,0.011933602,0.017809605,0.05074375,0.024788167,-0.0070823333,-0.0004734527,-0.02044278,-0.0075363293,0.014138725,-0.0136977,0.019794215,0.00093069125,0.008210837,0.02144157,-0.02819962,0.026111241,0.024087718,-0.016149277,0.020468723,0.004342145,-0.00024645482,-0.016434645,-0.023672635,-0.009462568,-0.0049517965,-0.011239638,-0.020429809,-0.0013936048,0.020105526,-0.0033336258,0.004958282,-0.016512474,0.013879298,0.01795229,-0.013918213,0.015708253,0.003576838,-0.017550178,0.016019564,-0.00858052,-0.0051398803,-0.0054965913,0.0048123547,-0.0026137184,-0.024969766,0.019223478,0.011077496,-0.027499171,0.024788167,-0.009715509,-0.01195306,-0.020494664,-0.0063851257,0.009358798,0.014411122,-0.014255466,-0.015760139,-0.0052793217,-0.012063315,0.0046015712,0.020909747,-0.007075848,-0.034114536,-0.0084897205,0.013373418,0.0060576005,-0.003228234,-0.010487301,-0.030716054,0.013003735,0.022064192,-0.00868429,0.006605638,-0.028018022,-0.0056717037,-0.01856194,0.011135867,0.008509178,0.0010604043,-0.014112782,-0.0183544,0.038732324,0.047241498,-0.002843959,0.0041281185,0.02442497,0.004338902,0.0019797457,0.0008593491,-0.0016911342,-0.016642187,-0.007432559,0.014060897,0.012737824,0.017044296,0.016486531,-0.0031244636,-0.0142165525,0.001027976,0.0064629535,-0.017939318,-0.010714299,-0.0013660408,-0.01965153,-0.0066153663,-0.021999337,0.009397712,-0.012043859,-0.013016706,0.032168843,0.0183544,0.010707814,-0.011187752,0.035178185,-0.00271911,0.009741452,0.007867098,0.022686815,-0.043739248,0.008301636,-0.036968224,-0.010928326,0.0004787223,0.012776737,-0.0040924475,-0.007990325,-0.022505218,-0.0040665045,0.033595685,-0.029367039,-0.010480816,0.009968449,-0.031546216,0.00016862698,-0.015396941,-0.021000545,-0.009799822,0.021000545,0.026720893,-0.010513244,0.0045432,-0.021713968,-0.015889851,0.015734196,-0.0018613825,0.03432208,-0.01707024,0.021675054,0.016551388,0.0056263045,-0.016745957,-0.026215011,-0.019923927,0.0048804544,0.0069720773,0.023737492,0.0012136279,-0.023737492,0.012290313,-0.016032536,-0.0048869397,-0.0027823453,-0.0007823319,0.014268437,0.008184895,-0.03305089,-0.018393314,-0.003596295,0.029055728,-0.004173518,0.0039919196,-0.0052112225,-0.02382829,-0.015046716,0.0057527744,-0.017628007,0.0027434314,0.016486531,-0.021623168,0.007951411,-0.025462676,0.0005881677,0.0077049565,-0.022336591,0.0044426727,-0.033024948,0.019132677,0.0012606488,-0.0029898863,0.0053863353,-0.0028553088,0.013386388,0.030119374,-0.012997249,-0.018912164,-0.0032233698,0.00025902077,-0.0015257499,-0.02341321,-0.01489106,-0.0036773656,0.0003518467,-0.012562711,0.01607145,0.009494997,0.0006262709,-0.012692424,0.013269647,-0.022946242,-0.004047048,-0.00411839,0.020805975,0.0020429809,-0.024009889,0.001749505,0.011375836,0.0059603155,0.028926015,-0.005120423,0.00065383496,0.01886028,-0.019495875,-0.0031390563,0.006300812,0.0025666973,0.007724413,0.016745957,-0.024982737,-0.012912936,0.024243373,-0.012919421,-0.019340219,-0.017939318,-0.004303231,0.004287017,-0.018717596,0.0018970537,-0.014346265,0.0077049565,0.0023526708,-0.011739032,-0.019314276,-0.0006680223,-0.014527864,-0.0035703522,0.014307352,-0.012413541,-0.004997196,-0.009112343,0.019923927,-0.015267228,-0.036241833,-0.03377728,-0.023581836,0.01429438,0.0021856653,0.015799051,-0.014852147,0.016564358,-0.024736281,0.0012403813,-0.007523358,0.0013498266,-0.01627899,0.009053973,0.04028888,0.0057171034,0.0021905294,0.012186543,-0.005820874,-0.013944155,-0.04158601,-0.004364845,0.004248103,0.03663097,0.019145649,0.018484112,-0.035281956,0.0045561716,-0.061899077,-0.030897653,0.016460588,0.0028358519,5.786419e-05,0.030430686,0.005785203,0.01081807,0.0088594025,0.012718366,-0.034425847,-0.018600853,0.015409913,-0.004342145,0.00853512,-0.031779703,-0.015487741,-0.013827413,0.017887432,0.001379012,0.0018808395,0.020196324,-0.008723204,-0.018328456,0.008561063,0.020909747,-0.0034665817,0.014878089,0.01707024,-0.013840385,-0.0005257433,0.013023192,-0.013529073,-0.027628884,0.024762224,0.007659557,0.01329559,0.0092290845,0.024801139,-0.0004819651,-0.011492578,-0.0054187635,-3.3188305e-06,-0.020274153,-0.02054655,0.019508846,-0.002216472,-0.033102777,0.0037097938,0.015539626,-0.002788831,0.008619433,-0.0024775197,-0.029159497,-0.010338131,-0.0055257767,0.02809585,-0.02918544,-0.012017916,-0.0064694392,0.00090312725,-0.022803558,0.0044102445,-0.0054220064,0.026526323,0.009443112,-0.0069915345,0.022946242,-0.016304933,0.004228646,0.020364951,-0.02014444,0.0041086613,0.010798613,-0.029548638,-0.01886028,0.0020381166,-0.001843547,-0.017628007,0.011693633,0.21771042,0.0007644964,0.014800261,0.030638227,-0.013814442,0.021908537,0.016732985,0.009209628,0.0033174118,0.012783223,-0.005425249,0.019820157,-0.0037324936,-0.0004848026,0.0058857305,-0.046100024,-0.015526654,-0.0035087385,-0.0168627,0.042909082,0.0025050836,-0.019106735,0.0012014674,-0.0021726938,0.019729357,0.013159391,-0.033517856,0.0036384517,0.026954375,0.021973394,-0.013516102,0.0042708027,-0.0115379775,0.0137755275,-0.021610197,-0.019340219,-0.0009436626,0.017420465,0.0137495855,0.0071990755,-0.009112343,0.00051236665,-0.013334503,-0.028744416,0.014865118,0.009650652,-0.005201494,-0.016564358,0.008256237,-0.009572824,-0.046982072,0.010759699,0.014346265,0.0041281185,-0.0062748697,0.0066348235,-0.015824994,0.028069908,0.0011390429,-0.0057138605,-0.012426512,0.026850605,-0.014112782,0.031520277,-0.019716386,1.4858733e-05,-0.023283496,0.0017576121,-0.006012201,0.003106628,-0.0077179275,0.007225018,-0.019405074,0.006300812,-0.0035054956,-0.028303392,0.022998126,0.032402325,0.0047474983,0.033517856,-0.0072769034,0.014735404,-0.021454541,0.0075687575,-0.006197042,-0.0012452455,0.025812902,-0.013029678,-0.0116612045,-0.010422445,-0.0059570726,-0.009598767,-0.001141475,-0.018535998,0.0030320429,0.020105526,-0.019703414,-0.00017987554,0.004335659,0.0056814323,0.003366054,0.03203913,0.029237326,0.0056749466,-0.010402988,-0.0022586288,0.015293171,0.034348022,0.014748376,-0.008347036,-0.020170381,-0.012731338,0.021921508,-0.024191488,0.014346265,0.025825871,-0.017550178,-0.037149824,0.0011171538,-0.005084752,0.015228314,-0.005519291,-0.0051723085,0.0060349004,-0.0054868627,-0.020235239,-0.00036725012,0.026344724,0.003651423,-0.03175376,0.005402549,-0.014463007,-0.009851707,-0.011589862,0.005863031,0.007549301,0.021272942,-0.02877036,-0.014748376,-0.0040859617,-0.00719259,0.01847114,0.01166769,0.008619433,0.014333294,0.006693194,-0.006375397,0.010831041,0.012575682,-0.016953498,-0.019521818,-0.0021483726,-0.008671318,-0.023309438,0.0059408587,0.004215675,-0.020793006,0.0054155206,0.002197015,0.001918132,-0.023996918,-0.010552159,0.0273954,0.018574912,-0.020870833,-0.0028747658,-0.16312715,0.02770671,0.0056684613,0.014320322,0.038576666,-0.0055873906,-0.0028763872,0.00049655786,0.014929974,0.004773441,0.026539294,-0.032687694,-0.032583922,-0.020170381,0.034607448,0.0084897205,0.003173106,0.03582675,0.029211383,0.010331646,0.035852693,-0.009987907,-0.0034309106,-0.002918544,0.014333294,0.021298885,-0.005898702,-0.009021544,0.009060458,-0.01568231,0.006693194,-0.02242739,0.04350576,0.01359393,0.006725623,-0.0303788,-0.017926347,-0.018977022,0.0014090082,0.025034621,0.02481411,0.022193907,0.002393206,0.022712758,0.013023192,0.011628777,0.01136935,-0.010143562,0.014852147,-0.0055679334,0.022297677,-0.048875883,-0.010286246,0.009644167,0.0022294433,-0.00093150197,-0.012238428,-0.0019359676,0.0012476776,-0.028173678,-0.0034698246,-0.00053668785,0.007672528,-0.021882595,-0.0030061004,-0.007464987,0.0004848026,-0.0012047101,-0.026331753,0.013451246,0.00083259575,-0.00090393797,0.011576891,-0.02263493,-0.0006664009,-0.012205999,-0.02173991,0.00073125743,-0.009572824,0.00334984,0.008061667,-0.0013725264,-0.010999668,0.010351103,-0.023880176,-0.013477188,-0.0123486845,0.009559853,-0.030508514,-0.0077892696,0.029367039,-0.031779703,-0.023478065,-0.0023948275,0.013263161,0.036890395,0.024736281,-0.028900072,-0.00878806,-0.005820874,0.019119706,0.0044621294,-0.005619819,0.015474769,0.03938089,0.010766185,-0.0019570459,-0.0004248103,0.033024948,-0.0034665817,-0.017420465,0.016123334,0.036086176,0.026189068,-0.021675054,0.009300427,-0.0031552704,-0.0048966683,-0.0029396224,-0.0007827373,0.053856865,0.01111641,-0.0034179394,0.00503611,-0.029003842,-0.010454874,-0.10122808,-0.04010728,0.017355608,0.002576426,-0.020403866,0.027213803,0.005726832,0.02175288,-0.0069591063,0.023205668,0.020287124,-0.027836425,-0.023192696,-0.013347475,0.0053603924,-0.005120423,-0.024541713,-0.009812794,-0.05489457,0.009585796,-0.023542922,-0.027084088,-0.0029039513,-0.0055614477,-0.006197042,0.0046729133,-0.03203913,0.008814003,0.01886028,0.022090135,0.0039562485,0.003631966,0.0096701095,-0.028926015,0.020027697,0.0038589637,-0.016655158,-0.006326755,0.03642343,-0.023841262,-0.011693633,-0.005405792,0.0077892696,-0.051859286,0.0030109647,-0.011531492,0.008872374,0.007225018,0.007153676,-0.009138286,-0.024386058,0.0072379895,-0.029367039,-0.025151365,-0.005467406,-0.005901945,-0.009825765,-0.0060284147,-0.011570406,-0.012731338,-0.006514839,-0.0114406925,-0.025086507,0.0022634931,-0.0031990486,-0.0049096397,-0.0043843016,0.018795423,0.021454541,-0.036189947,0.0020348737,0.0014049547,-0.015059687,0.032506093,-0.01796526,-0.0019992027,-0.018691653,-0.0056392755,0.010915355,-0.012783223,-0.0018565183,-0.03346597,0.004157304,-0.027836425,0.009352312,0.0048772115,-0.015422883,0.002556969,0.005087995,-0.023555893,0.018107945,0.023050012,0.020416837,0.0183544,-0.0010085191,-0.02570913,-0.0077957553,-0.009566339,0.018886223,0.009897107,0.006154885,0.0061808275,-0.07627128,0.019586673,-0.017913375,0.0042189173,0.010085191,-0.0023737492,0.012452454,-0.017615035,0.009864679,-0.0019635316,-0.034685273,0.0074260733,-0.006553753,0.006086786,-0.019781243,-0.010941298,0.008969659,0.024411999,0.0043875445,0.0062229843,0.006339726,-0.008775089,0.008807518,0.0060608434,-0.009352312,0.016434645,-0.02541079,0.0034179394,-0.017498292,-0.025423761,0.008314608,0.0023948275,-0.006177585,0.029704293,-0.00049898995,-0.008969659,0.010655928,0.010688357,0.00396922,0.01339936,0.0056360327,-0.037149824,0.013334503,-0.030793883,-0.019443989,-0.01956073,0.003777893,-0.01718698,0.014333294,-0.005859788,0.014424093,0.013516102,-0.020559521,-0.015708253,-0.006719137,-0.028407162,0.026448494,-0.026059356,0.0037941074,-0.012848079,0.012024402,0.017485322,0.008029239,-0.0029963718,0.01854897,0.0053409357,-0.02809585,-0.019469932,0.026876548,0.015409913,0.011434207,-0.005577662,0.015409913,-0.010526216,0.0135031305,0.00047547946,-0.0019359676,-0.006472682,0.0025958829,0.012108715,0.0017997689,0.00055573945,-0.02284247,0.021960422,0.024165545,-0.0033790255,-0.046203796,-0.009845222,-0.0129388785,-0.0008479992,-0.013107506,0.0059797727,-0.014488949,-0.01389227,0.0101630185,-0.007413102,-0.01051973,-0.004685885,-0.013464216,0.018315485,0.0016505988,-0.0017640977,-0.009157742,-0.037383307,-0.022219848,-0.0047637126,-0.008509178,-0.010999668,-0.02341321,0.029730236,0.0012557846,0.019820157,0.018237658,0.0018143615,-0.036553144,0.00021706671,-0.0062359557,-0.0017657191,-0.007205561,0.015630424,0.006440254,0.0021127015,0.020079583,-0.02372452,0.00637864,0.006437011,-0.013542044,-0.028018022,-0.0020575735,0.0014535971,-0.0087361755,-0.011739032,0.0068229074,-0.00859349,-0.015435855,-0.0018678682,0.0106689,0.012439483,0.0013003735,0.04524392,0.0024434698,0.0024661697,-0.008113553,0.012394084,0.03128679,0.011252609,0.0085156625,-0.027732654,-0.015111572,0.0001005783,0.019599644,-0.023867205,0.011388808,-0.008003296,0.025955586,-0.011427721,0.0009185307,-0.029003842,-0.0028066665,0.01156392,-0.0013222626,0.020040669,0.0006809936,-0.026227983,-0.005934373,0.012465426,0.02521622,-0.0111942375,-0.025138393,0.022116078,0.0056263045,-0.038784206,-0.021156201,0.025319992,0.011285037,-0.01687567,-0.005188523,0.022803558,0.017796634,-0.0151504865,0.015539626,-0.021156201,-0.003208777,-0.021182144,-0.0006368101,-0.020689234,-0.0032801193,0.008742661]']\n",
"Microsoft\n",
"['ed0e594f-e80c-59ca-9a76-d973e6d7a586', \"Microsoft is a global technology company known for developing, manufacturing, licensing, supporting, and selling a wide range of computer software, consumer electronics, and personal computers. Founded in 1975 by Bill Gates and Paul Allen, Microsoft is best known for its operating system, Windows, as well as its suite of productivity software such as Microsoft Office. The company also offers cloud services through Microsoft Azure, gaming through Xbox, and hardware such as tablets and laptops under the Surface brand. Microsoft's mission is to empower every person and organization on the planet to achieve more through its innovative technology solutions.\", {'ceo': 'Satya Nadella', 'city': 'Redmond', 'rank': 14, 'state': 'WA', 'profit': 61271.0, 'sector': 'Technology', 'ticker': 'MSFT', 'company': 'Microsoft', 'revenue': 168088.0, 'website': 'www.microsoft.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 15, 'market_cap': 1941033.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 1, 'num_of_employees': 181000}, '[-0.0023070835,-0.021463012,-0.025281196,-0.022832992,-0.009564486,0.008980976,-0.035112068,0.0050771693,-0.0011139011,-0.040744204,0.008257932,0.008993662,-0.009837214,0.006818185,-0.019598318,0.019750537,0.009342499,-0.016287534,0.0024133204,-0.02651164,-0.051805522,-0.011118398,0.0033329825,0.01624948,-0.012329816,-0.00045229937,0.013471465,-0.020498952,0.03409727,-0.01675688,-0.0043890085,-0.02795773,-0.011365755,0.0063805524,-0.0061109965,0.019167028,-0.0069830897,0.009805501,0.003466175,-0.0045031733,0.022071892,0.02242707,-0.0020058148,0.02501481,-0.03409727,0.011327701,0.0063266414,-0.01394081,0.013547575,0.008498947,0.008828756,0.029403819,-0.022642717,-0.02681608,-0.011961951,-0.016059205,-0.037116297,0.0144228395,0.013928125,-0.0060444004,-0.015526434,0.02912475,-0.0143721,-0.00062156474,-0.020042293,0.009659624,-0.039323486,0.002208775,0.0018535949,0.022198742,0.020714598,0.010693451,0.020841448,0.03498522,0.0031474645,0.0039450335,-0.020245252,0.003979917,0.009450321,0.008295987,0.011752648,-0.021970412,0.01376322,-0.018989438,0.0062600453,0.015272735,-0.01655392,0.024114177,-0.013369985,0.010484149,0.0068752673,0.0231628,0.0015356772,0.01383933,-0.01655392,0.021957727,0.014435525,0.020879501,0.011397468,-0.019065548,0.011803388,0.005647994,-0.03216915,-0.007978862,-0.038334057,0.0149429245,0.016439755,-0.012507405,0.059213556,-0.008581399,-0.006079284,0.011048631,0.018380558,0.0057304464,0.009983092,0.003938691,-0.002132665,-0.008327699,0.005724104,-0.012304446,0.022211427,0.031839337,0.003039642,0.0062790727,-0.006000003,0.007934464,-0.018951382,-0.0287442,0.03364061,-5.311842e-05,0.02666386,-0.019978868,-0.01254546,-0.008930237,-0.01663003,0.014435525,-0.014181824,0.041150123,-0.010255818,-0.025433416,0.021336162,0.009336157,-0.0042875283,-0.0050517996,-0.008004232,0.021995781,0.011435524,0.023911215,0.017086688,0.020410158,0.035720948,-0.012114171,0.015805503,-0.0036532786,0.018723054,-0.014917554,-0.0144228395,0.010052859,-0.00044040717,-0.018088803,-0.0015975166,0.029835109,-0.0016268507,0.015399585,-0.0016205081,0.023809737,0.019217769,0.012202965,-0.012355185,-0.014917554,-0.0003960097,-0.0089619495,-0.02846513,0.0037357311,0.010103599,0.008295987,-0.0061902776,0.043027505,-0.0080296025,0.0020042292,0.009919667,0.000768235,0.016541233,0.018177599,-0.009196621,-0.0015832459,0.01650318,-0.001963003,0.035289656,-0.00411311,0.010103599,0.02686682,0.011695566,-0.009488377,-0.65637237,-0.006447149,-0.0016458782,-0.019991552,-0.0088351,0.00840381,0.022997897,0.0036723062,0.0011321359,0.01668077,-0.015589859,0.0055370005,0.017936584,-0.015983094,-0.018443983,-0.021843562,-0.004192391,-0.029403819,-0.008359412,-0.017479923,-0.018469352,0.013598315,-0.011023261,-0.020169143,-0.032727286,0.020321362,0.012019033,0.011403811,0.00025052865,0.033463016,-0.006716705,0.023568721,0.01312897,0.0147907045,0.039704036,-0.00023051015,-0.037649065,0.013040175,0.0084418645,0.01170825,-0.0118668135,-0.019306563,0.008112054,-0.015843559,0.010078229,-0.008866812,0.01736576,-0.020613117,-0.00418922,0.0008895353,0.01173362,-0.02445667,-0.00314905,-0.018380558,-0.0069767474,0.0020343561,0.00054069795,-0.02359409,0.008930237,-0.01465117,-0.020245252,0.011061316,-0.034782257,-0.020308677,-0.024291767,0.017987324,-0.014435525,-0.021437641,0.01325582,0.00035517986,-0.005127909,0.01330656,-0.012989435,-0.008479919,-0.010350957,0.041226234,0.031864706,-0.019154344,-0.015310789,0.015665969,-0.0066849925,-0.036456678,0.01465117,-0.035949275,0.02788162,-0.009501061,0.0060380576,-0.020778023,0.0050898544,0.0035708263,0.024723057,-0.0055496856,-0.014245249,-0.032803398,0.0010044931,0.010408038,-0.021729397,-0.016706139,0.000844345,0.022528552,0.0017093031,-0.0037008473,0.024038065,0.021386903,0.01323045,0.009126854,-0.008365754,0.015513749,0.02993659,-0.022579292,0.024241026,-0.026029611,-0.007090912,-0.011657511,-0.0020850962,-0.016693454,-0.0025100436,-0.021665972,-0.011162796,-0.003618395,0.0033234688,-0.0058224127,-0.011245248,-0.007021145,-0.007661737,-0.0022943986,-0.010116284,-0.010928123,-0.01571671,0.007243132,0.0021754766,-0.019446097,0.022972526,0.0032140608,0.009076114,0.024304451,0.014587744,-0.02539536,0.018456668,-0.016097259,-0.031179719,-0.011587744,0.0047219894,0.009139539,0.0028255826,-0.02902327,-0.015120515,-0.012374213,-0.013496835,-0.009101484,-0.010433408,-0.022325592,-0.0015650113,0.037167035,0.01366174,-0.009875269,-0.02986048,-0.02821143,-0.01333193,-0.016845673,-0.012577173,-0.0029365765,-0.004335097,-0.012234678,0.0060444004,-0.018608889,-0.018786479,0.030443989,-0.00052404887,-0.011841443,0.033209316,0.023264281,0.00683087,0.0074016945,0.001958246,0.020904873,-0.010376326,-0.014486264,0.009843556,-0.01632559,0.008974634,0.020257937,0.0011408568,0.0023245255,0.020422842,0.0070782276,0.011327701,0.024241026,-0.015310789,0.0008594084,0.016579289,0.01414377,-0.008169137,-0.016655399,-0.0016649056,0.005264273,-0.0053847805,-0.01447358,0.0131670255,0.01449895,0.0156406,0.010014804,-0.0040940824,0.006082455,0.016033834,-0.01749261,-0.010674424,0.0024434472,7.080804e-05,0.024621576,0.015450324,-0.013978865,-0.015551805,-0.015729394,0.021057092,0.035619467,-0.005070827,0.012304446,-0.02783088,0.005660679,0.019052863,0.004347782,0.0011107299,-0.015932353,-0.002904864,0.031940818,0.006970405,0.021970412,0.016046518,-0.031179719,-0.0061744214,0.015361529,0.001051269,0.008993662,0.008695564,0.0044048647,0.014803389,-0.023391131,0.041353084,-0.002178648,-0.014486264,0.021906987,0.025281196,-0.023822421,-0.0070528574,-0.016668083,0.02628331,0.020131087,-0.021234682,0.0092219915,-0.031052869,0.0089619495,-0.002216703,-0.010687108,-0.006142709,-0.02887105,0.015678653,-0.011460893,0.021158572,0.02432982,-0.011625798,0.0045348858,0.008334042,-0.0024418617,-0.006285415,-0.00088794966,0.008334042,-0.0156152295,-0.015653284,-0.022693457,-0.0025687115,-0.005140594,0.023949271,-0.0023530666,0.0022531722,0.019509522,-0.00827696,0.01460043,-0.006945035,0.03011418,-0.007991547,-0.019699797,-0.017873159,0.008372097,0.006006345,0.004268501,-0.034528557,-0.023213541,-0.016959839,-0.0012930767,-0.0044016936,0.018887958,-0.028617349,0.020752652,0.016541233,-0.010065543,0.035188176,-0.002452961,0.010718821,-0.011803388,0.0031649063,-0.009019032,-0.010179709,-0.006088798,0.023061322,-0.015412269,-0.0011051802,-0.010078229,-0.009767447,-0.021577178,-0.008568714,0.00024398796,0.0038879511,-0.008334042,-0.008422837,0.016794933,0.0069767474,-0.0038403822,0.0096976785,0.0039323485,-0.019471468,-0.014410155,-0.021196628,0.018545464,0.08909941,0.007909095,-0.022934472,0.02684145,-0.01419451,0.008435522,-0.0289979,-0.025040181,0.004985203,0.0066976775,-0.006615225,0.0084418645,-0.0011662268,-0.009735734,0.018697683,0.005930235,0.01353489,0.02643553,-0.018507408,0.005762159,-0.007737847,0.010046517,0.04830446,0.0050169155,0.00667865,-0.00019007672,0.01548838,0.021602547,-0.013775905,-0.0101099415,-0.012171253,-0.004132137,-0.017784363,0.006437635,0.0029476758,0.044372115,-0.023961956,0.013649055,-0.015970409,0.007509517,0.005045457,0.012120513,0.0016649056,-0.009482034,-0.01419451,-0.023708256,-0.010427066,0.005809728,0.0064312927,-0.024114177,-0.00081580377,-0.020308677,0.00774419,-0.009564486,-0.01282453,0.00047568732,0.01257083,-0.006345669,-0.022706142,-0.029048638,-0.0122981025,-0.020359417,0.016135314,-0.0131670255,0.0031173376,-0.005930235,-0.0060507427,-0.01581819,-0.024367876,0.019433413,0.02719663,-0.04990277,-0.016604658,-0.004915436,0.02920086,0.01655392,-0.007452435,6.317722e-05,0.005854125,0.03287951,0.013319245,-0.016909098,0.009120512,-0.01749261,-0.0012867342,0.00028917825,-0.01472728,0.011023261,-0.019471468,0.0003841175,0.010300216,-0.020042293,0.012957723,0.023010582,-0.00710994,0.029835109,0.0029349907,0.0010734678,-0.01655392,-0.022274852,-0.01353489,-0.0056828777,-0.012691338,-0.038181838,-0.01201269,0.008067657,0.013446095,0.016972523,-0.004268501,0.01632559,0.018710367,-0.022389017,0.019674428,-0.004179706,-0.003339325,0.0053816093,0.035847798,0.017327704,-0.0012478865,-0.0068498976,-0.0033742087,-0.044727292,0.019623687,-0.010832986,-0.02810995,-0.009532774,0.014562375,-0.0312812,-0.033919677,-0.0029920733,0.0078139575,0.020372102,-0.019078232,-0.01645244,-0.020473583,-0.015412269,0.00743975,0.019293878,-0.020473583,-0.023682887,-0.014308674,0.017784363,-0.004702962,-0.002701904,-0.012704023,-0.030697688,-0.01399155,-0.0029603608,-0.0034122637,0.024723057,0.0068498976,0.007896409,-0.0147907045,0.008923894,0.01262157,-0.023200857,-0.0031807625,-0.037598327,0.039881624,0.020004237,0.019167028,-0.009526432,0.011568716,-0.011968293,-0.0026749484,-0.0026162802,-0.024317136,-0.004132137,-0.004630023,0.012386898,0.0022198742,0.03067232,0.02506555,-8.076774e-06,0.0033678662,0.007452435,0.0154630095,-0.00736364,-0.032980986,-0.022528552,-0.0076553947,-0.0030570838,-0.017530663,0.024646945,-0.029403819,-0.03054547,0.018355189,0.014765334,0.013141655,0.0053942944,0.01645244,-0.0056638503,0.0025782252,-0.0009093556,0.0026020096,-0.048608903,0.030342508,-0.02993659,-0.0008728862,-0.0010576114,0.004553913,0.006434464,-0.0010710893,-0.009424952,-0.011498949,0.032854136,-0.02894716,-0.009558144,0.024951385,-0.02864272,0.00065446645,0.0033837224,0.005990489,0.0026321365,-0.008803387,0.0004748945,0.0077822446,0.011854128,-0.015729394,-0.024139546,0.022059206,-0.01394081,0.038410164,-0.01317971,0.037319258,0.012811845,0.010211421,-0.013852015,-0.011397468,-0.029606778,-0.0037293886,0.031484157,0.033209316,-0.0074968324,-0.019243138,0.00039462227,-0.02600424,0.025230456,-0.0021136373,-0.008873154,0.010896411,-0.020638488,-0.024773795,-0.023923902,-0.012913325,0.02816069,-0.004192391,-0.007858355,-0.017441869,-0.034325596,-0.012843558,-0.006104654,-0.039019044,-0.0038276974,0.0030412276,0.003440805,-0.005200848,-0.0092219915,-0.0037515874,-0.009945036,-0.009025374,0.01186047,-0.039171267,0.021221997,0.01142918,0.0013905927,-0.017835103,0.0066596223,0.0320423,0.018025378,-0.0104143815,-0.011441866,-0.0016680768,0.014816075,0.029226229,-0.017733624,-0.0065835128,-0.02377168,0.00693235,-0.013369985,0.022287536,-0.00171406,0.00035835113,-0.0075602573,0.0034630038,-0.02856661,0.00606977,0.010154339,-0.005302328,-0.007224105,-0.014663855,-0.00047687654,-0.0055148015,-0.009126854,0.015970409,0.011778018,0.0033298112,0.009386896,-0.008429179,0.0094376365,0.00027094356,0.021957727,-0.017010579,0.021095147,-0.025167031,-0.0059587765,0.011961951,-0.021260053,-0.00718605,-0.0097420765,0.009678652,-0.0008372097,-0.01340804,-0.023987327,-0.022782251,-0.00335201,0.008600427,-0.019205082,-0.0067103626,0.018976754,0.018494723,-0.007858355,0.011873156,-0.0016664913,0.009082457,-0.0073319273,0.0071162824,-0.020295992,-0.041200865,-0.020765338,-0.018532777,0.01460043,0.0022579292,0.0277294,-0.032219887,0.002823997,-0.0065327724,0.0066723074,-0.0034978874,0.012196623,0.0067357323,0.00718605,0.030926019,-0.002199261,-0.013040175,-0.010465121,-0.018900642,-0.035061326,-0.028972529,0.009469349,0.0056257956,0.037775915,0.006440806,0.014676539,-0.021361532,-0.0061997916,-0.05789432,-0.02968289,0.030773798,-0.0041448222,0.037293885,0.031991556,0.007909095,0.011587744,-0.000715513,0.014207195,-0.024253711,-0.0029873163,0.030596208,-0.017048635,-0.0004744981,-0.029708259,0.013090915,-0.009443979,0.010769561,-0.014765334,0.004566598,0.012906983,0.022503182,-0.010693451,-0.00057439244,0.017720938,0.01394081,-0.0048076133,0.022224111,-0.021463012,-0.0015317132,0.014308674,-0.0033298112,-0.020283308,0.022249483,0.01548838,-0.0069069797,0.004547571,0.018659629,0.002706661,-0.0008649581,0.00083562406,0.024342505,-0.022630032,0.008803387,0.02821143,0.014841445,-0.02567443,0.003220403,0.021145888,-0.013192395,0.011727278,0.0021929187,-0.030342508,-0.009837214,0.0055116303,0.015526434,-0.019547578,-0.011625798,-0.01383933,0.02600424,-0.012659625,0.00825159,-0.0024371047,-0.0019423899,0.002021671,-0.0065074028,0.018380558,0.013522205,-0.011917553,0.0015769035,-0.01170825,-0.014803389,0.030190289,0.0017869987,-0.013598315,0.019420728,0.012811845,-0.000104948514,0.012964065,0.20021996,0.0032362593,0.022756882,0.016148,0.0084418645,0.025103606,0.017936584,-0.0011115227,0.02778014,0.024228342,-0.024659632,0.008473577,0.0064852037,0.009659624,0.021158572,-0.019801278,-0.01394081,-0.0158943,-0.01325582,0.019484153,0.013420725,-0.025560265,-0.018126858,-0.01736576,0.02709515,0.012114171,-0.024000011,0.008638482,0.044651184,0.0015261635,0.000584699,0.02684145,0.004687106,0.018114174,-0.0016538063,-0.005914379,0.010224106,-0.0005696356,0.01612263,0.014029604,0.024317136,0.012374213,-0.02851587,-0.0176702,0.008638482,0.039780144,-0.0072811875,-0.0108900685,-0.0022959842,0.00018660817,-0.032346737,-0.01282453,0.022389017,0.02453278,-0.012507405,0.012076115,-0.009012689,0.022630032,-0.013826645,0.0019677598,-0.023644831,0.027222,-0.006767445,0.028236799,-0.019864703,0.0030285427,-0.033945046,0.010357299,-0.009951379,-0.017035948,0.0026035954,0.005708248,-0.021729397,0.010255818,-0.004934463,-0.011644825,0.020131087,0.023911215,0.014587744,0.038942937,0.0021770622,0.00822622,-0.0274757,0.010205079,-0.0264609,-0.00031573747,0.01231713,0.0020739967,-0.00855603,-0.0022896416,0.0016950325,-0.012050745,-0.0027843565,-0.021019038,0.0024640604,0.023048636,-0.008181822,0.020372102,-0.015374214,0.0133826705,-0.02377168,0.027222,0.037547585,-0.0047949282,0.013547575,0.008080342,-0.004398522,0.019167028,0.004623681,-0.017010579,-0.01749261,-0.00350423,0.017822418,-0.012906983,0.002532242,0.020029608,-0.0050296006,-0.0128499,0.01371248,-0.00736364,0.016706139,-0.015792819,0.010021146,0.017758993,-0.02826217,0.012095143,-0.0092219915,0.041074015,-0.007604655,-0.05271884,-0.005644823,-0.017923899,-0.017315019,-0.011720936,-0.009228334,0.0058319266,-0.007687107,-0.0016117872,-0.02630868,0.012887956,-0.013496835,-0.00095137465,-0.02445667,0.01216491,0.012843558,0.0049122646,-0.014410155,0.015501064,0.020270623,-0.024786482,-0.017264279,-0.0105222035,0.009621569,-0.010769561,0.02597887,-0.0023546522,-0.009494719,-0.0004360467,0.007737847,0.005720933,-0.042545475,-0.0071289674,0.019560263,-0.009735734,-0.0066913352,-0.0014326116,-0.1580043,0.0018837218,-0.012202965,0.0017204025,0.051196642,0.0019614175,0.0011115227,0.0001491478,0.01142918,0.009247362,0.022148002,0.0027003183,-0.034300227,-0.040135324,0.03176323,0.025002126,-0.00043327187,0.031712487,0.02613109,0.0050422857,0.035644837,-0.0065708277,0.0045951395,-0.013611,0.028921789,0.009608884,-0.0018773793,0.00035260324,0.009202964,-0.021120517,-0.00010653414,-0.0292516,0.02635942,0.020600433,-0.0043287547,-0.036532786,0.0038276974,-0.01323045,-0.02932771,0.02514166,-0.0015126857,0.009513746,0.015475694,0.02643553,0.0122981025,0.017771678,0.0024878448,-0.010274846,0.008625797,-0.008517974,0.044169154,-0.04843131,-0.009209307,0.030443989,0.0013985208,0.0042875283,0.0018218824,-0.0032045469,-0.00021921257,-0.0295053,0.010585628,-0.012126856,0.0029080352,-0.011752648,-0.0058350977,-0.005454548,-0.0015737322,0.014828759,-0.02648627,0.006304443,0.02673997,-0.024875276,-0.0010369984,-0.020397473,0.00028818724,-0.002208775,-0.01404229,0.018824533,0.0064947177,0.008429179,-0.015386899,-0.0048076133,-0.0041606785,0.002862052,-0.03435097,-0.022706142,-0.019712484,0.012095143,-0.014131085,-0.007737847,0.021513753,-0.020790707,-0.011264276,-0.0012058674,0.01434673,0.0069006374,0.022224111,-0.008016917,-0.02709515,-0.0021770622,0.015653284,-0.00665328,-0.018177599,-0.0008586156,0.041479934,0.029835109,0.00675476,0.021589862,0.011587744,0.0044809747,-0.015602544,0.014765334,0.03447782,0.02930234,-0.014283305,0.0066723074,0.011023261,-0.006076113,-0.015729394,-0.017226223,0.042367883,0.007243132,-0.0040877396,-0.008524317,-0.019243138,-0.01399155,-0.100871086,-0.046477824,0.010154339,-0.004538057,-0.0085496865,0.02973363,-0.0034693463,0.002495773,0.006206134,0.029175488,0.0055370005,-0.015564489,-0.022071892,-0.019382672,0.008606769,-0.017403813,-0.01602115,-0.011663853,-0.044448223,0.018799163,-0.0020755823,-0.015133199,-0.0032568725,-0.011613113,-0.018634258,-0.010078229,-0.034706146,-0.014435525,0.017479923,0.022591976,-0.00013269694,-0.015970409,0.011264276,-0.019636372,0.036685005,-0.015970409,-0.019306563,-0.007763217,0.013192395,0.0041638496,0.0037167037,0.0027637433,0.009183937,-0.034832995,0.00822622,-0.007725162,-0.017315019,0.011873156,0.021006351,-0.016490493,-0.0053340406,-0.007852012,-0.039323486,-0.045183953,-0.012932353,0.02864272,-0.002491016,0.018964067,-0.033158578,-0.012069773,0.0058033853,-0.0033234688,-0.015919669,0.020270623,-0.007021145,0.012424953,-0.01300212,-0.007909095,0.021374216,-0.040972535,0.0052833008,0.015424955,-0.010249476,0.019801278,-0.010293874,0.019281194,-0.01272305,-0.035847798,0.017315019,-0.005889009,-0.0033202975,-0.020384787,0.004839326,0.010782246,0.017505294,0.02623257,-0.014676539,0.037775915,0.008023259,-0.032828767,0.017479923,0.023987327,0.037978876,0.020993667,0.0018884786,-0.022249483,-0.011029603,-0.020993667,0.014334044,0.017530663,0.021868931,-0.0022579292,-0.07032561,0.018723054,-0.015995778,0.013953495,0.02980974,0.009875269,0.009107826,-0.018355189,-0.012114171,0.00375793,-0.036152236,0.0098942965,0.006564485,0.00657717,-0.05091757,-0.013649055,0.024913331,0.033412278,0.009811844,0.016414383,0.002173891,-0.05662582,0.010350957,0.0038435536,-0.0094376365,0.029784368,-0.023188172,0.0040718834,-0.033539128,-0.013446095,-0.0034566612,0.012405925,0.015006349,0.038562387,-0.015298104,0.009818186,0.0025449272,0.0061712503,0.0011115227,0.023682887,-0.024000011,-0.019547578,0.018431298,-0.02734885,-0.005762159,-0.0117145935,0.007839327,-0.022541236,0.0067103626,-0.005657508,0.01475265,0.022541236,-0.036837228,-0.020816077,0.020372102,-0.010046517,0.00047529093,-0.012215651,0.002457718,-0.020473583,0.014638484,0.011505291,0.0020343561,-0.00083562406,0.020854132,-0.0041448222,-0.016160684,-0.008372097,0.0061744214,0.0063012713,-0.007839327,-0.010807616,0.020359417,0.0046331943,0.019344619,-0.0040116296,0.013649055,-0.019205082,-0.02377168,0.021019038,0.0064852037,0.019750537,-0.02907401,0.030088808,0.02597887,-0.0045443997,-0.020067662,0.0005981768,-0.005413322,-0.0026448215,-0.00024378975,-0.00103462,-0.013293875,-0.0069894325,0.00039402768,-0.00027470943,-0.00634884,0.020854132,0.009355184,0.026334051,-0.004699791,0.0064186077,-0.01300212,-0.021970412,-0.014435525,0.0012201379,-0.014549689,-0.011746306,-0.006282244,0.01421988,0.006589855,0.011746306,0.018697683,0.002896936,-0.036000017,0.0118224155,0.008054972,-0.005419664,-0.00695772,0.015742078,0.0048646955,0.015856244,0.038359426,-0.02415223,0.015399585,-0.004997888,-0.0055338293,-0.02615646,0.0047188182,-0.018241024,-0.033539128,0.008784359,0.008486262,-0.007997889,-0.011701908,-0.013446095,-0.0128499,0.02813532,0.015082459,0.041327715,0.0050391145,-0.015780134,0.020131087,0.011023261,0.014980979,0.018317133,0.00736364,-0.024177602,-0.013522205,0.007306557,0.011207193,0.006383724,0.0036976761,-0.009710364,0.011251591,-0.023556037,0.0053879516,-0.016008465,0.010687108,0.021716712,-0.010433408,0.008156452,-0.015589859,-0.03485837,0.0015063431,0.025179716,0.025471471,-0.0055528567,-0.024443986,0.020892188,0.01472728,-0.02600424,-0.01645244,0.03110361,-0.00029651177,-0.0015832459,0.0031236801,0.03237211,3.198502e-05,-0.00046379515,-0.005213533,-0.001519821,-0.009906981,-0.022389017,-0.0039830883,-0.037953507,-0.0032600437,0.0037769573]']\n",
"PepsiCo\n",
"['c95b6d84-045e-522e-b7fb-7628a6e1d4c0', \"PepsiCo is a multinational food and beverage company that is a household name around the world. Known for its iconic brands such as Pepsi, Lay's, Doritos, Quaker, and Gatorade, PepsiCo operates in the production, marketing, and distribution of a wide range of snacks, beverages, and food products. The company's core operations include developing and selling popular carbonated and non-carbonated beverages, as well as a variety of snacks and breakfast foods. With a focus on innovation, sustainability, and delivering tasty and convenient products, PepsiCo continues to be a leading player in the global food and beverage industry.\", {'ceo': 'Ramon L. Laguarta', 'city': 'Purchase', 'rank': 45, 'state': 'NY', 'profit': 7618.0, 'sector': 'Food, Beverages & Tobacco', 'ticker': 'PEP', 'company': 'PepsiCo', 'revenue': 79474.0, 'website': 'www.pepsico.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 44, 'market_cap': 234697.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -1, 'num_of_employees': 309000}, '[0.0034528533,0.006731613,-0.010987231,-0.008420965,-0.018892363,0.017460927,-0.004158899,0.014598058,0.002727464,-0.0050164703,0.014920453,0.020878317,-0.021974461,0.002035926,-0.005593558,-0.0002460279,0.023754083,-0.030408321,0.023844354,-0.012753957,-0.008014746,-0.0037816965,0.013121488,0.011580438,0.0053872247,-0.0072345496,0.017228803,0.010561669,0.012753957,-0.0067703007,0.0014757643,-0.011644918,0.004684403,0.019743485,0.004968111,-0.016197138,-0.015358911,-0.01480439,0.008704673,-0.02798391,-0.0026404173,0.008659537,-0.014133808,0.021922879,-0.007221654,0.0062738117,0.0012895811,-0.02927349,0.014288559,0.01366956,0.0074602263,0.008092121,-0.029505614,-0.007743934,0.007498914,-0.0017328745,-0.023921728,0.017138533,0.024140958,-0.035128187,0.018350739,0.02911874,-0.023844354,0.0007882564,-0.0277002,-0.009833056,-0.011896386,0.010826034,0.016983783,0.0121156145,0.03703677,0.013643768,0.014546474,0.017925177,0.009813712,0.0002994246,-0.035876144,0.012792644,0.0054388084,0.006528504,0.02296744,-0.036624104,-0.010922751,0.010348888,0.019936923,0.008066329,-0.013643768,0.0074602263,-0.015371806,0.0033303432,0.013372956,0.007750382,-0.016790345,0.011045262,-0.027313327,0.012360634,0.009807264,0.0152041605,0.0047488823,-0.03703677,-0.023895938,0.027751785,-0.0051325327,0.0020165823,-0.02053013,0.030743612,-0.014417516,-0.014120913,0.035050813,0.0010711583,-0.009388151,0.008401621,0.023019021,-0.01677745,-0.0016208423,-0.010090972,0.019679008,-0.01154175,0.007905132,-0.029299282,0.021600483,0.023496168,0.014172496,-0.015797367,0.029299282,-0.005629021,-0.0065575195,-0.017396448,0.025778726,-0.010194139,0.016893512,0.00030285007,0.018840779,-0.012857123,-0.04774029,0.0042491695,-0.0012887751,0.029660365,-0.006351187,-0.012882915,0.016003702,0.025997953,-0.02272242,-0.004310425,-0.020272214,0.025417643,0.007273237,0.023135085,-0.00012724538,0.0008136451,0.05091266,0.0017264266,-0.0063544107,-0.00019635887,0.025752934,-0.0028386903,0.007647216,0.0024115166,-0.000543639,0.0010397248,0.0034528533,-0.005867594,-0.030356739,0.004365232,-0.017383553,0.030743612,0.021806816,-0.002521131,-0.01875051,-0.010110316,0.011509511,0.030098822,-0.03069203,0.010271513,0.00045820427,-0.0027790472,0.0044490546,0.021510212,-0.017705949,-0.012457353,0.015848951,0.025714247,0.019588737,0.029041367,0.008981932,-0.024269916,0.0038074881,0.014417516,0.013282685,-0.028989783,-0.0008080031,0.021626275,-0.0024195765,-0.008736912,-0.64871085,-0.0024018448,0.0012694313,-0.030666238,-0.010664836,0.018208886,0.040802345,-0.007995402,-0.0071442793,0.017228803,-0.010194139,-0.0023019023,-0.010568117,0.015178369,-0.025907684,-0.02179392,0.0292477,-0.012367083,0.023212459,0.011077502,-0.0044683986,0.004429711,-0.0037043216,-0.005786995,0.022670835,0.025301581,-2.2706197e-05,-0.01573289,-0.004684403,0.016274514,-0.013824309,0.028190242,-0.0006568804,0.011238699,0.055245653,0.023044813,-0.012811988,-0.0054839435,0.007969611,0.038429517,-0.02896399,-0.030820988,0.014146704,0.00787934,-0.0020939573,-0.011709396,0.013231101,0.0048520486,-0.010026493,-0.0031772053,0.012192989,-0.02687487,0.002182616,-0.023044813,-0.0032819838,0.0058031147,-0.009607379,-0.031001529,0.0031159502,-0.015294432,-0.011335418,0.034251273,-0.009401046,-0.012579863,-0.02203894,0.017061157,-0.0028048388,-0.012915154,0.02690066,0.0055000633,-0.0073183724,0.007988955,0.0031369058,-0.0127733005,-5.223811e-05,0.014649641,0.010155451,0.0029950521,0.0022084075,0.012199437,-0.011657813,-0.014391725,0.007498914,-0.0111226365,0.017834906,0.0029563645,0.0039009827,-0.026101122,0.0292477,-0.016983783,0.013875892,-0.009588035,0.00058917736,-0.016145555,-0.008388725,-0.006480145,-0.055606734,-0.021045962,0.008930349,-0.0067896442,0.00052832527,0.0064898166,0.00557099,0.008614401,0.02641062,0.027648618,-0.010110316,0.015939223,0.00612551,-0.0106390435,-0.0015507212,-0.034457605,-0.019614529,-0.0329359,0.0019392075,-0.018376531,0.0149075575,-0.0341739,-0.006892811,-0.017344866,-0.0049261996,-0.00083580974,0.013540601,0.0040492844,0.0064414577,-0.0017489943,0.0049616634,0.00042717374,-0.0069895294,-0.018814988,-0.005122861,-0.019369507,-0.00036712762,0.015062307,-0.021290984,0.008607954,0.0075956327,-0.010426263,0.0023953968,-0.036366187,0.008382277,-0.018105717,-0.005113189,0.031207861,-0.004810137,-0.027571244,-0.013862996,0.005654813,-0.005629021,-0.009259192,-0.0067896442,0.0059739845,-0.00858861,0.032084778,0.011690052,-0.0050519337,-0.023625126,-0.027545452,-0.011367657,-0.0039332225,0.016674284,-0.00150075,-0.015358911,-0.028602907,-0.015242849,-0.029686157,0.0070991437,0.0044426066,0.009246296,-0.020555923,0.022129212,4.5336833e-06,-0.024076479,0.012051135,-0.015294432,0.0059514167,-0.018673133,0.0020101345,0.018157301,-0.003891311,0.025520809,0.0014604506,-0.021690754,0.009413942,0.030279364,-0.0010808301,0.007814861,0.040673386,-0.019356612,0.01209627,0.015384702,0.021510212,-0.005948193,-0.017950969,-0.018350739,0.002450204,-0.01237353,-0.011967313,-0.009736337,0.006486593,0.02514683,0.0037688008,-0.02536606,-0.018479697,0.025340268,-0.02625587,0.0058837137,-0.008201736,0.032961693,0.038584266,0.02705541,-0.014082225,-0.01141924,-0.0027419718,-0.02705541,0.057515316,0.009188266,0.015810264,-0.02290296,0.007086248,0.0030063358,-0.041266594,-0.0049358713,-0.014301454,-0.0056870524,0.009226953,0.014353037,0.032677986,0.0014806002,-0.0039944774,-0.0015926326,0.044593714,-0.014275663,0.025585288,-0.0041169873,0.00089464686,0.029325074,-0.02656537,0.031001529,-0.0099813575,-0.008943245,0.022026045,0.031439986,0.0048681684,-0.01154175,-0.0091624735,-0.0004981007,0.0015958566,-0.03515398,0.01804124,-0.030279364,0.023650916,-0.008936797,-0.0017957416,-0.00013470078,-0.0145722665,0.023212459,0.012624999,0.022670835,0.014133808,-0.0078019653,-0.0075376015,0.0065800874,0.000101554506,-0.0026162376,0.00045981625,0.0022857825,-0.031775277,-0.0044651744,-0.0056483652,-0.0026291334,-0.030717822,0.0069508418,0.0037913683,-2.7705843e-05,0.030898362,-0.010458503,-0.0067767487,-0.026694328,-0.013824309,-0.00030788747,-0.0022277513,-0.022799794,0.027854951,0.0027774351,0.023418792,-0.011567542,0.008259767,-0.0019214757,-0.007834205,0.011909281,0.010780898,-0.0329359,0.036005102,0.012986082,0.0060868226,0.016932199,0.0010413367,0.02567556,0.011200012,0.017796218,0.014185391,-0.025017872,0.0172417,0.041447137,-0.009504212,0.009052859,-0.0059062815,-0.008466099,-0.0094977645,0.024901811,0.0050583817,-0.014353037,-0.01853128,0.0106390435,-0.0058804895,-0.0111226365,0.002658149,0.037475225,-0.011251595,-0.013385852,0.0033625825,-0.021909982,0.013231101,0.10167057,0.018982634,-0.023676708,0.022812689,-0.011831907,-0.0013443882,-0.021342566,-0.0015990805,0.012025343,-0.0054742717,-0.03533452,-0.0067122695,-0.012038239,-0.012431562,-0.0064994884,-0.0010606805,-0.012612103,-0.02733912,-0.0073312684,-0.019072903,0.000885781,-0.0025598183,0.05008733,0.002580774,0.018479697,-0.0014717344,0.03004724,0.05026787,-0.004362008,-0.015487868,-0.019666111,-0.036340393,-0.016132658,-0.0034947647,0.0023438137,0.017319074,0.0062125567,-0.019343715,0.013057008,-0.0013548661,0.015603931,0.015139682,-0.014469099,-0.009517108,-0.0055516465,0.0033980461,0.0037913683,0.003755905,0.012147854,-0.0059030573,0.022890065,-0.012160749,-0.017654365,-0.0036495144,0.02496629,-0.014004851,-0.0035818114,-0.031311028,-0.008524131,-0.04755975,0.003813936,-0.024553623,-0.009536452,-0.016171347,0.014610954,-0.00033166414,-0.011006574,-0.030201988,-0.0054097925,0.01797676,0.014404621,-0.028602907,-0.01455937,-0.013605081,0.04103447,-0.0004295917,-0.011103293,0.002722628,0.014004851,-0.01875051,0.013605081,-0.013617977,-0.023341417,-0.02545633,-0.004139555,0.0054388084,0.018853676,0.009181817,-0.0094977645,-0.002445368,0.011773875,-0.018776301,0.01757699,0.013682455,-0.011393448,0.015294432,0.013005425,-0.011045262,0.013617977,0.02536606,-0.011773875,0.009878191,-0.01502362,-0.016338993,0.015307328,0.0028048388,0.021987358,-0.011657813,-0.018273363,0.017809115,0.05261491,-0.031878445,0.014082225,-0.00203915,-0.011515959,0.013630872,-0.020169048,-0.0061093904,-0.016893512,-0.035876144,0.019537153,-0.0038397277,0.017783323,-0.005103517,-0.011599782,0.0037913683,-0.0077697258,-0.032471653,-0.036959395,-0.012992529,-0.00083500374,0.031878445,0.0019230878,-0.0049261996,-0.010400471,0.015900536,-0.0063189473,0.000273633,-0.0114579275,-0.02960878,-0.017757531,-0.01646795,0.015088098,-0.0052743866,-0.012921602,-0.03450919,-0.008427412,0.007363508,-0.035231356,0.0035753634,-0.009652514,-0.010329545,0.002108465,-0.006522056,-0.0071313833,-0.025997953,-0.02361223,-0.016803242,0.01991113,0.05297599,0.00014155167,0.0073312684,-0.007950268,-0.004987455,-0.003746233,-0.0051486525,-0.010761554,-0.01764147,-0.010948543,0.006567192,-0.0026710448,0.008208184,0.00435556,0.0122768115,0.007627872,-0.008820735,-0.00062947674,-0.038120016,-0.011322522,-0.027132785,-0.009478421,0.016880617,-0.019537153,0.01766726,-0.0040396126,-0.02499208,0.02170365,0.018943947,0.0023341416,-0.01684193,0.019936923,-0.022309752,0.018389426,0.0078471005,0.009891087,-0.014933349,-0.016042389,-0.0292477,-0.0032707,-0.018969737,0.0020294783,0.017319074,0.000612551,-0.013798517,-3.387669e-05,0.030485697,-0.0018908483,-0.005854698,0.020865422,-0.021355463,-0.012612103,-0.006970186,-0.017409345,-0.0135663925,0.0005190564,0.0056129014,-0.02767441,0.0139145795,-0.008420965,-0.032471653,0.00023051261,-0.007492466,0.0427883,-0.024553623,0.023857249,0.010858272,0.009588035,-0.0029096173,0.019859549,-0.0046167,-0.0033238952,-0.0038042641,0.027003828,0.004220154,-0.024772853,-0.009478421,-0.009381702,-0.02539185,-0.014082225,0.027261743,0.005925625,0.006215781,-0.013643768,0.00880139,0.0009623499,-0.014133808,0.015526556,8.624073e-05,0.007266789,-0.035876144,-0.019305028,0.011593333,-0.016545326,0.0056096776,0.012199437,-0.0011533691,-0.027184369,0.006725165,-0.02194867,0.019201862,-0.0019907907,-0.01502362,-0.0064994884,0.025133936,0.003878415,-0.011399897,-0.0028451383,0.035076603,0.038403723,0.024759956,0.0068025403,-0.019214759,0.011148429,6.689702e-05,0.018814988,-0.008085674,-0.015410494,-0.0021552125,-0.022632148,-0.016235827,0.014017746,-0.009059307,-0.013321373,-0.011090397,0.02117492,-0.018273363,-0.030666238,-0.018763404,-0.0061738696,-0.008730464,-0.020607505,-0.0054839435,0.018505488,-0.012908706,0.009355911,-0.013005425,-0.012953842,-0.0060803746,0.005103517,0.007292581,-0.014972037,0.0007685097,-0.026178496,0.024618102,-0.021497317,-0.0011678769,0.03819739,-0.0148946615,-0.004700523,-0.0008080031,-0.011677156,0.033374358,0.0035624676,0.0024856676,-0.001499944,0.014817286,0.034767106,-0.0018795644,0.010258618,0.004610252,-0.010729315,0.0053646574,0.018402321,-0.020633297,0.006277036,-0.0059901043,0.0042330497,-0.02074936,0.0015845727,-0.032162152,-0.0132439975,0.028577117,0.01582316,0.00449419,-0.009085098,0.0070024254,-0.0046715075,0.017370656,-0.008375829,0.0016442159,0.020607505,0.012212332,0.030253572,0.008208184,-0.0042523937,-0.009897535,-0.010703523,-0.0052002356,-0.01806703,-0.0028435262,0.012076926,0.030588863,0.012205885,-0.011896386,-0.03164632,0.0017522182,-0.040776554,-0.008324246,0.019421091,-0.012811988,0.025314476,0.025249997,-0.0212394,0.027880743,-0.008782047,0.031388402,-0.013127935,-0.0044490546,0.03182686,-0.011341865,0.0018602207,-0.021187818,-0.0030546952,-0.0016426039,0.021007275,-0.021432837,0.0148817655,0.008066329,-0.0004569953,-0.0024373082,-0.020259319,0.0074602263,0.007408643,0.014739912,0.02989249,-0.004004149,-0.004629596,-0.0016264841,0.0046682833,-0.013321373,0.014404621,0.01742224,-0.0074860184,0.031001529,-0.013605081,-0.018647343,-0.016661387,0.0132439975,-0.010916304,-0.0109292,-0.0007221654,0.024553623,0.011032366,-0.01917607,-0.01240577,-0.004958439,-0.021226505,-0.0056386935,-0.0008712732,-0.010903408,0.016609805,-0.021871295,-0.0008906169,-0.02361223,-0.0065768636,-0.0046811793,-0.009394598,0.0013443882,0.04008018,-0.0056483652,-0.002043986,0.0033883743,-0.01804124,0.013231101,-0.014327246,-0.009865295,-0.006202885,-0.03275536,0.0020939573,0.012573415,-0.026307454,-0.037320476,0.005716068,-0.0056032296,-0.024424665,0.029144533,0.1893105,0.022786897,0.005258267,0.050499994,0.014636745,0.01268303,0.01644216,0.0026968364,-0.0012525056,0.010793794,-0.005861146,0.015874743,-0.027597034,-0.0026920005,0.022245273,-0.03982226,-0.051402703,-0.025817413,-0.0017022471,-0.0035012127,-0.00017913088,-0.015616827,-0.011567542,-0.0045876848,0.014739912,0.0078084134,-0.029015575,0.00668003,0.040596012,0.01006518,0.003059531,0.0061835414,0.0059739845,0.011006574,-0.0028161227,0.0017618901,0.0028886616,0.0026678208,0.015358911,-0.0023808891,0.009059307,-0.003078875,-0.0057644276,-0.016932199,-0.020878317,0.03899693,0.0026371933,0.0035399,-0.005390449,0.010658387,-0.053182323,0.008517683,0.009903982,0.01132897,0.016042389,0.010535877,-0.0027484198,0.0003534258,-0.017989656,0.01431435,-0.015397598,0.03438023,0.0058901617,0.02514683,0.00068428396,0.0013556721,-0.009220504,-0.0033722545,0.01145148,-0.00015424598,-0.017628573,-0.023870146,-0.010213482,0.025972163,0.0010026493,-0.010632596,0.011567542,0.0286287,0.025404748,0.024682581,-0.0068541234,0.018763404,-0.054523487,0.019163175,-0.032471653,-0.013824309,0.010020045,-0.0019053561,-0.010697075,-0.0009139906,0.018144406,-0.005629021,-0.010290857,-0.01289581,0.024540728,0.0068541234,-0.034225482,0.00994267,0.01336006,-0.021329671,-0.017809115,0.037088353,-0.005793443,0.0059836563,-0.030459905,0.0021004053,0.019472674,0.0111226365,0.01994982,-0.0049552154,-0.015745785,0.0005375941,0.010226378,-0.009845952,0.0033045516,0.023934625,0.0005944163,-0.00751181,0.015965013,-0.031130487,0.010542326,-0.01782201,0.011025918,0.014494891,-0.0065252804,-0.0060964944,0.005451704,0.028293408,-0.0035882592,-0.038481098,-0.023173772,-0.025069457,-0.019188967,-0.017280387,-0.011651365,0.014301454,0.0016071404,0.022271065,-0.00831135,0.007956715,-0.009252744,0.007066904,-0.000751987,0.014378829,0.0011324134,-0.032523233,-0.013147279,0.006202885,0.0043942477,-0.019640319,-0.027751785,-0.012612103,-0.0031288462,0.012057583,0.017899385,-0.01868603,-0.024901811,-0.006596207,0.028809242,0.008124361,-0.0372431,-0.0074602263,0.0069508418,-0.00957514,-0.0025146832,0.0028080628,-0.16104288,0.02705541,0.00735706,0.0073312684,0.008537027,-0.0068605714,0.025340268,-0.0024244124,0.025185518,0.019137383,0.032136362,-0.019511363,-0.022645043,-0.052434366,0.013643768,-0.026139809,0.0091753695,-0.0018457129,-0.0030740388,0.021123338,0.035076603,0.0035399,0.0025775502,0.0042491695,0.010542326,0.004007373,0.00021902728,-0.014288559,-0.004026717,-0.001766726,0.0038558473,-0.018892363,0.023289835,0.009252744,-0.003533452,-0.016970888,-0.018183094,-0.0036527384,0.011767427,0.006937946,0.027132785,0.0040009255,0.009156026,0.027725993,0.014817286,0.005996552,0.009716993,0.006048135,0.015848951,-0.009600931,0.04614121,-0.023779875,-0.0043007527,0.032677986,-0.007402195,-0.0045361016,0.0055516465,-0.011877041,0.006515608,-0.050474204,-0.0024969513,0.015836056,0.010239273,-0.007421539,-0.005113189,-0.01766726,-0.013179518,-0.004220154,-0.030330947,0.019511363,0.017125636,0.011232251,0.00031635034,-0.0018312051,0.0030546952,0.0068541234,-0.018840779,0.0074860184,-0.0034496293,-0.01566841,-0.020104568,0.00874336,-0.019640319,0.004968111,-0.0047263145,0.0077116946,9.268864e-05,0.020401172,0.012508936,-0.010452054,0.03520556,-0.007866445,0.007956715,-4.9190465e-05,-0.0075762887,0.023238251,0.010954991,0.011232251,-0.008962588,0.02234844,-0.0071055917,0.008246871,-0.038248975,0.009394598,0.023883041,0.020813838,0.0015104219,0.025108144,0.023070605,-0.015629722,0.014830182,0.014662537,0.036649894,0.02074936,-0.01573289,0.021716544,0.01006518,0.0016829033,0.018195989,-0.023470376,0.05581307,-0.0025033993,-0.01021993,0.0040170453,-0.0027468076,-0.023895938,-0.10853114,-0.015797367,0.020607505,0.012122062,-0.008569267,0.005867594,0.010942095,-0.0023663812,0.0075956327,0.03706256,0.032729566,-0.021368358,-0.0012001164,-0.014236975,0.041292384,0.003881639,0.001020381,-0.024076479,-0.056122568,0.015255744,-0.02394752,-0.01511389,0.007492466,-0.013295581,-0.032703776,-0.002459876,-0.02465679,-0.014404621,0.02465679,0.01268303,0.018208886,-0.010445607,0.0135663925,-0.013463226,0.0078084134,0.0152170565,-0.0326264,-0.006886363,0.020181945,-0.021781024,0.021213608,0.011290282,0.009729889,-0.041756634,-0.019124487,-0.018634446,-0.0030466353,0.019898236,0.028370783,-0.01708695,0.00997491,0.010922751,-0.025649767,-0.008917453,-0.0071765184,0.0073764035,-0.016545326,0.035489272,-0.015126786,-0.00057305756,-0.011812563,0.008524131,0.006338291,-0.007763278,-0.008595058,0.006944394,-0.033787023,-0.0152041605,0.037784725,-0.032110568,-0.014095121,0.008511235,-0.007505362,0.03533452,-0.0038622953,0.0078599965,0.011206459,-0.014262767,0.023212459,-0.010568117,-0.014649641,-0.030511487,0.004281409,-0.04823033,0.016132658,0.01955005,0.00862085,0.014417516,0.009562244,-0.03863585,0.0037784725,0.019382404,0.022541877,-0.018544177,-0.0030305155,-0.0036011552,-0.0123155,-0.0077181426,0.007073352,0.023818562,-0.010735762,-0.01822178,-0.07066904,0.01575868,0.0043168725,-0.01644216,0.006731613,-0.017357761,0.0063253953,-0.0033529107,0.0013314924,0.011806115,-0.03995122,0.016932199,-0.008059882,-0.019433986,-0.0088400785,-0.02228396,0.031568944,0.017873595,-0.0017892937,0.02272242,0.009865295,-0.021045962,0.026359037,-0.006199661,-0.0094848685,0.022013148,-0.029092949,0.028912408,-0.003468973,-0.0237025,0.0080211945,-0.023212459,0.0011082337,0.03007303,-0.0012194602,-0.0072474456,-0.02283848,-0.008898109,0.002930573,0.0008672433,-0.014984932,-0.0077181426,-7.374792e-05,-0.045573793,-0.016429262,0.0007229714,0.0139016835,-0.0130828,0.0002935812,0.0027532557,0.025972163,0.008646641,-0.0009841116,-0.0072861332,0.004023493,-0.03311644,0.041447137,0.0033142234,-0.004507086,-0.048410874,0.005106741,0.00557099,-0.0016651716,-0.014340142,0.013057008,0.006186765,0.0012428338,-0.03340015,0.011561094,-0.027777577,-0.00014517862,0.00624802,0.021871295,-0.021071754,0.032471653,-0.0066993735,-0.012044687,-0.008601505,-0.0033593588,0.041266594,-0.0029563645,0.0019311476,-0.03146578,0.04389734,0.013540601,0.006054583,-0.034921855,-0.0048810644,-0.027725993,-0.0014016135,-0.03265219,0.008072778,-0.024953393,-0.0035689157,0.02896399,-0.01148372,-0.0054807197,-0.0020536578,-0.02272242,0.011657813,-0.03069203,0.0166227,-0.015075203,-0.011780323,-0.024128063,-0.007866445,-0.011064606,-0.040596012,-0.0058772657,0.015694201,0.012541176,-0.002448592,0.004242722,-0.0039815814,-0.003881639,0.012644342,-0.0033496867,-0.0022712746,0.005251819,0.019524258,0.014598058,0.014469099,0.0292477,0.0021955117,0.013540601,0.003485093,0.014017746,-0.0018489369,0.0040170453,0.030769404,-0.021845503,-0.017228803,0.0090012755,-0.009046411,-0.016816137,-0.022167899,0.021123338,0.021484422,-0.004416815,0.047353417,0.005658037,-0.018453905,0.01462385,0.025378956,0.026771704,-0.00023776651,0.0067058215,-0.021226505,-0.014120913,-0.014855974,-0.003826832,0.027829159,-0.01915028,0.0055419747,-0.0024808317,-0.017860698,-0.026823286,-0.011554646,0.016248722,0.027158577,0.009897535,0.004146003,-0.003007948,-0.0053420896,-0.017551199,0.042762507,0.011038814,-0.0068025403,-0.02234844,0.016700074,0.012870019,-0.023496168,-0.011154876,0.021226505,0.02179392,-0.010168347,0.0005238923,0.02130388,0.014752807,0.0051486525,0.028009702,-0.010522981,-0.0044683986,-0.015926326,-0.006879915,-0.011206459,-0.027571244,-0.0019956266]']\n",
"Coca-Cola\n",
"['b71e9039-c6fa-5ea2-bc6d-45700e720a5d', \"Coca-Cola is a multinational beverage corporation known for its flagship product, Coca-Cola, a popular carbonated soft drink. Established in 1886 in Atlanta, Georgia, Coca-Cola has grown to become one of the world's most valuable and recognizable brands. The company's core operations involve producing, marketing, and selling a wide range of non-alcoholic beverages, including sodas, juices, teas, and energy drinks, to consumers in over 200 countries. Coca-Cola's mission is to refresh the world, inspire moments of optimism and happiness, and create value and make a difference wherever they do business.\", {'ceo': 'James R. Quincey', 'city': 'Atlanta', 'rank': 93, 'state': 'GA', 'profit': 9771.0, 'sector': 'Food, Beverages & Tobacco', 'ticker': 'KO', 'company': 'Coca-Cola', 'revenue': 38655.0, 'website': 'www.coca-colacompany.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 93, 'market_cap': 271069.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 79000}, '[-0.001835123,-0.01818783,-0.010118316,-0.031523895,0.001410908,0.0017565647,-0.014618138,0.022046616,-0.0023976008,0.000372563,-0.0045281034,0.015284313,-0.03632538,-0.011130148,-0.022059185,-0.0017769899,0.02953794,-0.041554227,0.0030983414,-0.005480231,-0.019671012,0.01344919,0.002446307,0.01778561,0.0007730142,-0.007315354,0.014479876,-0.012801869,0.036451075,-0.0013967674,-0.0011414528,-0.003346586,-0.013851409,0.030040713,-0.008622564,-0.003902779,-0.021883214,-0.022649944,0.014555291,-0.012154548,-0.0019906687,0.00043639165,-0.00028889833,-0.0048423368,-0.021003362,0.030719457,0.0017817034,-0.020035522,0.026093943,0.0021980626,0.0008774968,0.046355713,-0.02046288,-0.0070702517,0.0028453835,-0.035671778,-0.042534634,0.016239582,0.04371615,-0.04208214,0.023906877,0.02707435,-0.022298003,-0.01175233,-0.017747903,-0.01344919,-0.024535345,0.024359373,0.0020755117,0.026194496,0.011287264,0.027401153,0.031523895,0.037004124,0.018011859,-0.0056184935,-0.030367516,0.008019237,0.004323852,0.026370468,0.008094653,-0.024459928,-0.008748258,0.029789327,0.011570074,0.03388693,-0.0067685875,0.013222942,-0.019155668,0.017949013,-0.008943083,-0.010966746,0.012141979,0.014429598,-0.027903927,0.014341612,0.01929393,0.02293904,0.000688564,-0.031322785,-0.018627757,0.014366752,0.002474588,-0.008195207,-0.022210017,0.02046288,0.0024133127,0.0058824494,0.029965298,0.0024148838,0.00082329154,0.03464109,0.018150121,0.0013229226,0.0019042544,-0.020286908,-0.017936442,-0.024824439,0.0064040767,-0.024711315,7.089891e-05,0.025063256,0.014442167,0.00051848515,0.005059158,-0.005323114,-0.007340492,-0.023605214,-0.012167118,-0.018049566,0.013625161,-0.012060278,-0.0015224608,0.0051502855,-0.028281007,0.033283602,-0.013172665,0.04547586,-0.011010739,-0.00720223,0.012720169,0.0246359,-0.0056467745,0.005917015,-0.024472497,0.010652512,0.021581551,0.009024783,0.0025185808,0.00045956636,0.037959397,-0.017647348,-0.007855835,0.014794108,0.021946061,-0.003330874,0.021656966,0.016553815,0.013222942,0.0019136815,0.0041196,0.0050465884,-0.0077552805,-0.008465448,-0.003085772,0.020085799,0.01703145,-0.01704402,0.0029475093,-0.0020362325,-0.0027149767,0.052187886,-0.017345684,0.022147171,0.0010094749,0.006272099,0.0031831844,0.02521409,-0.015259175,-0.0182004,-0.00038788185,0.037909117,0.015083204,0.017169714,0.015560838,-0.016164167,0.0089745065,0.0029852174,0.031197093,-0.016528677,-0.013725716,0.015598547,0.009326448,0.0063883653,-0.6499855,0.00055972824,0.0011178853,-0.032127224,-0.012996694,0.0035256988,0.03992021,-0.014052518,-0.0060521355,0.01533459,-0.00889909,0.0021776375,0.0019796705,0.005370249,-0.03547067,-0.011350111,0.020500587,-0.0051502855,0.010696505,-0.0014038377,-0.0024541628,0.021254748,-0.0131475255,-0.0052728364,-0.0001478861,0.0005766183,-0.0026175643,-0.008811105,-0.022222586,0.013901686,-0.0042390088,0.02516381,0.027727956,-0.004440118,0.055455912,0.013625161,-0.018087275,-0.020085799,-0.0053733913,0.019834412,-0.0210285,-0.019105392,0.012801869,-0.0164784,-0.015673961,-0.009546411,0.013688007,-0.0022326284,-0.014417029,-0.006762303,5.6954806e-05,-0.020902807,-0.006743449,-0.015636254,-0.02649616,-0.02654644,0.0015813797,-0.013926825,-0.0041793045,-0.0061903982,-0.017483946,0.025968248,-0.010275433,0.008503156,-0.022637375,0.020035522,-0.015070634,-0.008006667,0.025314644,-0.00074001966,-0.0065423395,-0.010614805,-0.02329098,-0.0154602835,-0.0071268138,0.015988195,0.011067301,0.0037582316,0.015623685,-0.022272864,0.009225893,-0.004063038,-0.00040771786,-0.0057410444,0.015862502,-0.007441047,-0.006114982,-0.02101593,0.01222368,0.008591142,0.023580074,0.0039059212,0.0028626663,-0.019746426,-0.006407219,0.00822663,-0.04072465,-0.005580785,0.0022703363,0.0035476952,-0.009678389,-0.00016978424,0.012713884,0.009389294,-0.002380318,-8.253537e-05,-2.7225378e-05,0.003057491,0.034364566,-0.026320191,-0.0023473236,-0.027426291,-0.032278057,-0.017521655,-0.010306856,-0.012984124,0.014329043,-0.018313523,0.005568216,-0.0124373585,-0.01799929,-0.00020346613,-0.0004764564,0.009194469,-0.0053011174,-0.028884334,0.013009263,-0.008377463,-0.01685548,-0.03049321,-0.008264339,-0.00227505,-0.003685958,0.012619614,-0.0004477826,0.010577097,-0.01023144,-0.020400032,-0.0090750605,-0.029311692,-0.012299095,-0.028708365,-0.0091819,0.020927945,-0.004704074,-0.027426291,-0.022561958,-0.01572424,-0.03290652,0.013951964,-0.003912206,0.0007757637,-0.027526846,0.019997815,-0.0015083203,-0.012984124,-0.019909829,-0.023039594,-0.0006559622,-0.009295024,0.007805558,0.005706479,-0.01087876,-0.0079249665,0.008628849,-0.019960105,-0.005012023,-0.007648441,0.0023787469,-0.02518895,0.021443287,-0.0048517636,-0.01876602,0.02195863,0.008748258,0.014605569,-0.032328334,-0.0058855917,0.007409624,-0.01552313,0.014819248,0.004807771,-0.004977457,0.007384485,0.027602263,-0.0013677009,0.009200755,0.023693198,-0.030995984,0.0017235703,0.005624778,0.024371943,-0.0077301417,-0.0210285,0.002474588,0.008559718,-0.01222368,0.0008122934,0.010583381,0.011343826,0.017936442,0.014429598,0.0030606333,-0.01913053,0.024397083,-0.0054330956,0.021682106,-0.008214061,0.038361613,0.0072210836,0.037607454,0.0049994537,-0.009848075,0.01363773,0.0067874417,0.043892123,0.0007305927,0.02234828,-0.012607045,0.0056750556,-0.00842774,-0.018388938,-0.0051062927,-0.022260295,0.005464519,0.0009725524,-0.003714239,0.032856245,0.018300954,-0.02802962,-0.011620351,0.020500587,0.0016811488,0.0054299533,-0.005819603,-0.0113312565,0.02160669,-0.026018526,0.029387109,-0.0046506543,-0.010086892,0.013889116,0.038336474,0.0068502882,-0.023919446,-0.012594475,-0.001627729,0.0023536081,-0.020927945,0.031699866,-0.04359046,0.005323114,-0.029713912,-0.012154548,-0.007214799,-0.018590048,0.030166408,0.00966582,0.018074706,0.03788398,0.00030775234,-0.0059421537,0.0035194142,-0.013474328,0.0045595267,0.011683198,0.0061558327,-0.03350985,0.00805066,0.0057818945,-0.0023866028,-0.0378337,0.013210372,0.012808153,0.015774516,-0.0011988004,-0.0048266253,-0.011972293,-0.013675438,0.011852884,0.0025720005,-0.013524606,-0.026445884,0.015007787,0.005973577,0.0027982485,-0.018451786,0.0155357,-0.020588573,0.0015397437,0.006322376,0.0033057355,-0.026646992,0.012179687,0.009992623,-0.0001858887,0.016717218,-0.00031678655,0.0124939205,0.003827363,-0.013424051,0.01649097,-0.0052539827,0.0089745065,0.041956443,0.0028642374,0.01610132,0.023567505,-0.011306118,-0.0033560127,0.010608519,0.0023771757,-0.0052194167,-0.01003033,0.018376369,0.004261005,0.019218516,0.005096866,0.01645326,-0.020022953,-0.01023144,0.0074599013,-0.017848458,0.0048297676,0.09814138,-0.016578954,-0.015761947,0.0128207235,-0.010080608,0.011054731,-0.01872831,-0.018514633,-0.0022137742,0.0014776826,-0.02350466,-0.014316474,0.0027966774,-0.01307211,0.0024415937,0.002548433,-0.0058541684,-0.01649097,0.013222942,0.001778561,0.013310927,-0.008628849,0.03051835,0.018627757,0.008283192,-0.009332732,0.021455858,0.045500997,-0.0073467772,-0.030568626,0.00086964096,-0.019155668,-0.020236632,-0.009942345,-0.0020676558,0.021707244,-0.010765636,0.0064009344,0.009760089,0.0014690412,0.05319343,0.0018869716,-0.017169714,0.00041203856,-0.011808892,-0.0009796226,0.011513512,0.014668415,0.028859196,-0.012481351,0.027627401,-0.01743367,-0.009885783,-0.00425472,0.012745307,-0.0020205209,-0.005690767,-0.019092822,-0.004232724,-0.017559363,0.0013299929,-0.028431838,0.0015868787,-0.020387463,0.020689128,-0.01221111,0.004776348,-0.038311336,-0.007654726,0.010558243,0.020852529,-0.0102942865,0.0032617429,0.0071645216,0.03519414,0.014266197,-0.0045186765,-0.0021493565,-0.017685056,0.00082329154,0.0034628522,-0.0132606495,-0.02026177,-0.0340629,-0.020613711,0.012996694,0.014643277,0.0033434434,-0.014153073,0.0096846735,0.0037488046,-0.017760472,0.026596716,0.016365277,-0.0072210836,0.007962675,0.004477826,-0.01911796,0.008924229,0.009037353,0.0016984316,0.0412777,0.00255786,-0.020714266,0.014982649,-0.00449668,0.0044841105,0.007522748,-0.036275104,0.0014596141,0.03652649,-0.032479163,0.018665465,-0.016629232,-0.014643277,0.01571167,-0.03162445,0.020550866,-0.011375249,-0.03803481,0.017659917,-0.011475804,0.005407957,0.02217231,-0.0127893,0.006228106,0.0137005765,-0.026295051,-0.01896713,-0.01872831,0.0012097986,0.033685822,-0.021116486,-0.0109478915,-0.019809274,0.010929038,-0.007409624,0.00539853,0.002529579,-0.035169,-0.0012530057,0.016968604,0.026445884,-0.016139029,-0.008446594,-0.025515752,-0.011375249,-0.0024777304,-0.014479876,0.009433287,0.0005789751,0.002133645,-0.01458043,-0.00046035193,-0.0056970515,-0.008635134,-0.028582672,-0.013863978,0.020312047,0.041202284,-0.016566385,0.022599667,0.0029082303,-0.021367872,-0.00671831,-0.0045406725,-0.019947536,0.00058368855,-0.013235511,0.002991502,2.860015e-06,0.015585977,-0.00080679427,0.0076610106,0.017923873,-0.0053105447,-0.011167855,-0.03162445,-0.020852529,-0.019872122,-0.018891713,0.006611471,0.0004760636,0.02063885,-0.010533104,-0.025503183,0.018326093,0.02368063,0.011733475,-0.0053388258,0.006737164,-0.0027086919,0.009232177,0.009345301,0.0015853075,0.0025547177,-0.0065234858,-0.027124628,-0.003076345,-0.007987813,0.013348635,0.001608875,0.009433287,-0.00350056,-0.039819658,0.015937919,0.0038085089,-0.012330519,-0.0017738476,-0.018300954,-0.016754925,-0.019796705,-0.012984124,-0.02273793,-0.014178212,0.021468427,-0.020877667,0.015497992,0.0025562888,-0.0219712,0.014706124,-0.012179687,0.03680302,-0.005323114,0.043992676,0.0036325383,0.005508512,-0.009420717,0.014856956,0.0002476552,-0.0044998224,0.0023850317,0.012280242,0.0009521272,-0.012801869,-0.00545195,0.00087514,-0.017773042,-0.007145668,0.022096893,0.028733503,0.007654726,-0.011840315,0.010143454,0.0009505561,0.000104482606,0.018954558,-0.019067682,0.0043992675,-0.039040357,-0.042434078,0.029462524,-0.011105008,0.01497008,0.0051659974,-0.022587098,-0.010998169,0.016377846,-0.02346695,0.0014658988,-0.004198158,-0.0031297647,-0.012424789,0.011035877,0.0068502882,-0.02232314,-0.012581905,0.021744952,0.04218269,0.025302075,0.015146051,-0.017835889,0.006749734,0.019281361,0.019520178,-0.0023504659,-0.016742356,-0.0051974207,-0.028557532,-0.01059595,0.007353062,0.011802607,-0.008446594,0.011702052,0.02253682,-0.025478045,-0.03290652,-0.022888761,-0.022599667,-0.0056844824,-0.03785884,-0.018414078,0.019482471,0.008622564,-0.006180971,-0.0048800446,0.0052351286,-0.007692434,-0.013210372,0.0027919638,0.0046318006,0.008044375,-0.01798672,0.015787086,-0.01896713,-0.01070279,0.041956443,0.0042170123,-0.015372299,-0.018150121,-0.001105316,0.010281717,0.00068542163,-0.017458808,0.0054048146,0.013499468,0.014077657,-0.008484302,-0.010432549,0.009609258,-0.016314998,0.012908708,0.03486734,-0.024346804,0.008685411,-0.008547149,-0.00345971,-0.013524606,0.0054770885,-0.014429598,-0.01059595,0.045626692,0.012229964,0.01231795,-0.0130469715,0.004100746,0.0010691792,0.012695029,-0.019369347,0.004053611,0.018489493,0.009923491,0.028431838,-0.0018948275,-0.009427003,-0.016013334,-0.029563079,0.0038399321,-0.03127251,-0.007591879,0.0011186709,0.014706124,0.016063612,-0.0064103617,-0.045777522,-0.006492062,-0.040448125,-0.01706916,0.020789683,-0.013222942,0.019143099,0.021418149,-0.002804533,0.028230729,-0.014303905,0.035546083,-0.023517229,-0.0045563844,0.03197639,-0.00023606785,0.015472853,-0.015963057,0.0056279204,0.01816269,0.013939394,-0.020136077,0.008195207,0.017609641,0.008578572,-0.011746045,-0.007101675,0.0105645275,0.0040598954,0.017898735,0.024736455,-0.015849933,-0.009722382,-0.007962675,-0.009848075,-0.0065737627,-0.0017707052,-0.00025138672,-0.0174211,0.030141268,-0.0033968631,-0.025478045,-0.0032617429,0.00985436,0.00093091646,0.0062752413,-0.014505014,0.022825915,0.004408695,-0.00059782906,0.016968604,-0.0047637783,-0.017408531,-0.0034282864,-0.0102942865,-0.015309452,0.0015036069,-0.020538295,-0.0058635953,-0.015975626,0.004034757,0.002333183,-0.00421387,-0.008295762,0.022624806,0.0045972345,-0.018703172,0.0077427113,-0.011714621,0.00014533295,-0.013034401,-0.0013001407,-0.0011178853,-0.022310572,-0.006837719,0.020714266,-0.024899855,-0.01929393,0.008195207,0.0021949203,-0.011796322,0.012468781,0.1983944,0.0013708433,-0.0030417794,0.038512446,-0.012707599,0.00064260734,0.02368063,-0.00899336,-0.0012176544,0.019180806,0.013210372,0.00786212,-0.011274694,-0.000562085,0.005662486,-0.012374512,-0.024761593,-0.04223297,-0.006580048,-0.012236249,-0.023366395,-0.019306501,-0.020777114,0.00089870754,0.003943629,0.0066303248,-0.0044998224,-0.013373774,0.04032243,0.0082392,-0.009716097,0.019193377,0.009137907,0.013185234,-0.0149072325,-0.0005660129,-0.0061841137,-0.008691696,0.005794464,0.004562669,-0.0014729691,0.011563789,-0.009621827,-0.0022153456,-0.007541602,0.04452059,0.000618647,-0.013084679,-0.015410006,0.013977102,-0.039819658,-0.0015373869,-0.0029317976,0.02820559,0.0041196,0.006649179,-0.0072462223,0.0041510235,-0.008088368,0.019419625,-0.029085444,0.034615953,0.048970133,0.018979698,-0.015234035,-0.0013229226,-0.03011613,0.009301309,0.010187447,-0.0034628522,-0.015221466,-0.037280653,-0.015108342,0.02880892,0.016415553,-0.013926825,0.013524606,0.05339454,0.032152362,0.015422576,0.015497992,0.0066743176,-0.030442933,0.022385988,-0.021619258,-0.0024494494,-0.0046035196,0.0060521355,-0.012594475,0.0041196,0.011865454,-0.014919803,0.0007254864,-0.00061668304,0.0067874417,0.017169714,-0.017697625,-0.0018916851,0.008773397,-0.012776731,-0.017458808,0.036853295,-0.002491871,0.0056970515,-0.02536492,-0.003104626,-0.0038525015,-0.013021832,0.005297975,-0.008842528,-0.018665465,-0.018300954,0.016239582,-0.014153073,3.6038644e-05,0.022222586,0.0021666393,-0.015397437,0.03177528,-0.013901686,0.004468399,-0.024937563,0.007554171,0.010168593,0.0008712121,-0.008170068,0.0062878104,0.023844032,0.019356778,-0.04791431,-0.007397054,-0.01023144,-0.0045720963,-0.0058824494,-0.015234035,0.012141979,0.0025170096,0.008880236,-0.008503156,-0.012651037,-0.0007046684,0.0029427959,0.012519059,0.009892068,-0.0024478782,-0.0367276,-0.012148264,-0.0064009344,0.011061016,-0.012104271,-0.014178212,-0.00966582,-0.0031721862,-0.019595595,0.012462497,-0.0016049471,-0.005128289,-0.0051691397,0.030417794,0.017345684,-0.03504331,-0.01126841,0.019268792,-0.007032544,-0.008176353,0.008754543,-0.15505533,0.020601142,-0.011720906,0.0033811515,0.019482471,0.007063967,0.00842774,0.0074599013,0.024786731,0.033233326,0.032227777,-0.0146935545,-0.02253682,-0.052539825,0.02007323,-0.025817417,-0.017471377,-0.004169877,0.012047709,0.014454736,0.042710606,-0.004056753,0.0037865127,0.01324808,0.0005962579,0.008528295,-0.005847884,-0.0023378965,-0.008584857,0.0031313358,-0.0091819,-0.041755334,0.018979698,0.0050245924,-0.00671831,-0.021518704,-0.028733503,0.0056593437,0.0023080443,0.004691505,0.017559363,0.022109462,0.014417029,0.025314644,-0.011243272,0.024887286,0.025289504,0.00079854566,0.022184879,-0.012644752,0.040171597,-0.041378256,0.008961936,0.033233326,0.0041793045,0.01324808,0.007045113,-0.013109818,0.009119053,-0.05736645,-0.013310927,0.0045846654,-0.0011563789,-0.024924994,0.010288002,-0.012814438,0.00033524778,0.014680984,-0.011105008,0.03031724,0.01344919,-0.015397437,-0.027979342,-0.005794464,-0.00066696043,0.0026804109,-0.00794382,0.0038493592,-0.0031753285,-0.026822964,-0.021418149,0.0037205236,-0.02501298,0.003943629,-0.0069571277,0.007365631,-0.008811105,0.024485067,0.00374252,-0.009207039,0.017006312,-0.028155314,-0.0043207095,-0.0044464027,-0.014643277,0.015774516,0.006030139,0.008779681,0.00044738982,0.0091316225,-0.0005813318,-0.0045469576,-0.019834412,-0.004195016,0.041302837,0.035294697,0.0023551793,0.027250322,-0.00021407151,0.0041887313,0.009427003,-0.0026976939,0.042685468,0.03936716,-0.025528323,0.03921633,0.0007447332,0.0011186709,0.017345684,-0.007353062,0.03680302,0.0034628522,-0.019570457,0.004396125,-0.025025548,-0.0062469603,-0.11282236,-0.02991502,-0.00095998304,-0.0041258847,-0.010256578,0.034163456,0.00814493,0.0044338335,0.0025122962,0.032730553,-0.0056310627,-0.0118843075,0.013386344,0.0006198254,0.055455912,0.012387081,0.0044432604,0.0020896522,-0.06123781,-0.0049711727,-0.012311665,-0.02120447,-0.019934967,-0.018426647,-0.033459574,-0.009797798,-0.028356424,0.0002814353,0.04054868,0.031523895,-0.0095149875,0.003472279,0.0048203403,-0.023957156,0.014680984,0.015284313,-0.019972675,-0.0016528678,0.016616663,-0.029638495,0.019671012,-0.0005726904,0.019105392,-0.04580266,0.012129409,-0.0120539935,0.008572287,0.028356424,0.0059295846,-0.01400224,0.0044024102,0.0042201546,-0.033283602,-0.010168593,5.6905705e-05,0.019545319,-0.007994098,0.01608875,-0.018854005,0.00345971,0.0033654398,0.012041424,-0.011111293,-0.012701314,0.011356396,-0.007239938,-0.015359729,0.014366752,0.036752738,-0.027451431,-0.021920923,0.010520535,-0.014605569,0.031322785,-0.012827008,0.016176736,0.0108347675,-0.00032955228,0.019960105,-0.014856956,-0.01762221,-0.021154193,-0.017358253,-0.046531685,0.0017251414,0.024271388,-0.024020001,0.019105392,-0.00015898247,-0.04602891,0.015736809,0.026621854,0.012996694,-0.030065853,-0.001824125,0.010847338,-0.006705741,-0.0009882641,0.012619614,0.020802252,-0.016604094,-0.03388693,-0.0670197,0.014856956,0.024761593,-0.02349209,0.003943629,-0.014731262,0.019155668,-0.010024046,0.0045438153,0.005480231,-0.033660684,0.008635134,-0.0077741346,-0.0058573107,-0.016000764,-0.015560838,0.021895783,0.020211494,-0.016591525,0.01835123,-0.011412958,-0.01183403,0.044420034,0.0051691397,0.006086701,0.018263245,-0.00605842,0.031699866,-0.016767494,0.0053451103,0.018300954,-0.016805202,0.0096281115,0.042434078,-0.0020519441,-0.0016018047,-0.023014454,0.015636254,0.0021854932,0.009445856,-0.013386344,0.00728393,0.0048203403,-0.029638495,-0.02062628,0.02346695,-0.0041196,-0.018640326,0.00795639,0.01495751,0.0035759762,0.022235155,0.0014250485,-0.022838484,0.004861191,-0.017873596,0.03310763,0.01324808,-0.014366752,-0.042685468,0.012795584,-0.005791322,-0.0046537966,0.00052634097,0.014479876,-0.0007109531,0.0072776456,-0.012632183,0.03823592,-0.025842555,0.00016929324,0.014065088,0.040247016,-0.013499468,0.025088396,-0.012858431,-0.023642922,-0.011224417,-0.01268246,0.032328334,0.0077867038,-0.008873952,-0.022888761,0.024522776,0.01552313,0.016402984,-0.023906877,-0.0066994564,-0.028733503,0.0017110009,-0.023202995,-0.00014209242,-0.027024074,0.009320163,0.014354182,0.004845479,-0.014027379,-0.018954558,-0.014743832,0.0037016696,-0.02820559,0.0037016696,-0.0059201573,-0.013361204,-0.025716862,-0.0034188596,-0.013926825,-0.040297292,-0.016516108,0.018979698,0.015510561,0.0018759734,0.015234035,-0.00899336,-0.0109478915,-0.006988551,0.0040190453,0.0025138673,-0.0005290905,0.024397083,0.0030606333,0.0118277455,0.03788398,-0.005341968,0.0039939065,0.002991502,0.0056122085,-0.021154193,-0.004892614,0.033233326,-0.0246359,0.00022723003,0.0054299533,0.001684291,-0.009313879,-0.0003433,0.034565676,0.00899336,0.008038091,0.030618904,0.014982649,-0.019746426,0.018099844,0.036752738,0.044596005,0.010338279,0.008188923,-0.013914255,-0.003902779,-0.0069382736,-0.0036451076,0.022486543,-0.018376369,-0.004836052,0.024346804,-0.010526819,-0.013662868,-0.006133836,0.010344564,0.021166762,0.010822198,-0.023341257,-0.0022216302,0.010520535,-0.026722409,0.020751974,0.004836052,-0.011149001,-0.034339428,0.024133125,0.013951964,-0.033208188,-0.018212968,0.01382627,0.011557505,0.0010267576,-0.0069382736,0.01798672,0.012368227,0.00984179,0.038361613,-0.0113312565,-0.02727546,-0.028507255,0.0097412355,-0.00087592565,-0.020953083,0.003761374]']\n",
"Target\n",
"['54b6b6c6-ae20-52bd-b8dc-aeb635f4e942', 'Target Corporation is a leading retail company in the United States. It was founded in 1902 and has since grown to become one of the largest and most recognizable retail chains in the country. Target specializes in offering a wide range of products including apparel, home goods, electronics, beauty products, and groceries. The company operates both physical stores and an online platform, providing customers with a convenient shopping experience. Target is known for its affordable pricing, trendy merchandise, and exclusive collaborations with designers and brands. With a focus on providing a pleasant shopping environment and exceptional customer service, Target continues to be a popular destination for consumers seeking quality products at competitive prices.', {'ceo': 'Brian C. Cornell', 'city': 'Minneapolis', 'rank': 32, 'state': 'MN', 'profit': 6946.0, 'sector': 'Retailing', 'ticker': 'TGT', 'company': 'Target', 'revenue': 106005.0, 'website': 'www.target.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 30, 'market_cap': 71112.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -2, 'num_of_employees': 450000}, '[-0.018522317,-0.031656325,-0.012887906,-0.018030116,0.0035101734,0.00010453209,-0.005404501,0.0035976039,0.0058902265,-0.04012737,-0.00017010498,0.006832533,-0.031941283,-0.020063685,0.005171353,0.013911167,0.025477901,-0.03150089,-0.021915916,-0.023457283,-0.031319555,0.016126074,-0.027874144,0.019869395,-0.013898214,0.007201684,0.019299477,-0.00909925,0.0118193105,-0.021177614,0.00013256248,-0.01733067,-0.02189001,-0.008917913,0.0029645422,0.010763668,0.0040153274,-0.024661882,0.028159102,-0.021086946,0.0034518864,0.015258244,0.009189919,0.013302391,-0.018302122,-0.011152248,-0.0062172813,-0.0048637274,0.006071564,0.020089589,-0.01664418,0.029143507,-0.022278592,-0.017019808,0.018328028,-0.0038372283,-0.008179611,0.0143904155,0.028314535,-0.030801447,-0.01639808,0.009733931,-0.047795348,0.015620919,-0.012596471,-0.016035404,-0.035697557,0.0013802688,-0.00588375,0.021773437,-0.0049803015,0.0271747,0.039531548,0.03717416,0.006314426,-0.019636247,-0.0063694753,0.010394517,-0.006443953,0.008354472,0.008011226,-0.024882078,0.0066835773,-0.0068778675,-0.0022990988,0.022654219,-0.016242648,0.007816936,-0.0021582386,0.005501646,0.018703654,0.004164283,0.0010507853,0.0070268232,-0.011761024,0.022006584,-0.005980895,0.02100923,-0.007046252,-0.03134546,0.008768957,0.011650926,-0.012602947,0.0020157592,-0.028651305,0.022667171,0.00303902,-0.03212262,0.019377192,-0.005475741,-0.0012985051,-0.009720978,0.020504076,0.004183712,-0.004821631,-0.008166658,-0.0035716984,0.0067094825,0.0137168765,-0.013406012,0.044868045,0.034609534,0.01026499,-0.0040768525,-0.0035781749,-0.011087485,-0.028055482,-0.0153230075,0.0035004588,0.003908468,0.006949107,0.007758649,-0.013172865,0.020892655,-0.008108371,0.01703276,-0.011178154,0.038210373,-0.008587619,-0.021190567,0.0055340277,0.0066447193,-0.0022505263,-0.018185548,-0.009792218,0.020167306,0.012628852,0.030412868,0.021773437,0.024325112,0.02727832,0.008399806,-0.0030730208,-0.013010956,0.029428465,0.0037433214,0.00340979,-0.00015057478,-0.0016223218,0.0025646286,0.026863836,0.0019429004,0.0051001133,-0.004662961,0.004643532,0.025024557,0.021812296,0.015115765,0.013341249,-0.0064083333,0.0137168765,0.014856712,-0.045308437,0.0051972587,-0.008082465,0.012719521,0.0009034487,0.019429004,-0.008581144,0.0012806952,0.027096985,-0.009403638,0.018120784,0.009552593,0.014817853,0.0043650493,0.010206703,0.024143776,0.006311188,-0.031993095,0.0022877653,0.014986238,0.016113121,-0.015789304,-0.65530145,0.01742134,-0.0045334343,-0.045671113,-0.009759836,0.023496142,0.03168223,0.008438664,-0.021488478,0.010388041,0.0027913002,0.008380377,0.0052684983,-0.025711048,-0.03828809,-0.010433375,0.003370932,0.016229695,0.007745696,0.010562901,-0.017861731,0.017395435,-0.0128296185,-0.023250042,-0.00082775654,0.03512764,-0.01567273,-0.010038319,-0.0034680772,0.024623023,-0.014079551,0.028806737,0.017136382,0.003390361,0.04644827,0.022434022,-0.015452534,0.010543473,0.0036915108,0.02503751,-0.03334017,-0.01353554,0.04839117,-0.016553512,0.015258244,0.0048540127,0.0036915108,-0.00011606806,-0.0070138704,-0.0060488963,-0.009319445,-0.02067246,0.00027483946,-0.011566734,0.004125425,-0.016592368,-0.008846673,-0.0066317664,0.0022472881,0.0058027958,-0.010219656,-0.0019688057,-0.009507259,-0.0061622323,-0.03663015,0.013302391,0.012033029,-0.008620001,0.0042808573,0.0133801075,-0.00082330406,0.016462842,-0.029350748,-0.007240542,0.007816936,0.040878624,0.03567165,-0.0022003348,0.009746884,0.018379837,0.0032414056,-0.023560906,0.0036040803,-0.027822334,-0.0025694857,0.009086298,0.005793081,-0.019817583,0.031423174,-0.009241729,0.00418695,-0.01470128,-0.0068584383,-0.020555886,-0.0007366831,-0.0030665444,-0.018353932,-0.017796967,-0.007454261,-0.005540504,-0.009798694,-0.010750716,0.011314156,0.025270658,0.022667171,0.019597389,0.020646555,0.017550867,0.025594475,-0.020270927,-0.00669653,-0.026099628,-0.03611204,-0.011592639,-0.002321766,-0.01339306,0.020011874,-0.027356038,-0.014506989,-0.015115765,0.008535809,0.0062172813,0.010349182,-0.01547844,0.007033299,-0.009746884,0.009954127,-4.323459e-05,0.016436936,-0.004860489,0.017628582,-0.0310605,0.017486103,0.014688327,0.0074218796,0.02212316,0.01703276,-0.008088942,0.021721626,-0.046940472,-0.02247288,-0.003137784,0.015491392,0.014196126,-0.015310055,-0.057147175,0.006813104,-0.0024075774,-0.034868587,-0.013444871,-0.015944736,-0.018017164,-0.026682498,0.016385127,0.0051389714,-0.013846403,-0.04310648,-0.03878029,0.010232609,-0.018353932,-0.012136651,0.022045443,-0.021410761,0.0052361167,0.015426629,-0.025853528,-0.012512279,0.025516758,0.00584813,-0.016721897,0.035101734,0.0008508285,0.0050612553,0.0038307519,0.0035846513,0.029298937,-0.020309785,-0.004549625,0.02450645,-0.0046111504,0.0056441254,0.019416051,-0.02261536,0.011249393,0.006599385,0.003969993,0.014014788,0.0064083333,-0.008626478,-0.0020465218,7.3427973e-06,0.01922176,-0.022693077,-0.0014304604,-0.012959146,0.0035296024,0.0062075667,0.01945491,0.004012089,0.02081494,0.005537266,-0.014338605,0.012091316,-0.021177614,-0.0005784176,-0.00015684874,-0.011845216,-0.011722166,-0.010504615,-4.1969684e-05,0.025322469,-0.022149064,-0.0077716014,-0.0111004375,0.0024448163,0.02756328,-0.0017923256,0.031526797,-0.018742513,0.0045949593,0.013859356,-0.014688327,-0.02295213,-0.02305575,-0.008717147,-0.0030325437,0.011663878,0.008969723,0.011625021,-0.007719791,0.0112688225,0.011748071,0.0030519727,0.029817045,-0.00793351,-0.0018036591,0.009934697,-0.01644989,0.03479087,0.011139296,0.0013090292,0.04339144,0.015620919,-0.005453074,-0.018923849,-0.003561984,0.022382213,0.012842571,-0.0040898053,-0.009319445,0.00032320956,-0.00012021696,-0.016177883,-0.014843759,0.004837822,-0.007927033,0.02867721,0.008743051,0.03183766,0.03650062,0.0038210375,-0.01828917,-0.0012483135,0.012855524,0.01084786,0.021993631,0.027148794,-0.0150639545,-0.0014393653,-0.0072794002,0.012317988,0.008574667,0.015750445,-0.01397593,0.0070656813,0.022485834,-0.0142220305,0.026812024,-0.026941553,0.009908792,-0.017240003,-0.030749638,0.0019655675,0.034920394,0.0016789897,-0.006035944,-0.0070138704,-0.0031960711,-0.011320633,0.019998921,0.004203141,0.0004229856,-0.012596471,0.002399482,-0.013600303,-0.003307788,0.033081118,-0.0019493768,0.015180528,-0.016721897,0.010731286,-0.00065491936,-0.0069037727,0.009040963,0.026293918,-3.0686693e-05,-0.018276216,0.017641535,-0.008024178,-0.0025111986,-0.0025516758,-0.0179524,0.010161369,-0.012784285,0.0035846513,0.014351558,-0.0061848997,-0.002439959,0.007201684,0.013522587,0.007816936,0.0042096176,-0.012149604,0.015607966,0.11522695,0.023794053,-0.013600303,0.013703924,-0.030905068,0.011294727,-0.0053332616,-0.014286794,0.008930866,0.013367155,-0.0069750124,-0.009468401,0.0076355985,-0.05302823,0.004973825,0.013224675,0.002694155,-0.007337687,-0.0050806846,0.0049997303,0.01897566,-0.0114372065,0.013962978,0.0060100383,0.023470236,-0.009954127,0.032433484,0.025633333,0.022330401,-0.021436667,-0.019467862,-0.010439851,-0.0181985,0.008477522,-0.0044816234,0.015465487,-0.03411733,0.022071349,0.0054304064,0.005087161,0.035024017,0.013794593,0.009008582,-0.012369799,-0.012214367,0.0021145232,0.019338336,0.0056765075,-0.010012413,0.0027767285,0.012441039,-0.007629122,-0.012207891,0.002941875,-0.004526958,0.0060488963,0.009675644,-0.009727455,-0.019493768,-0.038754385,0.004449242,-0.020452265,-0.008419235,-0.010362135,0.013678019,-0.010731286,-0.0050774463,-0.0049284906,-0.028081387,0.0021809058,0.009079821,-0.025685143,-0.015569109,0.0007945653,0.026034866,-0.0063953805,0.00825085,0.008360948,0.030361056,0.045463867,-0.007046252,0.0013592207,-0.008840197,-0.024972746,0.0044848616,0.006071564,0.0078104595,0.00326893,-0.031423174,0.022602407,-0.012777808,-0.023262994,0.04245885,-0.004378002,-0.00069539645,0.023936532,0.013690972,0.00549517,0.0019477577,0.012907335,-0.025076367,0.028159102,0.0017178478,-0.038883913,0.024415782,-0.009785742,0.0013907929,-0.0028010148,-0.0006650386,0.0064310003,0.015633872,-0.00061768043,-0.0033191214,0.003889039,-0.034531817,0.009992984,-0.002365481,0.0325112,-0.015607966,-0.021708673,-0.008898484,-0.017356576,0.009798694,0.008963247,-0.012512279,-0.010783097,0.0022343355,-0.02372929,-0.03940202,-0.01708457,-0.00026977982,-0.005857845,-0.021099899,-0.028469967,-0.01606131,0.009507259,-0.0011746451,0.0020853798,-0.00883372,-0.049919587,-0.016579418,0.01955853,-0.016553512,-0.019506719,-0.016423985,-0.023936532,-0.019299477,0.0013648876,-0.002227859,0.024053106,0.0067094825,-0.012816667,-0.0033417887,0.016190836,0.006171947,-0.03663015,-0.021048088,-0.01708457,0.01780992,0.013872309,0.017589726,0.0066511957,0.005491932,-0.0077716014,0.012978574,-0.0017097524,-0.021864105,0.02940256,-0.017175239,0.014416321,-0.013742782,-0.006703006,0.022330401,0.014455179,-0.005731556,0.021436667,-0.0023897674,-0.013108102,-0.0108413845,-0.008594096,-0.008613525,-0.001701657,-0.0148955695,0.011579686,-0.03973879,-0.009513736,0.032433484,0.025218846,0.017006855,-0.018742513,0.0065313834,0.0017696584,-0.01800421,-0.015038049,-0.006450429,-0.016190836,0.008794863,-0.040541854,-0.0117675,-0.0011778834,0.029765233,-0.00033757894,0.00038007987,-0.0006666577,-0.010277943,0.0013146959,-0.022550598,-0.0090344865,0.011929409,-0.012751902,-0.007234066,-0.011417778,-0.05139619,-0.011048627,0.0072470186,0.030490583,-0.024027202,0.0150639545,-0.0074024503,-0.030127909,0.0061913757,-0.020840844,0.015841115,0.013807545,0.035101734,0.0072534946,0.024687788,-0.005365643,-0.00012325274,-0.01019375,-0.017771062,0.012972098,0.005670031,-0.007680933,-0.014092504,0.00013934239,-0.026423445,-0.022408118,-0.024389876,0.018237358,0.0031604513,0.022628313,-0.006871391,-0.0027621568,-0.0153230075,-0.00747369,0.004180474,0.001053214,-0.004125425,-0.036086135,-0.024661882,0.028780831,-0.03458363,0.025996007,-0.0070527284,-0.010640617,-0.012745427,-0.014027741,-0.015051002,-0.0016563226,-0.0045625777,0.002169572,-0.011793406,0.034272764,0.0069361543,-0.003118355,-0.0007868747,-0.008749528,1.32183e-05,0.028988075,-0.017304767,-0.014014788,0.022291543,0.002802634,-0.005514599,-0.008328566,0.00093178265,-0.005161639,-0.010718334,-0.02343138,-0.011521399,0.0063986187,-0.00021250473,-0.0073053055,0.02037455,-0.034713153,-0.011728642,-0.006291759,0.042303417,-0.013483728,-0.044842143,0.008043608,0.009241729,-0.00016595608,0.00034020995,0.021022182,-0.0016457986,0.031112311,-0.014481084,-0.0023363377,0.00120136,0.009403638,-0.028573588,-0.00083544716,-0.005961466,-0.015452534,0.040049654,-9.547534e-05,-0.034039617,-0.032200336,0.013937072,-0.014986238,0.010245562,-0.015970642,-0.008360948,0.008509904,-0.0037627504,0.016242648,-0.0033612177,0.014934428,0.005595553,0.013626208,0.008788386,-0.025996007,0.028962169,-0.031474985,-2.7246142e-05,-0.026863836,-0.020439312,0.0029483514,-0.036215663,0.0031879756,0.010349182,0.0053850724,-0.0027378704,0.016993903,-0.006074802,0.0057153655,0.0105952835,-0.022874413,-0.0043261917,0.0069037727,0.014403368,0.01169626,-0.01014194,0.0048248693,-0.012033029,-0.0051584006,-0.02673431,-0.010634141,0.006074802,0.026229154,0.0056959363,-0.042536564,-0.0077845543,0.002669869,-0.05279508,-0.001936424,0.045541584,-0.0040023746,0.010880242,0.049246047,-0.016903233,0.025659237,-0.0019785203,0.021838201,-0.012389228,0.014455179,0.007901128,0.005414216,0.02280965,-0.012965622,-0.035490315,-0.021151708,0.008898484,-0.0060035624,0.0010216418,0.016734848,-0.017097523,0.015789304,-0.015193481,0.014856712,-0.0060424204,0.011884074,0.01791354,-0.01040747,0.018910898,0.0016757515,0.010543473,-0.032485295,0.016074263,0.005012683,-0.009656215,0.0062561394,-0.02222678,0.0063306172,-0.018742513,0.019105187,0.01639808,0.014869664,-0.010562901,0.024778455,0.014144314,-0.020491123,0.007700362,-0.0138852615,-0.006832533,-0.016605321,-0.004721248,-0.010679476,0.02503751,-0.015426629,0.004779535,-0.010504615,0.0067094825,0.0053494526,-0.027459659,-0.026462303,0.007868746,-0.014234983,-0.002397863,0.019234713,0.0058157486,-0.004552863,0.012376276,-0.004203141,0.020594744,-0.035878893,-0.021682769,-0.0034616007,-0.013872309,-0.019908253,-0.005945275,0.012680663,-0.029661613,0.019623294,0.2033051,0.0021744294,0.004821631,0.0354126,0.01001889,0.012149604,0.033702847,0.015569109,-0.009759836,-0.017589726,-0.0017567058,0.01281019,0.020115495,0.01171569,0.013924119,-0.03924659,0.005828701,-0.027045174,-0.015633872,0.008412759,0.018949755,-0.0041545685,0.005427168,-0.010135463,0.028547684,0.012026553,0.0122337965,0.009332398,0.022965083,-0.009533164,-0.025698096,0.0053915484,0.008425712,-0.0052976417,-0.001287981,-0.0029629231,-0.013341249,-0.004300286,-0.0029548276,-0.007525501,0.012525232,0.012194938,-0.01955853,0.0023881483,-0.005051541,0.034480006,-0.014234983,-0.012641805,-0.006489287,0.0015162718,-0.041215394,0.005942037,0.008160181,0.0021841438,-0.014973286,0.01863889,0.021527337,0.018859087,0.021086946,0.0063014734,0.007104539,0.027589185,-0.03732959,0.0354126,-0.021501431,0.0059647043,-0.012622376,0.010569378,0.019662151,-0.023625668,0.009410114,0.022317449,-0.011858169,0.0465778,0.0011762643,-0.012084841,0.01307572,0.0013389821,0.018263264,0.008380377,-0.0021533812,0.009371256,0.0058351774,0.013418965,-0.0031685466,-0.005841654,0.014105457,0.0066706245,0.017162288,-0.0075837877,0.016372174,0.0059517515,0.0011090724,-0.014403368,-0.00059784664,0.031941283,-0.00038311566,0.0028997788,-0.009889363,0.00773922,-0.010239085,0.031371366,0.014312699,-0.0010216418,-0.01858708,-0.0077716014,-0.012836095,0.013095149,-0.005783367,-0.023716338,-0.00028435155,-0.019001566,0.025931245,-0.0050612553,0.011903503,0.02270603,-0.0021550003,-0.014727185,-0.00028455394,-0.014817853,0.012589995,-0.02625506,0.013114577,0.0043682875,0.0071498733,-0.02906579,0.02062065,-0.0034777918,-0.0025775812,-0.035775274,-0.010685952,-0.0038113229,0.008632954,-0.00029447084,-0.003442172,0.00468239,0.0032074046,0.012376276,-0.02189001,0.023794053,-0.02445464,-0.00530088,-0.010090129,-0.0083156135,-0.0012305035,-0.020361597,-0.022537645,-0.001916995,0.01639808,-0.0076226457,-0.0025694857,-0.026915647,0.004109234,-0.014079551,0.008341519,-0.0112688225,-0.013742782,-8.560905e-05,0.0032235954,-0.00062982354,-0.023703385,-0.019014519,0.034143236,0.0059387987,-0.012900858,0.005747747,-0.16268553,0.020089589,0.007829889,0.004277619,0.043754116,-0.0030730208,-0.0020805225,0.0016514653,-0.011625021,0.018651843,0.028703116,-0.008302661,-0.022149064,-0.04745858,0.006851962,-0.012337417,-0.015983595,-0.0013041719,0.0011616925,-0.00046953425,0.037096445,0.008004749,0.009960603,0.015802257,-0.008069513,0.039168872,0.0045787687,-0.013276486,0.035593934,-0.013613256,0.00086216204,-0.0165017,0.011223488,-0.00584813,-0.004141616,-0.0117675,-0.0034162665,-0.007823412,0.0004521291,0.032381672,0.011637974,0.0070527284,0.003464839,0.004627341,0.010957958,0.013561444,0.013937072,-0.0005804415,-0.00222624,-0.040878624,0.018366884,-0.026190298,0.010957958,0.018353932,0.014869664,-0.0070915865,0.004510767,-0.027822334,-0.005239355,-0.034920394,-0.012713045,0.0066317664,0.0030649253,-0.017576773,-0.013354202,-0.030853258,-0.017304767,-0.038883913,-0.025192942,0.0016789897,0.0022165256,-0.02295213,0.019778727,-0.008114847,-0.0012596471,0.012862001,-0.011411302,0.014312699,0.003924659,0.005184306,-0.008438664,0.007415403,-0.010439851,0.015569109,-0.021501431,0.008024178,-0.012188462,0.01411841,-0.0015446058,-0.0042096176,0.019713962,-0.0039797076,-0.038184468,-0.009623833,-0.003464839,0.031241838,0.017460197,0.0009002105,0.00023719575,0.006288521,0.0063014734,-0.005870797,0.007428356,0.012441039,0.022744887,0.03424686,0.011068055,0.026423445,0.009740408,0.0055728857,-0.012486373,-0.004607912,0.020607697,0.01113282,-0.008464569,0.0021792867,0.015659777,-0.0068001514,0.019869395,-0.013367155,0.03756274,0.0048863944,0.007914081,0.019921206,-0.030646015,-0.038469426,-0.0888035,-0.023703385,0.0026488209,0.007240542,-0.0051907822,0.028703116,-0.0059161317,0.03196719,-0.0071952078,0.02707108,0.004957634,-0.012071888,-0.010660047,-0.019390145,0.02916941,-0.016488748,0.02387177,-0.0057639377,-0.028495872,0.0044719093,-0.017693346,-0.022343354,-0.03168223,-0.019662151,-0.0018635653,0.0009115441,-0.04652599,-0.006884344,0.01689028,0.0033579795,-0.0081018945,-0.017641535,0.013062767,-0.026863836,0.019934159,0.017097523,-0.025257705,0.0057186033,0.018962707,-0.035205357,-0.016592368,-0.006728912,0.002457769,-0.01606131,0.012564089,-0.04828755,0.009999461,0.0034616007,0.011443683,0.02945437,0.0052199257,0.018030116,-0.012194938,-0.02494684,-0.0026277727,0.033858277,-0.0025889147,-0.01994711,-0.018483458,-0.00507097,-0.016139027,0.0037465596,0.0100447945,0.011877597,0.010096606,0.018366884,-0.021086946,-0.0029969239,0.029972477,-0.026889741,0.00747369,0.014908522,-0.008121324,0.029117601,-0.023405474,0.030775541,-0.037044633,0.004892871,0.05367586,-0.022110207,-0.022693077,-0.025076367,0.011249393,-0.023962438,0.0137168765,-0.00224405,-0.012188462,-0.012589995,0.026384586,-0.04507529,0.028159102,0.027045174,0.027381944,-0.007221113,-0.005074208,0.009552593,-0.016100168,-0.009992984,0.025827622,0.023003941,-0.013729829,-0.007985321,-0.07196503,0.013833451,0.008024178,0.0124928495,0.0031636895,0.011825787,0.015167575,-0.01363916,0.009280588,-0.0034583628,-0.02950618,0.0025840574,-0.012130175,-0.0059711807,-0.02795186,-0.017693346,-0.002070808,0.02192887,0.009999461,0.004743915,0.025646284,-0.028884452,0.013690972,0.008555238,-0.00051932107,0.010290896,-0.0038242757,0.011799881,-0.009986508,-0.010103082,0.020413406,-0.010310325,-0.009533164,0.03279616,0.0027394895,-0.020465218,-0.0072664474,0.01703276,-0.01979168,-0.006288521,-0.032744348,-0.009779265,0.012985051,0.0046370556,-0.0215921,-0.013431918,-0.00018487911,-0.01722705,0.017680394,0.0020529982,0.015763398,0.014351558,-0.014688327,-0.002572724,-0.010770145,-0.017395435,0.011968266,-0.011404825,0.0044460036,-0.008140753,0.012577042,0.004934967,-0.009332398,-0.008917913,0.02097037,-0.018276216,-0.007881699,-0.004973825,0.026915647,-0.014286794,0.006599385,0.0016903233,0.024920935,-0.038987536,-0.0008281613,-0.011553781,-0.014545848,-0.028806737,-0.023949485,0.024195585,-0.00057720335,0.02834044,-0.024752552,0.028107293,0.025970101,0.0009528307,0.0047924877,-0.004837822,-0.019519672,-0.00890496,-0.02727832,-0.00023699336,-0.010226132,0.0049835397,-0.009228777,0.016359221,0.011463112,0.016773706,-0.009021534,0.0049446817,0.019351289,0.010025366,0.001722705,-0.028910358,-0.0196492,-0.0050385883,-0.02823682,-0.029609801,-0.028366346,0.027537376,0.020607697,0.017395435,0.015892925,-0.0018716607,-0.02581467,0.011119867,-0.00048693942,-0.019921206,0.0032446436,0.013911167,-0.003383885,0.016190836,0.024402829,-0.0137168765,0.008043608,0.008581144,0.013418965,-0.02823682,0.010174322,0.0051001133,-0.037044633,0.004060662,-0.01708457,-0.0071563497,-0.025374278,0.0010953101,0.017291814,0.03129365,0.0089438185,0.03751093,0.017537914,-0.018107831,-0.020063685,0.0034810298,0.030542394,0.024389876,0.018483458,-0.040775,-0.010180798,0.0117739765,-0.004238761,-0.0012944574,0.0018085164,-0.006366237,0.0035393168,-0.011288251,-0.010375088,0.008892007,0.027433753,0.016009498,-0.02620325,-0.0026083437,-0.0066511957,-0.032018997,-0.018107831,-0.008205516,0.019182904,0.0053688814,-0.045593396,0.024545308,-0.010316801,-0.021915916,-0.0100447945,0.0035004588,-0.003406552,-0.003155594,0.0071693026,0.027226511,-0.0037077016,0.017926494,0.03100869,0.008581144,-0.021630958,-0.029298937,0.0005800367,0.0066900537,-0.017058665,0.0090344865]']\n"
]
}
],
"source": [
"# Get the nearest neighbors to a row\n",
"\n",
"sql = \"\"\"\n",
"SELECT * \n",
"FROM fortune_100 \n",
"WHERE id::text != '04a4331a-6836-5518-9a22-0334ede34b8b' \n",
"ORDER BY embedding <-> (SELECT embedding FROM fortune_100 WHERE id::text = '04a4331a-6836-5518-9a22-0334ede34b8b' ) LIMIT 5;\n",
"\"\"\"\n",
"\n",
"try:\n",
" # Execute the SQL command\n",
" cur.execute(sql)\n",
"\n",
" # Fetch all the rows in a list of lists.\n",
" results = cur.fetchall()\n",
"\n",
" # Print results\n",
" for row in results:\n",
" print(f\"{row.get('metadata').get('company')}\")\n",
" print(row) # Adjust print formatting as needed\n",
"\n",
"except Exception as e:\n",
" print(\"An error occurred:\", e)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Apple\n",
"['33a3f638-20dc-5797-a9e2-660ae1bad782', \"Apple Inc. is a multinational technology company renowned for its cutting-edge products and innovation. They design, manufacture, and market a range of consumer electronics, software, and online services. Apple is best known for their iconic products such as the iPhone, iPad, Mac computers, Apple Watch, and AirPods. Their software offerings include the iOS, macOS, watchOS, and tvOS operating systems, as well as various productivity and creativity apps. Apple's services like the App Store, iCloud, Apple Music, and Apple Pay provide seamless integration and enhance the user experience across all devices. With a focus on user-friendly design and technological advancements, Apple continues to be a leader in the tech industry.\", {'ceo': 'Timothy D. Cook', 'city': 'Cupertino', 'rank': 3, 'state': 'CA', 'profit': 94680.0, 'sector': 'Technology', 'ticker': 'AAPL', 'company': 'Apple', 'revenue': 365817.0, 'website': 'www.apple.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 3, 'market_cap': 2443962.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': 0, 'num_of_employees': 154000}, '[-0.004569143,-0.011583377,0.0030612284,-0.02679872,0.0005691161,0.0010952647,-0.021247001,0.014060897,0.020572493,-0.020377923,-0.0035541381,0.009267999,-0.0112915225,-0.004682642,-0.007834669,0.0042578313,0.007484444,-0.00898263,-0.0045756283,-0.017991202,-0.06615367,0.023075955,0.002106216,0.005519291,-0.001074997,0.0046145422,0.0025196765,-0.020767063,0.019249419,-0.014852147,0.0015881744,-0.012452454,-0.01598065,0.013386388,-0.008794546,0.00396922,-0.01007222,-0.032168843,0.0022099863,-0.020987574,0.014527864,0.018704625,-0.021415628,0.009987907,-0.019742329,0.023802347,0.0050296243,-0.0038297784,0.00622947,0.010052763,0.0030466358,0.001271188,-0.0144370645,-0.03273958,-0.00059384265,-0.0060608434,-0.03761679,0.017887432,0.012718366,0.008690775,-0.02205122,0.02321864,-0.034659334,0.00092663773,-0.017640978,-0.00019386024,-0.032532036,-0.002252143,-0.012368141,0.016784871,0.048227318,0.013671758,0.022012308,0.03860261,-0.016408702,0.0038070786,-0.025164336,0.007912497,0.019962842,0.02600747,0.0036157519,-0.023179725,0.026279869,0.0033952396,0.0168627,0.011401779,-0.039744083,0.017290752,-0.0092031425,0.015863908,-0.0070304484,0.005470649,-0.007471473,0.028459048,-0.022206876,0.025735073,0.0048058694,0.025553474,-0.009851707,-0.0153709985,0.018224686,0.012037373,-0.020559521,-0.009170714,-0.025449704,0.011434207,0.008651862,-0.011401779,0.042571828,0.0049907104,-0.004475101,-0.004530229,0.030975481,-0.010617015,0.014800261,-0.025761016,-0.014229524,-0.0074909297,0.004303231,-0.026643064,0.042935025,0.04041859,0.021584254,-0.021895565,0.0013409088,-0.0020462237,-0.025021652,-0.028433105,0.014748376,-0.018951079,0.029496752,-0.011226666,0.016123334,0.012452454,0.0011220181,-0.006213256,-0.011401779,0.047293384,0.0013538802,-0.017044296,0.017939318,0.009339341,-0.015850937,0.004209189,0.0021905294,0.025929643,0.023996918,0.020377923,0.00868429,0.02978212,0.02114323,-0.011259095,-0.011213695,0.005580905,0.012283827,0.0051787943,0.0015208857,-0.0060349004,-0.0035671094,-0.003518467,-0.010266789,0.013237218,-0.021363743,0.02251819,0.008749146,0.027032204,0.009987907,0.016162248,-0.012329227,-0.00050304347,-0.0020818948,-0.02372452,-0.031157078,-0.0013271269,0.010415959,-0.0020316308,0.012828623,0.02253116,-0.0088594025,-0.0058176313,0.023192696,-0.0020640593,0.0026137184,0.026552266,-0.014034954,0.009721994,0.0009898728,0.009417169,0.036475316,-0.018289542,-0.0075752432,0.022453332,0.004899911,-0.016707044,-0.65001816,-0.02461954,0.0042708027,-0.020987574,0.01627899,0.035800807,0.019677473,-0.0030109647,0.013788499,0.010461359,-0.0075363293,0.008612948,0.03235044,0.0045723855,-0.008664833,-0.023958003,-7.283693e-06,-0.031079251,-0.027525114,0.0023591565,-0.03582675,0.01160932,-0.0080227535,-0.034503676,-0.02639661,0.010934812,0.023011098,0.007614157,-0.03891392,0.036916338,-0.00863889,0.0136977,0.012108715,0.02341321,0.04485478,0.0025893971,-0.034814987,0.019080792,0.013580958,0.02163614,0.005353907,-0.024165545,-0.0036352088,-0.021804767,0.012108715,-0.012698909,0.01136935,-0.007691985,-0.0003970436,-0.03595646,0.01787446,-0.01116181,-0.01896405,0.005684675,0.0124719115,0.0007097737,0.008405407,0.0047020987,0.029626464,0.00069193816,-0.017796634,0.03017126,-0.037071995,0.00016001322,-0.021091346,0.014527864,0.0013717157,-0.021519398,0.0023834775,0.00080503174,-0.0011163431,0.025281077,-0.014281409,-0.011764975,-0.0061321855,0.030638227,0.022959214,0.00086826686,-0.017498292,0.014748376,0.0033919967,-0.021610197,0.020767063,-0.037071995,0.016590301,0.014826204,0.016694073,-0.016097391,0.0074001304,-0.0044524013,0.044076502,0.010039791,0.0021045946,-0.03561921,-0.021662083,-0.0057138605,-0.02799208,-0.008009782,-0.016720014,0.004682642,0.01380147,0.0011041824,-0.0037843788,0.016940527,0.014761347,0.013126963,0.021895565,0.021091346,0.029730236,-0.023075955,-0.008191381,-0.03997757,-0.014540835,-0.012342199,0.007880069,-0.01186226,0.0043810587,-0.02342618,0.011810374,-0.0130361635,0.030586341,-0.020377923,0.013172362,-0.004004891,-0.019132677,0.008016268,-0.005165823,-0.034348022,-0.02360778,0.011375836,-0.0069331634,-0.020157412,0.00082408334,0.011654719,-0.0015411534,0.0182636,0.00563279,-0.017394522,0.01275728,-0.03473716,-0.0072379895,0.0029915078,0.007899526,0.013905241,-0.012205999,-0.019820157,-0.013814442,-0.0048512686,0.005292293,-0.008398921,-0.023867205,-0.006569967,-0.0029428652,0.0454774,0.02293327,0.0040859617,-0.0470599,-0.030197203,-0.019534789,-0.0013749585,-0.006158128,0.020507636,-0.016240077,-0.020767063,0.013386388,-0.021104317,-0.008697261,0.023504008,-0.0008528634,-0.016849728,0.01617522,0.016694073,-0.0046307566,0.025527531,-0.0060284147,0.01965153,-0.009702537,-0.00019152946,0.013490159,-0.020533578,0.017303724,-0.00972848,-0.0064629535,0.002346185,0.003965977,0.004643728,0.024282286,0.012523796,-0.016629215,0.010707814,-0.012193029,0.01796526,0.015941735,-0.01906782,-0.015656367,0.02035198,-0.0063202693,0.0060738144,0.025838843,0.024113659,0.00045156362,0.010415959,0.0070434194,-0.009164228,0.01777069,-0.012193029,0.001492511,0.0054155206,0.0005184469,0.027966138,0.026215011,0.0013473945,-0.010104648,-0.008158952,0.007769813,0.038265355,0.009948992,0.021311857,-0.005723589,0.009994392,0.0026607392,0.016538417,-0.00011512035,-0.027758596,-0.013477188,0.0036773656,0.02123403,0.031857528,-0.0057171034,-0.03551544,-0.007263932,0.013113991,0.0047993837,0.009021544,0.005000439,0.011285037,0.0001437991,-0.02312784,0.030716054,-0.0064532254,-0.020390894,0.027058147,0.030145317,-0.013762557,0.01359393,0.008846431,0.03144245,0.020793006,-0.012095744,0.0010612151,-0.018315485,0.0028066665,-0.016110362,0.0074390443,-0.009144771,-0.031338677,0.036164004,0.00029307045,0.01766692,0.021195116,0.007257446,-0.02251819,0.004698856,-0.00070572016,-0.00844432,0.01797823,0.016382761,-0.02570913,0.011777947,-0.012387598,0.007581729,-0.0005573608,0.039873797,0.020468723,0.020572493,0.01796526,0.0013555016,-4.957978e-05,-0.010448388,0.019210506,-0.012530282,-0.032532036,-0.011187752,0.005126909,0.014566777,0.006307298,-0.019612616,0.0026347968,-0.008243266,0.026876548,-0.004111904,0.013055621,-0.017783662,0.044543467,0.029444866,-0.017290752,0.05089941,0.012270857,0.002663982,-0.010007363,-0.009021544,-0.0028018022,-0.010921841,0.0024937338,0.0353079,-0.008548091,0.010143562,-0.015954707,0.0028374733,-0.008697261,-0.01815983,-0.015604482,0.004786412,-0.01886028,0.017926347,-0.0021743153,7.144353e-06,-0.015773108,0.020027697,0.010986697,-0.01965153,-0.014644605,-0.016914584,0.021713968,0.09007276,0.0035314383,-0.014852147,0.019703414,-0.031805646,0.002694789,-0.016110362,-0.023140812,0.010707814,0.0039984053,-0.022310648,0.0046339994,0.0183544,-0.022946242,0.027836425,0.012491369,0.0077503556,-0.0013173984,-0.02908167,-0.00859349,-0.019521818,-0.012089258,0.048227318,-0.0034892815,0.021117287,-0.009994392,0.031157078,0.022038251,-0.007821698,-0.029470809,-0.011304494,-0.013944155,-0.02281653,-0.0065959096,-0.0027920739,0.034192365,-0.0013546909,0.026150154,-0.015254257,0.008619433,0.02669495,0.015487741,-0.012342199,-0.018445197,-0.011927117,0.013373418,-0.02957458,0.014151696,-0.010104648,-0.0005046649,-0.0007081523,-0.014346265,-4.012998e-05,-0.0064888964,-0.0041832463,0.024152573,0.005425249,-0.02352995,0.005619819,-0.039147403,0.0051787943,-0.018834338,-0.0075298436,-0.001965153,0.0046339994,-0.013321532,0.010124105,-0.012497854,-0.0012979414,0.0004248103,0.03779839,-0.036760684,-0.005892216,0.009858193,0.0410931,0.008463778,-0.008976145,0.011933602,0.017809605,0.05074375,0.024788167,-0.0070823333,-0.0004734527,-0.02044278,-0.0075363293,0.014138725,-0.0136977,0.019794215,0.00093069125,0.008210837,0.02144157,-0.02819962,0.026111241,0.024087718,-0.016149277,0.020468723,0.004342145,-0.00024645482,-0.016434645,-0.023672635,-0.009462568,-0.0049517965,-0.011239638,-0.020429809,-0.0013936048,0.020105526,-0.0033336258,0.004958282,-0.016512474,0.013879298,0.01795229,-0.013918213,0.015708253,0.003576838,-0.017550178,0.016019564,-0.00858052,-0.0051398803,-0.0054965913,0.0048123547,-0.0026137184,-0.024969766,0.019223478,0.011077496,-0.027499171,0.024788167,-0.009715509,-0.01195306,-0.020494664,-0.0063851257,0.009358798,0.014411122,-0.014255466,-0.015760139,-0.0052793217,-0.012063315,0.0046015712,0.020909747,-0.007075848,-0.034114536,-0.0084897205,0.013373418,0.0060576005,-0.003228234,-0.010487301,-0.030716054,0.013003735,0.022064192,-0.00868429,0.006605638,-0.028018022,-0.0056717037,-0.01856194,0.011135867,0.008509178,0.0010604043,-0.014112782,-0.0183544,0.038732324,0.047241498,-0.002843959,0.0041281185,0.02442497,0.004338902,0.0019797457,0.0008593491,-0.0016911342,-0.016642187,-0.007432559,0.014060897,0.012737824,0.017044296,0.016486531,-0.0031244636,-0.0142165525,0.001027976,0.0064629535,-0.017939318,-0.010714299,-0.0013660408,-0.01965153,-0.0066153663,-0.021999337,0.009397712,-0.012043859,-0.013016706,0.032168843,0.0183544,0.010707814,-0.011187752,0.035178185,-0.00271911,0.009741452,0.007867098,0.022686815,-0.043739248,0.008301636,-0.036968224,-0.010928326,0.0004787223,0.012776737,-0.0040924475,-0.007990325,-0.022505218,-0.0040665045,0.033595685,-0.029367039,-0.010480816,0.009968449,-0.031546216,0.00016862698,-0.015396941,-0.021000545,-0.009799822,0.021000545,0.026720893,-0.010513244,0.0045432,-0.021713968,-0.015889851,0.015734196,-0.0018613825,0.03432208,-0.01707024,0.021675054,0.016551388,0.0056263045,-0.016745957,-0.026215011,-0.019923927,0.0048804544,0.0069720773,0.023737492,0.0012136279,-0.023737492,0.012290313,-0.016032536,-0.0048869397,-0.0027823453,-0.0007823319,0.014268437,0.008184895,-0.03305089,-0.018393314,-0.003596295,0.029055728,-0.004173518,0.0039919196,-0.0052112225,-0.02382829,-0.015046716,0.0057527744,-0.017628007,0.0027434314,0.016486531,-0.021623168,0.007951411,-0.025462676,0.0005881677,0.0077049565,-0.022336591,0.0044426727,-0.033024948,0.019132677,0.0012606488,-0.0029898863,0.0053863353,-0.0028553088,0.013386388,0.030119374,-0.012997249,-0.018912164,-0.0032233698,0.00025902077,-0.0015257499,-0.02341321,-0.01489106,-0.0036773656,0.0003518467,-0.012562711,0.01607145,0.009494997,0.0006262709,-0.012692424,0.013269647,-0.022946242,-0.004047048,-0.00411839,0.020805975,0.0020429809,-0.024009889,0.001749505,0.011375836,0.0059603155,0.028926015,-0.005120423,0.00065383496,0.01886028,-0.019495875,-0.0031390563,0.006300812,0.0025666973,0.007724413,0.016745957,-0.024982737,-0.012912936,0.024243373,-0.012919421,-0.019340219,-0.017939318,-0.004303231,0.004287017,-0.018717596,0.0018970537,-0.014346265,0.0077049565,0.0023526708,-0.011739032,-0.019314276,-0.0006680223,-0.014527864,-0.0035703522,0.014307352,-0.012413541,-0.004997196,-0.009112343,0.019923927,-0.015267228,-0.036241833,-0.03377728,-0.023581836,0.01429438,0.0021856653,0.015799051,-0.014852147,0.016564358,-0.024736281,0.0012403813,-0.007523358,0.0013498266,-0.01627899,0.009053973,0.04028888,0.0057171034,0.0021905294,0.012186543,-0.005820874,-0.013944155,-0.04158601,-0.004364845,0.004248103,0.03663097,0.019145649,0.018484112,-0.035281956,0.0045561716,-0.061899077,-0.030897653,0.016460588,0.0028358519,5.786419e-05,0.030430686,0.005785203,0.01081807,0.0088594025,0.012718366,-0.034425847,-0.018600853,0.015409913,-0.004342145,0.00853512,-0.031779703,-0.015487741,-0.013827413,0.017887432,0.001379012,0.0018808395,0.020196324,-0.008723204,-0.018328456,0.008561063,0.020909747,-0.0034665817,0.014878089,0.01707024,-0.013840385,-0.0005257433,0.013023192,-0.013529073,-0.027628884,0.024762224,0.007659557,0.01329559,0.0092290845,0.024801139,-0.0004819651,-0.011492578,-0.0054187635,-3.3188305e-06,-0.020274153,-0.02054655,0.019508846,-0.002216472,-0.033102777,0.0037097938,0.015539626,-0.002788831,0.008619433,-0.0024775197,-0.029159497,-0.010338131,-0.0055257767,0.02809585,-0.02918544,-0.012017916,-0.0064694392,0.00090312725,-0.022803558,0.0044102445,-0.0054220064,0.026526323,0.009443112,-0.0069915345,0.022946242,-0.016304933,0.004228646,0.020364951,-0.02014444,0.0041086613,0.010798613,-0.029548638,-0.01886028,0.0020381166,-0.001843547,-0.017628007,0.011693633,0.21771042,0.0007644964,0.014800261,0.030638227,-0.013814442,0.021908537,0.016732985,0.009209628,0.0033174118,0.012783223,-0.005425249,0.019820157,-0.0037324936,-0.0004848026,0.0058857305,-0.046100024,-0.015526654,-0.0035087385,-0.0168627,0.042909082,0.0025050836,-0.019106735,0.0012014674,-0.0021726938,0.019729357,0.013159391,-0.033517856,0.0036384517,0.026954375,0.021973394,-0.013516102,0.0042708027,-0.0115379775,0.0137755275,-0.021610197,-0.019340219,-0.0009436626,0.017420465,0.0137495855,0.0071990755,-0.009112343,0.00051236665,-0.013334503,-0.028744416,0.014865118,0.009650652,-0.005201494,-0.016564358,0.008256237,-0.009572824,-0.046982072,0.010759699,0.014346265,0.0041281185,-0.0062748697,0.0066348235,-0.015824994,0.028069908,0.0011390429,-0.0057138605,-0.012426512,0.026850605,-0.014112782,0.031520277,-0.019716386,1.4858733e-05,-0.023283496,0.0017576121,-0.006012201,0.003106628,-0.0077179275,0.007225018,-0.019405074,0.006300812,-0.0035054956,-0.028303392,0.022998126,0.032402325,0.0047474983,0.033517856,-0.0072769034,0.014735404,-0.021454541,0.0075687575,-0.006197042,-0.0012452455,0.025812902,-0.013029678,-0.0116612045,-0.010422445,-0.0059570726,-0.009598767,-0.001141475,-0.018535998,0.0030320429,0.020105526,-0.019703414,-0.00017987554,0.004335659,0.0056814323,0.003366054,0.03203913,0.029237326,0.0056749466,-0.010402988,-0.0022586288,0.015293171,0.034348022,0.014748376,-0.008347036,-0.020170381,-0.012731338,0.021921508,-0.024191488,0.014346265,0.025825871,-0.017550178,-0.037149824,0.0011171538,-0.005084752,0.015228314,-0.005519291,-0.0051723085,0.0060349004,-0.0054868627,-0.020235239,-0.00036725012,0.026344724,0.003651423,-0.03175376,0.005402549,-0.014463007,-0.009851707,-0.011589862,0.005863031,0.007549301,0.021272942,-0.02877036,-0.014748376,-0.0040859617,-0.00719259,0.01847114,0.01166769,0.008619433,0.014333294,0.006693194,-0.006375397,0.010831041,0.012575682,-0.016953498,-0.019521818,-0.0021483726,-0.008671318,-0.023309438,0.0059408587,0.004215675,-0.020793006,0.0054155206,0.002197015,0.001918132,-0.023996918,-0.010552159,0.0273954,0.018574912,-0.020870833,-0.0028747658,-0.16312715,0.02770671,0.0056684613,0.014320322,0.038576666,-0.0055873906,-0.0028763872,0.00049655786,0.014929974,0.004773441,0.026539294,-0.032687694,-0.032583922,-0.020170381,0.034607448,0.0084897205,0.003173106,0.03582675,0.029211383,0.010331646,0.035852693,-0.009987907,-0.0034309106,-0.002918544,0.014333294,0.021298885,-0.005898702,-0.009021544,0.009060458,-0.01568231,0.006693194,-0.02242739,0.04350576,0.01359393,0.006725623,-0.0303788,-0.017926347,-0.018977022,0.0014090082,0.025034621,0.02481411,0.022193907,0.002393206,0.022712758,0.013023192,0.011628777,0.01136935,-0.010143562,0.014852147,-0.0055679334,0.022297677,-0.048875883,-0.010286246,0.009644167,0.0022294433,-0.00093150197,-0.012238428,-0.0019359676,0.0012476776,-0.028173678,-0.0034698246,-0.00053668785,0.007672528,-0.021882595,-0.0030061004,-0.007464987,0.0004848026,-0.0012047101,-0.026331753,0.013451246,0.00083259575,-0.00090393797,0.011576891,-0.02263493,-0.0006664009,-0.012205999,-0.02173991,0.00073125743,-0.009572824,0.00334984,0.008061667,-0.0013725264,-0.010999668,0.010351103,-0.023880176,-0.013477188,-0.0123486845,0.009559853,-0.030508514,-0.0077892696,0.029367039,-0.031779703,-0.023478065,-0.0023948275,0.013263161,0.036890395,0.024736281,-0.028900072,-0.00878806,-0.005820874,0.019119706,0.0044621294,-0.005619819,0.015474769,0.03938089,0.010766185,-0.0019570459,-0.0004248103,0.033024948,-0.0034665817,-0.017420465,0.016123334,0.036086176,0.026189068,-0.021675054,0.009300427,-0.0031552704,-0.0048966683,-0.0029396224,-0.0007827373,0.053856865,0.01111641,-0.0034179394,0.00503611,-0.029003842,-0.010454874,-0.10122808,-0.04010728,0.017355608,0.002576426,-0.020403866,0.027213803,0.005726832,0.02175288,-0.0069591063,0.023205668,0.020287124,-0.027836425,-0.023192696,-0.013347475,0.0053603924,-0.005120423,-0.024541713,-0.009812794,-0.05489457,0.009585796,-0.023542922,-0.027084088,-0.0029039513,-0.0055614477,-0.006197042,0.0046729133,-0.03203913,0.008814003,0.01886028,0.022090135,0.0039562485,0.003631966,0.0096701095,-0.028926015,0.020027697,0.0038589637,-0.016655158,-0.006326755,0.03642343,-0.023841262,-0.011693633,-0.005405792,0.0077892696,-0.051859286,0.0030109647,-0.011531492,0.008872374,0.007225018,0.007153676,-0.009138286,-0.024386058,0.0072379895,-0.029367039,-0.025151365,-0.005467406,-0.005901945,-0.009825765,-0.0060284147,-0.011570406,-0.012731338,-0.006514839,-0.0114406925,-0.025086507,0.0022634931,-0.0031990486,-0.0049096397,-0.0043843016,0.018795423,0.021454541,-0.036189947,0.0020348737,0.0014049547,-0.015059687,0.032506093,-0.01796526,-0.0019992027,-0.018691653,-0.0056392755,0.010915355,-0.012783223,-0.0018565183,-0.03346597,0.004157304,-0.027836425,0.009352312,0.0048772115,-0.015422883,0.002556969,0.005087995,-0.023555893,0.018107945,0.023050012,0.020416837,0.0183544,-0.0010085191,-0.02570913,-0.0077957553,-0.009566339,0.018886223,0.009897107,0.006154885,0.0061808275,-0.07627128,0.019586673,-0.017913375,0.0042189173,0.010085191,-0.0023737492,0.012452454,-0.017615035,0.009864679,-0.0019635316,-0.034685273,0.0074260733,-0.006553753,0.006086786,-0.019781243,-0.010941298,0.008969659,0.024411999,0.0043875445,0.0062229843,0.006339726,-0.008775089,0.008807518,0.0060608434,-0.009352312,0.016434645,-0.02541079,0.0034179394,-0.017498292,-0.025423761,0.008314608,0.0023948275,-0.006177585,0.029704293,-0.00049898995,-0.008969659,0.010655928,0.010688357,0.00396922,0.01339936,0.0056360327,-0.037149824,0.013334503,-0.030793883,-0.019443989,-0.01956073,0.003777893,-0.01718698,0.014333294,-0.005859788,0.014424093,0.013516102,-0.020559521,-0.015708253,-0.006719137,-0.028407162,0.026448494,-0.026059356,0.0037941074,-0.012848079,0.012024402,0.017485322,0.008029239,-0.0029963718,0.01854897,0.0053409357,-0.02809585,-0.019469932,0.026876548,0.015409913,0.011434207,-0.005577662,0.015409913,-0.010526216,0.0135031305,0.00047547946,-0.0019359676,-0.006472682,0.0025958829,0.012108715,0.0017997689,0.00055573945,-0.02284247,0.021960422,0.024165545,-0.0033790255,-0.046203796,-0.009845222,-0.0129388785,-0.0008479992,-0.013107506,0.0059797727,-0.014488949,-0.01389227,0.0101630185,-0.007413102,-0.01051973,-0.004685885,-0.013464216,0.018315485,0.0016505988,-0.0017640977,-0.009157742,-0.037383307,-0.022219848,-0.0047637126,-0.008509178,-0.010999668,-0.02341321,0.029730236,0.0012557846,0.019820157,0.018237658,0.0018143615,-0.036553144,0.00021706671,-0.0062359557,-0.0017657191,-0.007205561,0.015630424,0.006440254,0.0021127015,0.020079583,-0.02372452,0.00637864,0.006437011,-0.013542044,-0.028018022,-0.0020575735,0.0014535971,-0.0087361755,-0.011739032,0.0068229074,-0.00859349,-0.015435855,-0.0018678682,0.0106689,0.012439483,0.0013003735,0.04524392,0.0024434698,0.0024661697,-0.008113553,0.012394084,0.03128679,0.011252609,0.0085156625,-0.027732654,-0.015111572,0.0001005783,0.019599644,-0.023867205,0.011388808,-0.008003296,0.025955586,-0.011427721,0.0009185307,-0.029003842,-0.0028066665,0.01156392,-0.0013222626,0.020040669,0.0006809936,-0.026227983,-0.005934373,0.012465426,0.02521622,-0.0111942375,-0.025138393,0.022116078,0.0056263045,-0.038784206,-0.021156201,0.025319992,0.011285037,-0.01687567,-0.005188523,0.022803558,0.017796634,-0.0151504865,0.015539626,-0.021156201,-0.003208777,-0.021182144,-0.0006368101,-0.020689234,-0.0032801193,0.008742661]']\n",
"HP\n",
"['9928f21e-8775-5504-a46b-4066026b9b4c', \"HP (Hewlett-Packard) is a multinational technology company known for its wide range of hardware, software, and services. The company's core operations consist of developing and manufacturing personal computers, printers, monitors, and other technology products for consumers, businesses, and governments worldwide. HP is also a leader in the field of imaging and printing solutions, offering innovative products and services for both home and office use. Additionally, HP provides enterprise solutions, including data storage, networking, and cybersecurity products, as well as consulting services to help businesses optimize their IT infrastructure. Overall, HP's goal is to empower people to create, interact, and inspire through technology.\", {'ceo': 'Enrique J. Lores', 'city': 'Palo Alto', 'rank': 59, 'state': 'CA', 'profit': 6503.0, 'sector': 'Technology', 'ticker': 'HPQ', 'company': 'HP', 'revenue': 63487.0, 'website': 'www.hp.com', 'newcomer': 'no', 'ceo_woman': 'no', 'prev_rank': 56, 'market_cap': 33951.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -3, 'num_of_employees': 51000}, '[3.0073928e-05,0.0027077,0.003763352,-0.012253219,-0.004315098,0.01895709,-0.010511871,0.003945141,-0.0018354314,-0.030515045,0.006512513,0.018625403,-0.019008117,-0.0057502743,-0.0058969813,0.0037665414,0.012750748,-0.030821215,0.018383019,-0.03630678,-0.04110346,0.000409424,-0.006368995,0.027504364,-0.014122139,0.01069685,0.014300738,-0.020232802,0.005676921,-0.0058300067,-0.0035305347,-0.013114326,-0.010869071,-0.001682346,-0.015040651,0.0056290817,-0.009950558,-0.0062509915,0.0055015106,-0.025947994,0.014275224,0.0069526336,-0.00052423816,0.009516816,-0.019224988,0.0031988493,0.009746444,-0.009752823,-0.0025817233,0.029953731,0.003954709,0.011698284,-0.015193737,0.002326581,0.018064091,0.0013705937,-0.030464016,0.022707684,0.018013062,-0.013828725,-0.0026391305,0.020628272,-0.019454617,-0.010199322,-0.032785814,-0.014390038,-0.026483793,0.008929988,-0.019582188,-0.00045686457,0.037888665,0.010913721,-0.007852011,0.028882133,-0.009504058,0.009523194,-0.009242537,-0.0012852805,-0.013076054,0.0041939053,0.019977659,-0.034495268,-0.0025370733,-0.03398498,0.018714704,-0.0003530136,-0.01810236,0.010594793,0.0014495284,-0.0017700512,0.0007052299,-0.005514268,-0.024799854,0.014441066,0.0045829974,0.017081792,0.021559542,0.025501495,-0.008317646,-0.015589207,-0.0047647865,0.014275224,-0.033653297,-0.0083367815,-0.024123725,0.013331196,-0.00767979,-0.00763514,0.035515837,-0.0024493681,-0.0115707135,0.00812629,0.0124573335,-0.010499114,0.0125785265,-0.01180672,-0.0006542014,-0.018561618,0.01868919,-0.0074310256,0.026738936,0.02832082,0.010460843,-0.005699246,0.027810534,0.027147165,-0.015767807,-0.030642616,0.03324507,0.008266618,-0.0012214947,-0.016303606,0.025399437,-0.015474394,-0.0069079837,-0.012610419,-0.0013394982,0.01802582,-0.027147165,-0.036332294,0.024685038,0.025399437,-0.023473112,0.000536198,-0.016227065,0.010971128,0.016852163,-0.007137612,-0.010715986,0.028193248,0.008585545,0.007571354,-0.009663523,0.011060428,0.013088811,-0.011519684,-0.020322101,-0.011213514,-0.00071041245,-0.009306324,-0.021521272,0.009159616,-0.0072013973,0.015767807,0.0060341205,0.010594793,0.0064774305,0.02508051,-0.0012047511,0.003165362,-0.00084914616,0.015538179,-0.034240127,-0.011532442,0.009650766,-0.010141915,-0.00870036,0.02765745,-0.021801928,-0.013076054,0.026062809,0.005960767,-0.0074948114,0.01287194,-0.009969694,-0.014900323,0.01398181,0.005759842,0.026458278,-0.004771165,0.005131554,0.03977672,-0.001147344,-0.0068250624,-0.65888005,-0.030642616,-0.010352408,-0.028371848,-0.023383811,0.022006042,0.040618688,0.016609779,0.004895547,0.01731142,-0.003581563,-0.0035082097,0.008496245,-0.016125007,-0.017005248,-0.025106024,0.0046754866,-0.017477263,-0.015959164,-0.0015061381,-0.0033264207,0.00417158,-0.01779619,-0.034495268,0.0057088137,0.011711041,0.015219251,0.019046389,-0.006512513,0.045338824,0.016239822,0.011704663,-0.0039228164,-0.012540255,0.035822008,0.011787584,-0.02325624,0.02418751,0.004461805,0.035847522,-0.018752975,-0.009350973,0.026687907,0.000634667,0.0026726178,-0.018217176,0.011589848,-0.010479979,-0.011959805,-0.015538179,0.017183848,-0.028346334,0.012884697,-0.017285906,-0.015040651,0.0021798739,0.007845633,-0.015869865,-0.006184017,-0.026866507,0.006550784,0.01962046,-0.010779771,-0.014249709,-0.009784715,0.0012844831,0.005973524,-0.029366903,-0.014390038,-0.009280809,-0.010818043,0.011455899,0.0025928859,-0.02232497,0.0062159095,0.03781212,0.019122932,-0.025169808,0.010205701,0.005539782,0.0045383475,-0.009567845,0.013216383,-0.039291948,0.0212151,0.00077858334,-0.006222288,-0.0036963772,0.025182566,0.010779771,0.025845937,-0.0034858848,0.006139367,-0.031484585,-0.02773399,-0.007354483,-0.016048465,-0.03413807,-0.030515045,0.013815967,-0.004589376,-0.026815478,0.015129951,0.018931575,0.01877849,0.0011513307,0.019977659,0.032428615,0.024557468,-0.023906853,0.019594945,-0.015525422,-0.014236952,0.007966825,0.03000476,-0.029086247,0.03538827,-0.024838123,-0.002902246,-0.023473112,0.019492889,-0.005357993,0.012642312,-0.004372505,-0.00417158,0.01899536,-0.0008276185,-0.03214796,-0.015665751,0.0005357993,0.0044299117,-0.03847549,0.009440273,0.0039164377,-0.0023552843,0.012234083,0.016239822,-0.020717572,0.016711835,-0.03528621,-0.022656655,-0.015053408,-0.010148293,0.00013235518,0.0071886405,-0.02934139,-0.002294688,-0.006601813,0.003839895,-0.007647897,-0.0146834515,-0.018319232,-0.009759202,0.050900932,0.021189585,-0.008221967,-0.012878318,-0.011022157,-0.013458768,-0.012368034,-0.010881828,-0.0005629082,-0.022044314,-8.655909e-05,0.0036166452,-0.046486966,0.0026486982,0.039827745,0.01042895,-0.04345077,0.019403588,-0.0067166267,-0.010224836,0.019505646,-0.022069829,0.025909722,0.013599096,0.0035847523,0.015040651,-0.007571354,0.008158182,0.007118476,-0.014275224,-0.00080290163,0.024914667,-0.009580602,0.026509307,0.012903833,0.008617438,-0.008324024,-0.0020921687,0.019735273,0.008713117,-0.0077308184,-0.025501495,0.0072332905,0.010773392,0.005632271,0.023855826,0.003222769,0.014466581,0.011876884,-0.0105629,-0.011506927,0.0114495205,-0.032275528,0.002543452,-0.0027236464,0.015538179,0.0017955655,0.0076542753,-0.030821215,-0.023600683,-0.01974803,-0.003514588,0.030948788,0.01278264,0.018855032,-0.017719647,0.0059894705,0.018472318,-0.0038941128,0.026483793,-0.021151315,0.011666392,0.010116401,0.02454471,0.018497832,0.005756653,-0.01695422,-0.0099888295,0.03378087,0.00039666687,0.008151803,0.0016632103,0.021546785,0.020628272,-0.044369284,0.045925654,0.013305683,-0.0075203255,0.017069034,0.017732404,-0.027631935,-0.02214637,-0.0039834124,0.013497039,-0.00435018,-0.015423365,0.021368185,-0.006139367,0.017987547,0.00022942893,0.0029819782,0.031943843,-0.011277299,0.029137276,0.0043119085,0.029443447,0.01899536,-0.0049912254,-0.00090256665,0.024506439,-0.0066911126,-0.008043367,-0.016405664,0.029545503,-0.0050741467,-0.0011640877,-0.0054887533,0.0028113516,-0.0063083987,0.020092472,-0.00479349,0.007915797,0.024748825,-0.00013783676,-0.0044299117,-0.0018848653,0.025858695,-0.030999815,-0.029928217,0.00024118941,0.014479338,0.012246841,-0.00621272,-0.017898247,0.009248916,0.0036166452,0.007628761,0.019199474,0.013254654,0.009076695,0.023524141,0.026738936,-0.0069845263,0.03714875,0.016584264,0.020169016,0.0042640693,-0.015040651,-0.007010041,-0.016826648,-0.030872244,0.017324178,-0.007265183,0.000104847626,-0.020641029,0.0051825824,-0.0035528596,0.006627327,-0.011092321,0.0050582006,-0.01704352,0.013063297,0.01202997,-0.020896172,0.02241427,0.023638954,0.017183848,-0.005332479,-0.014466581,-0.015704023,0.009223402,0.0862892,0.008177318,-0.032632727,0.005702435,-0.02969859,-0.0023536896,-0.021380942,-0.012380791,0.006365806,-0.00011870107,0.016597021,0.006321156,-0.00046124985,-0.014670695,-0.01731142,0.011079564,0.014185924,-0.011347463,-0.0032339315,-0.013956295,-0.008642953,-0.0025498306,0.024570225,-0.0027077,0.0071886405,-0.009242537,0.03656192,0.00759049,0.008304889,-0.011959805,-0.024965696,-0.00754584,-0.027810534,-0.009127724,-0.039674662,0.010135536,0.0020969526,0.009331837,-0.0056641637,-0.007373619,-0.002081006,0.02809119,0.0017525102,-0.004563862,-0.013943539,0.0028129462,0.007877525,0.027223706,-0.0073353476,-0.008974638,0.01632912,-0.00013235518,0.003076062,-0.0022468488,-0.006601813,-0.000735528,0.019964902,-0.028550448,-0.010805286,-0.023001097,-0.008878959,-0.02259287,0.010154672,-0.024774339,0.0062063416,-0.012814533,-0.0090320455,-0.021342672,-0.01518098,0.03990429,0.019518403,-0.04590014,-0.017502777,0.006844198,0.021368185,5.471611e-05,-0.012049105,0.014530366,0.004509644,0.017770676,0.008017854,-0.022822497,-0.004940197,-0.045211256,0.005023118,0.007883904,-0.030387474,-0.0063243452,-0.005405832,0.018740218,0.0065252697,-0.027810534,0.031280473,0.009835744,-0.016086735,0.016035708,0.01527028,-0.013101568,0.0026869697,-0.004745651,-0.008426081,-0.013433253,-0.018217176,-0.042889457,0.020156259,0.03426564,-0.010103644,0.002588102,-0.0012151162,-0.007966825,0.03786315,-0.02295007,0.018204419,0.007660654,-0.019161204,0.0017142388,-0.0034125312,-0.0055716746,0.0017875923,0.0038207592,-0.004681865,-0.016239822,0.019237746,-0.010409814,-0.03054056,0.017094549,0.014976866,-0.008139046,-0.03457181,-0.018383019,-0.0016440746,0.015984679,-0.0053101536,0.0014120544,-0.026560336,-0.012100134,-0.011711041,-0.0057056244,-0.010275865,-0.031612158,0.0018131065,0.014849295,0.006164881,0.011290057,-0.019607702,-0.025220837,-0.014096624,0.016775621,0.004681865,0.029545503,0.0074692974,0.0027682963,-0.009701794,0.005938442,-0.0049114935,-0.017349692,-0.014045595,-0.013305683,0.024506439,0.035056584,-0.010792528,0.0058076815,-0.013930782,0.0037697307,0.008515381,-0.0029771943,-0.015512665,-0.02441714,-0.024952939,0.012973997,0.01845956,0.011162485,0.013548068,-0.0015173006,0.010837179,0.015448879,0.006050067,-0.017094549,-0.016010193,-0.021852957,-0.009976072,-0.011519684,-0.020258317,0.03600061,-0.040593173,-0.018714704,0.0056641637,0.014504852,0.0048030578,-0.0047998684,-0.0035337238,0.001062828,0.011130592,0.010888207,0.0067804125,-0.014900323,-0.0015691265,-0.04620631,0.007692547,-0.0006187206,0.019454617,0.013241896,-0.0098485015,-0.0125274975,-0.0011593038,0.02826979,0.0049242508,0.0032100119,0.00949768,-0.026866507,-0.008866202,-0.019875603,0.00865571,-0.01185137,-0.012285112,-0.005214475,-0.006448727,0.0010668146,-0.015665751,-0.03066813,0.025093267,-0.007118476,0.036026124,-0.020347616,0.035005555,0.04345077,-0.006774034,-0.01815339,-0.008751389,-0.0025721556,0.013764938,0.013241896,0.019148447,-0.007284319,-0.032913383,-0.0042481227,-0.024825366,0.006375374,-0.029443447,0.005485564,0.00381757,-0.033091985,-0.01571678,0.0072906977,-0.021699872,0.011372978,0.0048381398,0.024302324,-0.019556673,-0.017209362,-0.01890606,0.006222288,-0.017094549,-0.0039164377,0.0011760475,-0.013292925,-0.006410456,-0.0019103796,0.0019948955,0.011921534,-0.01992663,0.0064551057,-0.025845937,-0.0033136634,0.017413476,-0.012138405,0.008043367,0.011283678,0.00083319977,0.01851059,-0.00030039044,-0.0147344805,0.0035401024,0.014466581,0.018982604,-0.015767807,-0.00781374,0.009535952,-0.006394509,-0.010779771,0.013280168,0.029979246,0.004691433,-0.0060819597,-0.012910211,-0.014772751,-0.008955502,0.0065444056,0.0011050861,-0.0026949428,-0.031050844,-0.0049657114,-0.0049912254,0.003954709,0.033525728,0.00041061998,-0.014377281,0.027325764,0.0032482832,0.01260404,-0.0018497832,0.009446652,-0.022171885,0.016533235,-0.0110094,-0.009555087,0.027019592,-0.00030298173,-0.01211927,-0.021138558,-0.01686492,0.009459409,-0.004697812,0.013139839,-0.016928706,0.008674846,0.012667826,-0.0029309497,-0.0076223826,0.010971128,0.001349066,0.01371391,0.004806247,-0.019594945,-0.007864768,-0.019148447,0.0066592195,-0.011915156,-0.020028688,-0.033806384,-0.03005579,0.009472166,0.0016632103,0.0077563324,-0.013407739,-0.006330724,-0.020870658,-0.0060915276,-0.003310474,0.014211439,-0.0054377248,0.019990416,0.021164073,0.0025801286,-0.01491308,0.010346029,-0.0040854695,-0.027555391,-0.026254166,0.00155318,0.004407587,0.041282058,0.012450955,-0.00032690135,-0.030897759,-0.0024334218,-0.03959812,-0.025692852,0.03031093,0.00058164523,0.022618385,0.048681192,-0.0026774018,0.017783433,0.00625737,0.018880546,-0.007660654,-0.024787096,0.0215723,-0.009433894,0.005396264,-0.009644387,-0.021508515,-0.0044490476,0.012808154,0.00058124657,-0.007934933,0.008572789,0.0034922631,-0.023154184,-0.011506927,0.027555391,0.024940182,0.008304889,0.021240614,-0.00781374,-0.0051857717,-0.0016392907,-0.012176677,-0.031331502,0.023268998,0.02730025,-0.014236952,0.025016723,-0.019365316,-0.00088343094,0.010269486,-0.0026742124,0.0137266675,-0.011251785,-0.024174754,0.017962033,0.008107154,-0.008209211,-0.0032323368,0.019773545,0.005144311,-0.0029437067,0.0027108893,-0.045696024,-0.007297076,-0.018497832,0.022720441,-0.02916279,-0.025348408,0.0064519164,-0.0008666872,-0.008304889,0.03199487,-0.018982604,0.025986265,-0.0012063457,-0.024685038,0.0057088137,0.0020602758,-0.009759202,0.0019853278,-0.008260239,0.013152597,0.018791247,-0.035515837,-0.029749617,0.004181148,0.014007324,-0.0036931878,0.00781374,0.19809265,0.01575505,-0.0012597662,0.03523518,0.014020082,0.021648843,0.009134102,-0.005983092,0.031331502,0.013076054,-0.008904474,0.0004325463,-0.01731142,0.0059639565,0.023473112,-0.03395947,-0.013930782,-0.016099492,-0.008572789,0.03457181,0.006831441,-0.014900323,0.022886284,-0.02316694,0.01863816,0.0070610694,-0.021508515,0.00021966176,0.03719978,0.013254654,-0.004496887,-0.013943539,0.007073826,0.0099888295,0.016762864,0.012234083,0.011411249,0.009395624,-0.0021511703,0.0091022095,-0.0035624274,0.009325459,-0.011283678,-0.013752182,0.017719647,0.012163919,-0.0032642295,-0.011481414,-0.0014080678,0.0059894705,-0.035490323,-0.016278092,0.017336935,0.019224988,-0.0074246475,0.019122932,-0.007807361,0.01863816,-0.012138405,-0.006356238,0.011054049,0.025373923,-0.0049465755,-0.00083160517,-0.005514268,0.014657938,-0.010148293,0.011079564,-0.0046053226,0.0052846395,-0.0029086247,0.00040364344,-0.008094396,0.013969053,-0.005520646,-0.019212231,0.0002589298,0.03559238,0.013063297,0.015538179,0.018765733,-0.014415552,-0.021227857,0.006856955,-0.026994077,-0.019760787,0.0040950375,-0.015538179,-0.0032466885,0.0038781662,0.004426723,0.013446011,-0.013828725,-0.007954068,0.027887078,0.035005555,-0.021852957,0.0052655037,0.0017509155,0.0072013973,-0.018561618,0.04883428,-0.012132026,-0.011302814,0.0015204899,-0.007354483,0.010575658,0.023804797,0.0024844503,-0.014198681,-0.024825366,-0.022427028,0.035541352,-0.021865714,0.00470419,0.027631935,-0.008151803,-0.022924555,-0.010314136,-0.0014901918,0.022720441,-0.0017317799,0.0073672403,0.009886772,-0.0007622383,0.007029176,0.0016568317,0.036153696,0.004905115,-0.017719647,-0.00037653453,-0.013382225,0.0064072665,-0.028780077,-0.011621742,0.0031637673,-0.0144920945,0.0111369705,-0.03413807,0.01021208,-0.026917536,0.005475996,0.0038717878,0.013841482,0.0075522186,-0.0018481886,0.0012111296,0.0048540863,0.01686492,-0.014390038,-0.034775924,0.0022532274,-0.011060428,-0.01389251,0.010747879,-0.012623176,-0.017477263,-0.010677714,0.017834462,0.0024876394,-0.033398155,-0.009931423,0.018931575,0.020449672,-0.0077690897,0.012897454,-0.15910688,0.007418269,-8.232333e-05,0.00086030865,0.017681377,0.020449672,-0.0036166452,0.00084436225,0.02214637,0.008221967,0.0071567474,-0.020028688,-0.032785814,-0.042991515,0.028575962,0.010735122,0.0013211599,0.037837636,0.025054995,0.0015611533,0.028550448,-0.0022213345,-0.008783281,-0.015818836,0.013139839,0.0011712636,-0.01491308,0.02042416,-0.005176204,2.3608158e-05,0.024787096,-0.01611225,0.022656655,0.016367393,0.0043597477,-0.045466397,-0.0028878944,-0.017362447,0.007718061,0.0136756385,0.046002194,0.014045595,0.017413476,0.02862699,0.0036421595,-0.00750119,0.019633217,-0.009618873,0.009325459,-0.014134895,0.03949606,-0.031969357,0.018178904,0.004752029,0.01851059,-0.020896172,-0.008247482,0.01668632,-0.0038494628,-0.014581395,-0.01571678,-0.008081639,-0.019199474,-0.0017828083,0.003342367,-0.013165354,-0.0002968025,-0.0030250335,-0.033194043,0.024965696,0.0101100225,-0.032938898,0.019224988,-0.016163278,0.0035113988,-0.0036676738,-0.0038941128,0.015959164,-0.0113793565,0.0021782792,0.017413476,-0.011876884,0.0096762795,-0.017451748,-0.015652994,-0.014619666,-0.012910211,0.0064551057,-0.0144920945,-0.0013004295,0.04074626,-0.0542433,-0.03000476,-0.012597661,0.0046021333,0.0206793,0.0013984999,-0.0025928859,0.012559391,0.002312229,0.007762711,0.02552701,-0.009689037,-0.0046276473,0.031127388,0.009127724,0.010173808,0.01913569,0.03173973,-0.006231856,-0.013241896,0.016533235,0.040184945,0.019837331,-0.02042416,0.005632271,0.0032450939,-0.016622536,0.0002232497,-0.01162812,0.04939559,0.0019582189,-0.012814533,0.0013586339,-0.007903039,-0.022886284,-0.09817884,-0.032326557,0.007284319,-0.0030377905,-0.0008371864,0.032964412,0.0054791854,0.0024924234,0.0007219736,0.019901115,0.015652994,-0.015767807,-0.027325764,-0.031484585,0.028218763,-0.004767976,-0.022350485,0.007871146,-0.028754562,0.006448727,-0.020296587,-0.016711835,0.013650125,-0.016469449,-0.0029405176,-0.013292925,-0.027198192,-0.0094147585,0.034495268,0.00044012084,0.0054919426,-0.013292925,-0.00048277748,-0.017158335,0.027453335,0.009191509,-0.028550448,-0.0003538109,0.022286698,-0.009956936,-0.003750595,-0.018076848,0.0012374412,-0.053375814,0.014594152,0.00745654,-0.019556673,-0.014020082,-0.004225798,-0.0057056244,-0.040542144,0.0005808479,-0.044063114,-0.002730025,-0.0023106344,-0.0048381398,-0.0009759201,0.021814685,-0.017821705,0.017107306,-0.017859977,0.013815967,-0.021891229,-0.004270448,-0.016609779,0.022273941,-0.0077882255,-0.0006841009,0.053477872,-0.035209667,0.002521127,-0.0035209667,-0.025246352,0.01025035,-0.0104927365,0.030821215,-0.0025179377,0.0029405176,0.023932368,0.0041939053,-0.020003174,-0.0125274975,0.01638015,-0.007979582,-0.005951199,0.006856955,0.0025593983,0.01300589,0.0046212687,-0.023396568,0.025169808,0.02676445,0.04362937,0.0019964902,0.00931908,-0.0073672403,-0.004701001,0.0019247314,0.016443934,0.024391625,-0.0059065493,0.0031541993,-0.07725716,0.005731139,-0.024225783,-0.009669902,0.009134102,-0.004519212,0.011430385,-0.011774827,-0.002720457,-0.006368995,-0.048221935,0.015168223,-0.008419703,0.015129951,-0.027529877,0.0068250624,0.023026612,0.017081792,-0.0021830632,-0.00088263367,-0.020156259,-0.024340596,0.039317463,0.0015173006,-0.029366903,0.0141093815,-0.014173167,-0.010071751,-0.0064901877,-0.012973997,-0.005211286,0.0005808479,-0.00016534432,0.018408533,0.006474241,0.006502945,-0.028193248,-0.0020746277,-0.022720441,0.032301042,-0.026713422,-0.02826979,-0.011774827,-0.04572154,-0.0110094,0.0011042887,0.0026215895,-0.023026612,0.00972093,0.020079715,0.025093267,0.010900964,-0.01810236,-0.01890606,-0.00949768,-0.017732404,0.017745161,-0.009599737,0.010601171,-0.02423854,0.018497832,0.009644387,-0.008317646,0.009210645,0.017872734,-0.004732894,0.011800341,-0.018765733,0.019913873,0.009070316,-0.0034380455,-0.0032913384,0.0061808275,0.008706738,0.02694305,0.007966825,-0.024391625,0.0004947373,-0.018268203,0.010824421,-0.010020723,-0.0039706556,-0.0074374042,0.015232008,0.04949765,-0.0065762983,-0.013165354,-0.0040663336,0.01153882,0.021164073,-0.0030872244,0.0021830632,-0.007692547,-0.0017333744,-0.0050039827,-0.01845956,0.021342672,0.0077244397,-0.0141093815,0.03084673,0.00020989458,0.014759995,0.0067931693,-0.028040163,-0.02268217,-0.014249709,0.0038813555,-0.015691265,-0.009236159,0.017234877,0.0205007,0.018370261,0.028856618,0.0065699196,-0.03959812,-0.00012707293,-0.021457486,0.005721571,-0.021202343,0.027759505,0.02232497,0.012616797,0.01371391,-0.010071751,0.048630163,0.022465298,0.0037378378,-0.01278264,0.0006139367,0.0220188,-0.03625575,-0.015946407,-0.0038909235,-0.007220533,-0.012470091,-0.018204419,-0.025463223,0.01704352,0.037582494,0.046129767,0.024506439,-0.008279375,0.020768601,0.0025322896,0.005584432,0.008419703,-0.011347463,-0.033653297,0.00295168,0.007239669,0.022694927,-0.0009161211,0.004024873,-0.0106840925,0.013509796,-0.012438198,0.010531007,-0.031663187,-0.0030122763,0.03036196,-0.0056737317,-0.005472807,-0.006876091,-0.030591588,-0.012565769,0.029417932,-0.0069398764,0.006729384,-0.0075394614,0.025118781,0.00016962992,-0.015410608,-0.009217024,0.03702118,0.018127875,-0.01686492,0.015206494,0.02538668,0.00963163,0.0032132012,0.033857413,-0.008987395,-0.018383019,-0.012055484,-0.015946407,-0.013701153,-0.013446011,0.011302814]']\n",
"Best Buy\n",
"['149343ed-32ef-5d73-b884-960fe3385d77', \"Best Buy Co., Inc. is a multinational consumer electronics retailer headquartered in Richfield, Minnesota. Best Buy operates as a one-stop shop for a wide range of electronic products, including smartphones, computers, tablets, TVs, home appliances, and entertainment systems. The company is known for its large retail stores, online platform, and customer service offerings, including tech support and installation services. Best Buy also offers a variety of services such as the Geek Squad, which provides technical support and repair services.\\n\\nOverall, Best Buy's core operations revolve around selling consumer electronics and appliances, providing services and solutions to enhance customer experience, and staying at the forefront of technology trends to meet the ever-evolving needs of consumers.\", {'ceo': 'Corie S. Barry', 'city': 'Richfield', 'rank': 68, 'state': 'MN', 'profit': 2454.0, 'sector': 'Retailing', 'ticker': 'BBY', 'company': 'Best Buy', 'revenue': 51761.0, 'website': 'www.investors.bestbuy.com', 'newcomer': 'no', 'ceo_woman': 'yes', 'prev_rank': 66, 'market_cap': 17106.0, 'profitable': 'yes', 'ceo_founder': 'no', 'rank_change': -2, 'num_of_employees': 81375}, '[-0.011468303,-0.0074932342,0.011598848,-0.02965963,-0.04420225,0.006027876,-0.008681186,-0.018315343,-0.0043503838,-0.034254786,0.0115662115,0.010854746,-0.019124718,-0.024124559,-0.0013592909,-0.008752985,0.013459101,-0.005887541,0.0023367403,-0.015351992,-0.027910339,0.029529087,-0.0050063683,-0.0020234343,0.01617442,-0.011376923,0.0119839525,-0.01918999,0.0048954054,0.01304136,-0.009190308,-0.0120622795,-0.026970422,-0.012192824,-0.014072659,0.0015061531,-0.011050562,-0.008178591,0.029764066,-0.017440699,0.010104117,0.00026292406,-0.000527072,0.010652402,-0.017754003,0.0066805966,0.00016593384,-0.01082211,-0.009275162,0.0145295635,0.0037433535,0.014320693,-0.00647499,-0.009294744,0.005254402,-0.019007228,-0.034385327,-0.00054420595,0.003589964,-0.033497628,-0.019529404,0.0059756585,-0.022336103,0.01694463,-0.0068339864,-0.010730729,-0.031356703,-0.010645876,-0.028406408,0.0063966634,0.007186455,0.03172223,0.0034790016,0.031200051,-0.0053490466,-0.0013315503,0.010410896,0.029764066,0.004751807,0.010965709,0.0076629417,-0.029294107,-0.010574076,0.022414431,-0.0018553587,0.03749228,-0.028145319,0.008172064,0.0072452,-0.007871812,0.00012870837,0.0011561316,0.00527072,0.020116853,0.0065272073,0.028615277,0.015978605,0.03127838,-0.017649569,-0.024803389,0.020495431,0.005841851,-0.016487725,-0.009686376,-0.02288439,0.03143503,-0.003681345,-0.027805904,0.047596395,-0.008459261,-0.010254242,-0.0006857647,0.0063868724,-0.003170591,-0.0030938964,0.0026663642,-0.00068984425,-0.006390136,0.0077477954,-0.0077021047,0.029346325,0.026617952,0.017597351,-0.01916388,0.01582195,-0.009679848,-0.025012258,-0.023132423,0.04148693,0.012303786,0.01159232,0.005120594,0.0020789155,0.023262966,-0.008289553,-0.013707136,0.014307639,0.05665616,-0.016474672,-0.008831312,0.021892253,0.0022665728,-0.012643201,-0.0035442736,-0.008328716,0.026487408,0.0017329736,0.028510842,0.0013127846,0.021161206,0.016187474,0.0028948165,0.010652402,0.009947464,0.018406725,-0.0066414336,-0.014268476,0.006951476,-0.027544815,-0.012473494,0.010136753,0.008420098,-0.0069775847,0.0006351789,-0.0053882096,0.036004078,0.02255803,0.014921196,-0.009986628,-0.003136323,0.006618588,0.0056231893,-0.030181807,0.015312829,0.005123858,0.005805951,0.005322938,0.010632821,-0.009320852,0.001103914,0.02472506,-0.012134079,0.0052021844,0.0076629417,0.008393989,-0.0049606776,0.02968574,0.018798357,0.028014774,-0.036082402,-0.0061975834,0.021840036,0.02945076,-0.00053278334,-0.6454103,0.002545611,0.010136753,-0.023615437,-0.015469481,0.022218615,0.031382814,0.016774923,0.008746458,0.0065990067,-0.0062302197,0.0048954054,-0.00035063343,-0.022675518,-0.0071146563,0.0075323973,0.0015216552,-0.012871653,0.019777438,0.0076041967,-0.014477346,0.0049051964,-0.014046551,-0.007323527,0.0075323973,0.023484893,0.010998345,0.00034879765,-0.0055970806,0.037178975,-0.015077849,0.021213423,0.020612922,0.0060409303,0.04394116,0.019124718,-0.02965963,0.011755501,0.010136753,0.02702264,-0.025939122,-0.030651767,0.029476868,-0.010247716,0.011455249,-0.0051597576,0.0008289553,0.0033256123,-0.0074540707,-0.00555139,-0.0056362436,0.0075323973,-0.009294744,-0.017897602,0.003426784,0.0023807988,-0.00047403845,-0.0018096683,-0.0066381698,0.010796001,-0.014829815,0.011638011,-0.0029356116,-0.02811921,-0.032662146,0.01785844,0.0048203426,-0.044985514,0.0068405136,0.010273824,0.010711147,0.018445889,-0.023289077,0.011096253,-0.006102939,0.025469163,0.029320216,0.013576591,0.003870634,0.008883529,0.0010345624,-0.026696278,0.012316841,-0.022192506,0.0023987486,-0.0052478747,0.010685039,-0.025573598,0.0044254465,-0.015443373,0.019203044,-0.014594836,0.004650635,-0.016657433,-0.008994492,-0.007878339,0.0015102326,-0.01573057,0.004637581,-0.003048206,-0.010782947,-0.00091870443,0.0022437274,0.033158213,8.73014e-05,0.019790493,0.0001942864,0.010117171,0.01573057,-0.012865126,-0.0061714747,-0.041460823,-0.021474512,-0.0041806763,-0.012558348,-0.02879804,-0.0072452,-0.041434713,-0.00039204038,-0.020273507,0.016840195,-0.006566371,0.015221448,0.014934251,-0.0055383355,0.0045820996,0.009523195,-0.017532079,-0.04527271,0.010998345,-0.013485211,-0.025286403,0.013406884,0.028093101,0.0010321147,0.034620307,0.005221766,-0.034724742,0.015156176,-0.041826345,-0.023954852,-0.0064031905,0.010861273,0.010247716,-0.025077531,-0.016148312,-0.008628968,-0.009960518,-0.015782788,-0.011696756,-0.013432993,-0.019529404,-0.011912154,0.016474672,0.019411914,-0.007206037,-0.020129908,-0.019594677,-0.0031412186,-0.012786799,0.0019157354,0.0024819707,-0.019881874,0.0027185818,0.016161365,-0.018968064,-0.00021845747,0.021931417,0.0029861974,-0.008328716,0.042949025,0.0015086008,0.0048301336,0.00470938,0.0005560365,-0.00027312283,-0.003162432,0.017532079,0.01372019,0.00015583707,0.02138313,0.000733087,-0.008961855,-0.0015298142,0.016631324,0.004650635,0.016996847,0.018406725,-0.016109148,-0.018093418,0.011344287,0.035429683,-0.006027876,-0.01236253,-0.022492757,0.019033337,2.479574e-05,0.010554494,-0.0053980006,0.0124408575,0.00018021211,0.016487725,0.0071277106,-0.014020442,0.0090989275,-0.022336103,0.027388163,-0.014190149,0.0036519726,0.015077849,0.0026990003,-0.017701786,0.014359856,0.0030302561,-0.0063966634,0.025495272,0.0029388752,0.048353553,-0.025038367,-0.004973732,0.011905626,-0.0056297164,0.0017019693,-0.0022469913,-0.024973096,0.025625816,0.0040468685,0.02744038,0.012767218,-0.011703283,-0.0026255692,0.036891777,0.008752985,0.026278537,0.010743784,-0.0031102144,0.012806381,-0.016396346,0.02634381,0.01304136,-0.0075062886,0.036630686,0.005985449,-0.010117171,0.0019010492,0.0023269495,0.030390678,0.00981692,-0.016592162,0.016422454,-0.035325248,0.0050128954,-0.016787978,-0.0029519296,0.0034365747,-0.014699271,0.03744006,-0.0072125643,0.03190499,0.0272054,-0.012636674,0.009386124,0.026056612,0.014451237,-0.0015265506,0.020952336,0.033132106,-0.0052087116,0.008459261,-0.013145796,0.014385966,-0.0012515921,0.009484032,0.016109148,0.017323209,0.023667654,0.011337759,0.0062073744,-0.029294107,0.022832172,-0.014033496,-0.018223964,-0.0051434394,0.0060637756,-0.010547968,0.018563379,-0.015600026,-0.0201038,-0.0043536476,0.016357182,-0.012525711,0.026735442,-0.030495113,0.015991658,0.004742016,-0.018524215,0.042922918,0.010410896,0.009027128,0.0033239804,-0.010162862,0.016579106,-0.025756361,-0.010110645,0.02398096,0.009510141,-0.0015004418,0.015769733,0.0035801732,-0.009327379,-0.033132106,-0.0076955776,-0.005326201,-0.012682364,0.01505174,-0.006324864,-0.02194447,0.0013062574,0.01439902,0.016996847,-0.002956825,-0.004735489,-0.020704301,0.011363869,0.098325856,0.02176171,-0.024189832,0.03122616,-0.02924189,-0.0008277315,-0.019816602,-0.020129908,0.02120037,-0.0046669533,0.0036128093,-0.00421984,0.009027128,-0.011057089,-0.004232894,0.004702853,0.012049225,-0.0034072022,-0.002759377,-0.0017754005,0.0014816761,0.011337759,0.0082830265,0.009947464,0.045820996,-0.0025341883,0.049267363,0.0272054,-0.004128459,-0.008583277,-0.022114178,-0.01563919,-0.024633681,-0.0035312192,0.013361193,0.03412424,-0.025077531,0.012121025,-0.007800013,0.0047289617,0.025025314,-0.015117013,0.0011137048,-0.023289077,0.0043373294,-0.016683543,-0.0069710575,0.011631483,-0.010972235,0.008433152,0.027962556,-0.029137455,0.0018471997,-0.015534754,0.0070950743,-0.016918521,-0.0047811796,-0.011435667,-0.02620021,-0.033184323,0.0040142327,-0.03905881,0.0052087116,-0.0031754863,-0.002116447,-0.025025314,-0.026918203,-0.014581782,-0.029633522,-0.014255421,0.01676187,-0.033340976,-0.013628809,-0.0236546,0.045220494,0.0015836637,0.0043438566,0.030860636,0.003945697,0.03140892,0.0028425988,-0.011755501,-0.0011259433,5.5430268e-05,0.0063052825,0.019829657,0.012701945,-0.013994332,-0.03433311,0.0053555737,0.014516509,-0.016866304,0.02699653,0.015952496,0.0055840258,0.019007228,0.007708632,-0.01311316,-0.021474512,0.005048795,0.0065859524,0.028824149,-0.0059691314,-0.018393671,0.026970422,0.017270992,-0.005894068,-0.010554494,0.0011381818,0.017257936,0.018654758,-0.022832172,-0.00056949886,-0.008883529,-0.020182125,0.014777598,0.010489223,-0.0090989275,0.007277836,-0.023524055,0.006471726,-0.027335946,0.01694463,-0.012662782,-0.0062987553,0.00825039,-0.0018064047,-0.023994014,-0.033993695,-0.011651065,0.0074671255,-0.00015950864,-0.027597032,-0.016017767,-0.05313147,-0.006135575,0.009973573,0.02522113,-0.027074857,-0.033732608,-0.018994173,0.0063966634,0.0063216006,0.003929379,-0.03569077,-0.023589328,-0.0010272192,-0.0054567456,-0.0037074538,0.022949662,-0.0038641067,-0.009503614,-0.014033496,-0.005032477,-0.0103325695,-0.039554875,-0.015495591,-0.016605215,0.030442895,0.037805587,0.008766039,0.017910657,-0.0056688795,0.00044507397,0.015417264,0.0045005097,-0.0013780567,0.015652243,0.000551957,0.013694081,-0.029398542,0.0075389245,0.0007616435,0.014581782,-0.009451397,0.016566053,0.019620785,-0.03796224,-0.020417105,0.002199669,-0.008759513,-0.012688891,-0.01673576,0.018406725,-0.03187888,-0.025599707,0.050337825,0.039554875,0.008863947,-0.014777598,0.007878339,-0.013145796,0.018785303,-0.005205448,-0.008909638,-0.025012258,0.007884867,-0.040755883,-0.00024925775,-0.0019157354,0.039815966,-0.0027626406,-0.022832172,-0.011122362,-0.014438183,0.011011399,-0.032923233,0.0068731494,0.009614577,-0.012023116,0.0013495001,-0.018054256,-0.03169612,0.003994651,0.0009701062,0.004389547,0.00037796612,0.018328398,-0.017218772,-0.010410896,-0.012186296,-0.0031428505,0.036500145,0.004307957,0.029085236,0.04263572,0.011513994,-0.0023579537,-0.010756838,-0.010195498,-0.009823447,0.0103325695,0.0039130608,0.0003302359,-0.041617475,0.00374009,-0.022466648,-0.0037661986,-0.012166714,0.019620785,0.0012972825,-0.0007265598,-0.015469481,0.022231668,-0.01065893,0.017466808,-0.010175916,0.014294584,-0.0044319737,-0.032427166,-0.01762346,0.013087051,-0.012852072,0.012245041,0.00418394,-0.009732067,0.004255739,-0.003616073,-0.015861114,0.0218792,-0.0055481265,-0.003449629,0.002981302,0.016696597,0.002348163,0.0002749586,0.0038934792,0.01159232,0.023145478,0.019764384,-0.012447384,-0.033784825,0.014190149,0.007238673,0.009758175,-0.0058092144,-0.022936607,-0.014542618,-0.018615596,-0.021108989,0.006129048,0.008713822,-0.018785303,-0.015130067,0.00986261,-0.028667495,-0.020978445,0.0048040245,0.013589646,-0.0012989143,-0.001235274,-0.004118668,-0.013916006,0.027048748,0.013432993,0.0150256315,-0.0014155881,-0.0111680515,0.00841357,0.004644108,0.007950138,0.021474512,-0.0039652786,0.0015665297,0.0033680391,0.012688891,0.031147834,0.005329465,0.010365206,-0.035560228,-0.009973573,-0.0067426055,-0.015117013,-0.021696437,-0.025325565,0.015887223,0.008883529,-6.624096e-05,-0.010397841,0.0049867863,-0.0057210973,0.011520521,0.015978605,-0.020952336,0.009790811,0.0020250662,0.0172971,-0.026657116,-0.015808897,-0.005848378,-0.014425129,0.005773315,-0.004588627,0.010489223,0.0061094663,0.022466648,-0.013876843,0.024176776,-0.009869138,-0.0075976695,-0.010045372,0.020456268,0.025952177,0.019607732,-0.0075976695,0.02052154,-0.024046233,-0.025495272,-0.034646418,-0.0037792532,-0.0032325995,0.040755883,0.00619432,-0.0033451938,-0.013772408,-0.013100105,-0.041748017,0.008504951,0.033602063,-0.001020692,-0.0066740694,0.016774923,-0.0063216006,0.033053778,-0.0024362803,0.015182285,-0.015887223,0.012695419,0.014385966,-0.0075976695,0.017466808,-0.017479861,-0.033184323,-0.01841978,0.027779795,-0.015678352,-0.0048072883,0.027753687,-0.0059919762,-0.007434489,0.02131786,0.025534436,-0.0017786641,0.014020442,0.013485211,-0.010136753,0.0029666158,0.01505174,0.015325883,-0.024842551,0.011044035,0.016187474,-0.004611472,0.017218772,-0.011057089,-0.018889738,-0.0019287898,-0.009027128,-0.003400675,-0.0039522243,0.00719951,-0.0010361942,0.009242525,-0.036239054,-0.015208393,0.023041042,-0.015913332,0.017401535,0.0050944854,-0.04681313,-0.0145295635,-0.0040958226,0.009314325,-0.019777438,-0.016213583,-0.030025154,0.0003137139,-0.022035852,0.00051932095,-0.0027283728,-0.014294584,0.01797593,0.006997166,0.00209197,0.008152482,0.0015183917,0.018968064,-0.043915052,0.013889898,-0.0046212627,-0.008955329,-0.043862835,-0.0038477888,0.030416787,-0.00680135,0.0045723086,0.19842711,0.011017926,-0.0014678058,0.022401376,-0.0036846085,0.010730729,-0.007578088,-0.019085554,0.018106474,-0.02522113,-0.020547649,0.010554494,-0.0035279556,0.008831312,0.023928743,-0.04088643,-0.0043797563,-0.022584138,-0.012081861,0.048588533,0.01437291,0.0021605056,0.0035051105,0.0028621804,0.022022799,0.019973256,-0.011768555,0.008987965,0.042061325,0.009738593,-0.006200847,-0.008354826,0.014229313,0.016892413,-0.022336103,0.0013364457,-0.014999523,-0.011931735,0.01785844,0.015978605,0.00930127,0.013073997,-0.021148153,-0.00736269,-0.0017117602,0.03767504,-0.0068796766,-0.0047256984,0.012545292,0.0049672048,-0.04456777,-0.0065435255,0.02007769,0.017936766,0.01159232,0.008844366,-0.01998631,-0.0078457035,0.004833397,-0.024672844,-0.0099539915,0.03234884,-0.03169612,0.021605056,-0.015861114,0.007323527,-0.008615914,0.014046551,0.010195498,-0.011853409,0.014777598,0.006984112,-0.029816283,0.022075016,-0.018432833,-0.013994332,0.033367086,0.009307798,0.0369701,0.025155857,0.0073104724,0.0082830265,-0.0310434,-0.007917503,-0.010972235,-0.004314484,0.021396186,-0.025952177,0.0017737686,-0.005368628,0.011814245,0.017806223,-0.010208553,-0.023994014,0.018785303,0.020156017,-0.012088388,0.0044417647,-0.029085236,-0.0022633092,0.0050683767,0.041565258,0.017140446,-0.015874168,-0.020038527,-0.0026745233,0.015626134,0.03054733,0.004259003,-0.010789474,-0.0075454516,-0.0136027,0.01311316,-0.023876525,0.008407043,0.008472315,-0.0043438566,-0.01792371,0.010724202,-0.036656797,0.032270513,-0.038954373,0.015103958,-0.008034992,-0.021722546,-0.032270513,0.019777438,0.030573439,-0.00084935286,-0.041617475,-0.013550483,-0.010215079,0.005704779,-0.021487568,-0.017088229,0.020560704,0.009451397,-0.0066349064,-0.024359537,0.0018243545,-0.01673576,-0.004719171,-0.00804152,0.006308546,0.009196836,-0.0014694376,0.021343969,0.03435922,-0.0018716768,-0.021187315,-0.030912854,-0.01661827,-0.006661015,-0.022075016,0.007179928,-0.007963193,-0.010247716,-0.0025978286,-0.011997007,0.013087051,-0.023341294,-0.016970739,0.038693286,0.0077543226,-0.020926228,0.003443102,-0.16375458,0.029972937,0.016461616,0.012564874,0.0172971,0.014790652,-0.0003071867,0.0072190915,0.012708473,0.041826345,0.0057765786,-0.005903859,-0.024620626,-0.023106314,0.029267998,-0.024529245,-0.019203044,0.024594517,0.013824625,-0.00072941545,0.017767059,-0.015286719,-0.01150094,-0.029372433,0.021017607,-0.0013038097,-0.0025407155,-0.0013650022,0.035194702,-0.0049182507,0.010495749,-0.016513836,0.027936447,0.02344573,0.0017754005,-0.023484893,-0.027153183,0.0010223238,0.0033141896,0.02229694,0.016722705,0.009797338,0.007715159,0.016552998,0.021252587,-0.008883529,0.015456427,-0.010071481,0.008465788,-0.017897602,0.03185277,-0.062347885,-0.010534912,-0.0041121407,0.008191645,0.0035638553,-0.014124877,-0.025704144,-0.0077869585,-0.023484893,0.002700632,-0.005401264,0.0033305075,-0.033863153,-0.0032570765,-0.01605693,-0.008602859,-0.0162658,-0.017101284,-0.005659089,0.0014017178,-0.01428153,0.012466966,0.00113655,-0.0006180449,0.0124604395,-0.014242367,-0.006187793,0.0057374155,0.008883529,0.00032044508,-0.0016464881,-0.034045912,0.0061127297,-0.03908492,0.013080523,-0.018328398,-0.007773904,-0.028693603,0.011252905,0.020234343,-0.019150827,-0.03140892,0.007904449,0.01199048,0.028406408,-0.003443102,-0.002183351,-0.0055285445,0.021592002,-0.0023628492,-5.82923e-06,-0.013641863,-0.0026582053,0.027988665,0.012414749,0.009288216,0.027100965,0.020299615,-0.0120426975,-0.015743624,0.012577929,0.020273507,0.02300188,-0.019124718,0.015260611,-0.008498424,-0.010443532,0.028667495,-0.005401264,0.040547013,-0.0018651495,-0.011762028,0.0070036934,-0.027283726,-0.010038845,-0.09529723,-0.013641863,-0.010091063,0.0010386419,-0.021004554,0.0033060305,-0.0019777438,0.04083421,0.00016613783,0.036421817,-0.011533575,-0.02353711,-0.0053392556,-0.023367403,0.021539785,0.0068209316,-0.022336103,-0.010887382,-0.0017819277,-0.012793327,-0.029764066,-0.03185277,-0.019372752,-0.006412981,-0.013419938,-0.006703442,-0.035377465,0.0076955776,0.022140287,0.0025717197,-0.003089001,-0.017754003,0.021592002,-0.024881715,0.0027724314,-0.0049704686,-0.012349476,-0.012147133,0.018093418,-0.010195498,-0.007800013,0.0055774986,-0.0044254465,-0.036735125,-0.009138091,-0.0132959215,0.004249212,0.0023155268,0.024228994,-0.0054828543,0.012617092,0.00070453045,-0.056603942,-0.018406725,0.007682523,0.018915847,-0.00029923167,-0.004373229,-0.014973414,0.00016195634,-0.010358678,0.019777438,-0.014581782,0.021370078,0.014007387,0.030260134,-0.026500462,-0.015782788,0.016814087,-0.052792054,0.008054574,0.015991658,-0.0005376787,0.025469163,-0.035116374,0.0077282134,-0.0074736527,-0.0063575,0.02968574,-0.019111663,-0.02764925,-0.012218933,0.022166396,0.00079999084,-0.00017837634,-0.0056819343,-0.012493075,0.011892572,-0.0017525553,-0.052583184,0.024411757,0.04237463,0.029607413,-0.0073757446,-0.010136753,-0.0011757133,-0.02374598,-0.0018667814,0.01741459,0.015926385,0.012584456,0.015573917,-0.08595027,0.0112072155,0.0051564937,0.013446047,-0.0031444822,-0.016004713,0.028667495,-0.016631324,-0.009444869,-0.00390327,0.0041382494,0.015743624,0.00780654,-0.03744006,-0.029320216,-0.022101125,0.006178002,0.0040305504,0.014673162,-0.0017884548,-0.0016424085,-0.02232305,0.0011055458,0.010991817,-0.02992072,0.01596555,-0.01794982,0.008459261,-0.027362054,-0.017427644,0.014633999,-0.0013005461,0.0034365747,0.03263604,0.0064390902,-0.012134079,-0.015234502,0.021422295,0.01014328,0.013667973,-0.030625658,-0.022727737,0.0070232754,-0.0056819343,-0.011037508,0.0087007675,-0.0017264463,-0.016905468,0.009151145,-0.007147292,0.008837839,0.018550323,-0.015926385,-0.019673003,-0.007963193,-0.014686217,-0.004513564,0.008113319,0.012081861,0.017819276,0.016670488,-0.008935747,0.029999046,0.0071211834,0.034881398,-0.015678352,0.002158874,-0.0011047298,-0.004298166,-0.037622824,0.03501194,-0.028667495,0.019346643,-0.01631802,0.002561929,-0.011292069,0.0003022913,-0.014085714,-0.02942465,0.021239532,0.004317748,0.004595154,0.0010133489,0.014307639,0.03297545,0.016004713,-0.017427644,-0.0012736213,-0.011572739,0.0053392556,-0.017584296,0.018002039,-0.001103914,0.013785462,-0.0041904673,0.01895501,0.006595743,0.019999364,-0.014934251,0.009431815,-0.0068666223,0.023824308,-0.0012793327,-0.032427166,-0.024751171,0.014633999,0.0010435373,-0.023354348,-0.0054730633,0.045429364,-0.007832649,0.021748655,0.023432674,0.011768555,-0.027518706,0.009829975,0.009190308,-0.0073561626,-0.013876843,0.010156334,0.0052935653,0.009927883,0.007767377,0.0016628061,0.030207915,-0.0017036011,-0.004275321,-0.018041201,-0.02140924,0.0029584568,-0.0017786641,-0.0062563284,0.004735489,0.012329895,-0.02992072,-0.0065892157,0.010920018,0.04148693,0.008524533,0.042244088,0.0006417061,-0.0025080794,0.0051173307,-0.004134986,0.034985833,-0.00052013685,0.024829498,-0.024633681,-0.026396027,-0.006958003,0.012173242,-0.006628379,0.0019875346,-0.02220556,-0.0005511411,0.0009594995,-0.015665298,-0.029267998,0.037988346,0.0067230235,-0.02788423,0.020704301,-0.015743624,-0.02341962,0.0022943134,0.01131165,0.0069057853,-0.00949056,-0.033784825,0.006334655,-0.012205878,-0.03255771,-0.003164064,0.0063216006,-0.02199669,-0.012473494,-0.0018357771,0.00958194,-0.0055970806,0.017101284,0.011846881,-0.013361193,-0.0011210479,-0.0045755724,-0.006005031,-0.011239851,-0.0066773333,-0.0031754863]']\n"
]
}
],
"source": [
"# Get rows within a certain distance\n",
"\n",
"sql = f\"\"\"\n",
"SELECT * FROM fortune_100 WHERE embedding <-> '{vec_query}' < 5 ORDER BY embedding <-> '{vec_query}' LIMIT 3;;\n",
"\"\"\"\n",
"\n",
"try:\n",
" # Execute the SQL command\n",
" cur.execute(sql)\n",
"\n",
" # Fetch all the rows in a list of lists.\n",
" results = cur.fetchall()\n",
"\n",
" # Print results\n",
" for row in results:\n",
" print(f\"{row.get('metadata').get('company')}\")\n",
" print(row) # Adjust print formatting as needed\n",
"\n",
"except Exception as e:\n",
" print(\"An error occurred:\", e)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Use in LLM\n"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"import instructor\n",
"import enum\n",
"from pydantic import Field, BaseModel\n",
"from datetime import date"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [],
"source": [
"oai_client = OpenAI()\n",
"\n",
"client = instructor.patch(oai_client)"
]
},
{
"cell_type": "code",
"execution_count": 138,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"You are a world class query planning algorithm capable of breaking apart questions into its dependency queries,\n",
"such that the answers can be used to inform the parent question.\n",
"1. The queries should be of three types, depending on what is searched: \"COMPANY\", \"SALES\" or \"NEWS\".\n",
"2. Before running SALES or NEWS queries, we first need a company for which we are finding sales/news for. \n",
"3. Determine parameters to be passed to each query. This is a dictionary.\n",
" 3.1 For COMPANY-queries, the parameters are:\n",
" - keywords: A list of keywords that can be used for.\n",
" - filter: A list of dictionaries in the form of [{'field':'value'},..]. \n",
" Filters can be applied to the following fields: 'state', a two-letter state code, or 'city', the company's city. \n",
" For example, {'city':'Seattle'}\n",
" 3.2 for NEWS- and SALES-queries, determine an optional daterange if specified, with parameters 'min_date' and 'max_date'.\n",
" The current date is 2024-05-13.\n",
"4. Do not answer the questions, simply provide a correct compute graph with good specific questions to ask and relevant dependencies.\n",
"5. Before you call the function, think step-by-step to get a better understanding of the problem.\n",
"\n"
]
}
],
"source": [
"query_planner_prompt = f\"\"\"\n",
"You are a world class query planning algorithm capable of breaking apart questions into its dependency queries,\n",
"such that the answers can be used to inform the parent question.\n",
"1. The queries should be of three types, depending on what is searched: \"COMPANY\", \"SALES\" or \"NEWS\".\n",
"2. Before running SALES or NEWS queries, we first need a company for which we are finding sales/news for. \n",
"3. Determine parameters to be passed to each query. This is a dictionary.\n",
" 3.1 For COMPANY-queries, the parameters are:\n",
" - keywords: A list of keywords that can be used for.\n",
" - filter: A list of dictionaries in the form of [{{'field':'value'}},..]. \n",
" Filters can be applied to the following fields: 'state', a two-letter state code, or 'city', the company's city. \n",
" For example, {{'city':'Seattle'}}\n",
" 3.2 for NEWS- and SALES-queries, determine an optional daterange if specified, with parameters 'min_date' and 'max_date'.\n",
" The current date is {date.today()}.\n",
"4. Do not answer the questions, simply provide a correct compute graph with good specific questions to ask and relevant dependencies.\n",
"5. Before you call the function, think step-by-step to get a better understanding of the problem.\n",
"\"\"\"\n",
"\n",
"print(query_planner_prompt)"
]
},
{
"cell_type": "code",
"execution_count": 139,
"metadata": {},
"outputs": [],
"source": [
"class QueryType(str, enum.Enum):\n",
" \"\"\"Enumeration representing the types of queries that can be made to our database\"\"\"\n",
"\n",
" COMPANY_SEARCH = \"COMPANY\"\n",
" NEWS_SEARCH = \"NEWS\"\n",
" SALES_SEARCH = \"SALES\"\n",
"\n",
"\n",
"class Query(BaseModel):\n",
" \"\"\"Class representing a single query in a query plan.\"\"\"\n",
"\n",
" id: int = Field(\n",
" ...,\n",
" description=\"Unique ID of the query\",\n",
" )\n",
"\n",
" parameters: dict = Field(\n",
" ...,\n",
" description=\"The parameters to be passed to the query\",\n",
" )\n",
"\n",
" dependencies: list[int] = Field(description=\"List of IDs of queries that need to be answered before this query\")\n",
"\n",
" query_type: QueryType = Field(description=\"Type of query, either a vector query, news query or sales query\")\n",
"\n",
" def run(self) -> list[tuple]:\n",
" \"\"\"Runs a query depending on the query_type.\"\"\"\n",
" if self.query_type == QueryType.COMPANY_SEARCH:\n",
" query_embs = get_embeddings(self.parameters.get(\"keywords\"))\n",
"\n",
" filters = \" and \".join([f\"f.metadata ->> '{k}' = '{v}'\" for f in self.parameters.get(\"filter\") for k, v in f.items()])\n",
" if len(filters) > 0:\n",
" filters = f\"WHERE {filters}\"\n",
"\n",
" query = f\"SELECT * FROM fortune_100 f {filters} ORDER BY f.embedding <-> '{query_embs}' LIMIT 3\"\n",
"\n",
" cur.execute(query)\n",
" results = cur.fetchall()\n",
" return [(r.get(\"metadata\").get(\"company\"), str(r.get(\"id\"))) for r in results]\n",
"\n",
" elif self.query_type == QueryType.SALES_SEARCH:\n",
" query = f\"SELECT SUM(amount) FROM sales WHERE company_id = '{self.parameters.get('company_id')}'\"\n",
" if \"min_date\" in self.parameters and \"max_date\" in self.parameters:\n",
" query += f\" AND date BETWEEN '{self.parameters.get('min_date')}' AND '{self.parameters.get('max_date')}'\"\n",
" elif \"min_date\" in self.parameters:\n",
" query += f\" AND date >= '{self.parameters.get('min_date')}'\"\n",
" elif \"max_date\" in self.parameters:\n",
" query += f\" AND date <= '{self.parameters.get('max_date')}'\"\n",
" cur.execute(query)\n",
" results = cur.fetchall()\n",
" return results\n",
"\n",
" elif self.query_type == QueryType.NEWS_SEARCH:\n",
" query = f\"SELECT title FROM news WHERE company_id = '{self.parameters.get('company_id')}'\"\n",
" if \"min_date\" in self.parameters and \"max_date\" in self.parameters:\n",
" query += f\" AND published_at BETWEEN '{self.parameters.get('min_date')}' AND '{self.parameters.get('max_date')}'\"\n",
" elif \"min_date\" in self.parameters:\n",
" query += f\" AND published_at >= '{self.parameters.get('min_date')}'\"\n",
" elif \"max_date\" in self.parameters:\n",
" query += f\" AND published_at <= '{self.parameters.get('max_date')}'\"\n",
"\n",
" cur.execute(query)\n",
" results = cur.fetchall()\n",
" return [r.get(\"title\") for r in results]"
]
},
{
"cell_type": "code",
"execution_count": 140,
"metadata": {},
"outputs": [],
"source": [
"class QueryPlan(BaseModel):\n",
" \"\"\"Container class representing a tree of queries to run against a database.\"\"\"\n",
"\n",
" query_plan: list[Query] = Field(\n",
" ...,\n",
" description=\"The query plan representing the queries to run\",\n",
" )\n",
"\n",
" def execute(self):\n",
" \"Build the query plan.\"\n",
" # Dict to store results from all queries\n",
" results = {}\n",
"\n",
" # Execute the queries in the order of their dependencies\n",
" for query in self.query_plan:\n",
" print(f\"Running query {query.id}: {query.query_type.name}\")\n",
" if not query.dependencies:\n",
" results[query.query_type] = query.run()\n",
" company_ids = [r[1] for r in results[query.query_type]]\n",
" else:\n",
" # Then execute the query for all companies returned by dependency\n",
" all_results = []\n",
" for id in company_ids:\n",
" query.parameters[\"company_id\"] = id\n",
" all_results.append(query.run())\n",
" results[query.query_type] = all_results\n",
"\n",
" return results"
]
},
{
"cell_type": "code",
"execution_count": 141,
"metadata": {},
"outputs": [],
"source": [
"def query_planner(question: str) -> QueryPlan:\n",
" PLANNING_MODEL = \"gpt-4o\"\n",
" messages = [\n",
" {\n",
" \"role\": \"system\",\n",
" \"content\": query_planner_prompt,\n",
" },\n",
" {\n",
" \"role\": \"user\",\n",
" \"content\": f\"Consider: {question}\\n Generate the correct query plan.\",\n",
" },\n",
" ]\n",
" plan = client.chat.completions.create(model=PLANNING_MODEL, response_model=QueryPlan, messages=messages, temperature=0, max_tokens=1000)\n",
" return plan"
]
},
{
"cell_type": "code",
"execution_count": 146,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'query_plan': [{'id': 1,\n",
" 'parameters': {'keywords': ['retail'], 'filter': [{'state': 'CA'}]},\n",
" 'dependencies': [],\n",
" 'query_type': <QueryType.COMPANY_SEARCH: 'COMPANY'>},\n",
" {'id': 2,\n",
" 'parameters': {'min_date': '2024-01-01', 'max_date': '2024-05-13'},\n",
" 'dependencies': [1],\n",
" 'query_type': <QueryType.NEWS_SEARCH: 'NEWS'>},\n",
" {'id': 3,\n",
" 'parameters': {'min_date': '2023-01-01', 'max_date': '2023-12-31'},\n",
" 'dependencies': [1],\n",
" 'query_type': <QueryType.SALES_SEARCH: 'SALES'>}]}"
]
},
"execution_count": 146,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"question = \"Get me retail companies in California, and this year's news related to them, and last year's sales for each\"\n",
"plan = query_planner(question)\n",
"plan.model_dump()"
]
},
{
"cell_type": "code",
"execution_count": 147,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Running query 1: COMPANY_SEARCH\n",
"Running query 2: NEWS_SEARCH\n",
"Running query 3: SALES_SEARCH\n",
"Companies:\n",
"('Apple', '33a3f638-20dc-5797-a9e2-660ae1bad782')\n",
"('Wells Fargo', 'd4211dc0-3a6f-5822-bcd9-140182af843a')\n",
"('Chevron', '566e36f7-ee13-5d0d-8cf7-021be36fe631')\n",
"News:\n",
"[\"Tech giants show Epic support against Apple's payment rules\", \"The 30 Best Tech Deals in Amazon's Big Spring Sale -- Including Apple, Beats, Dyson, and More Up to 77% Off\", 'Meta, Microsoft slam Apple over app store policy']\n",
"['Houston Little Rascals: Three Boys, 11, 12, And 16, Arrested By FBI For Allegedly Robbing Wells Fargo Bank', \"'Little Rascals' who allegedly robbed Wells Fargo bank caught after their parents turn them in to Houston police - Conservative Angle\", \"'Little Rascals' who allegedly robbed Wells Fargo bank caught after their parents turn them in to Houston police - Conservative Angle\"]\n",
"['Chevron and JX Sign MOU for Collaboration on Development of CCS Value Chain', 'Chevron agrees to $13.1 million settlement for Kern County oil spills- Republic World', 'Chevron to pay $13M fine for California oil spills (NYSE:CVX)']\n",
"Sales:\n",
"[[25024.0]]\n",
"[[36079.0]]\n",
"[[31709.0]]\n"
]
}
],
"source": [
"results = plan.execute()\n",
"\n",
"for k, v in results.items():\n",
" if k == QueryType.COMPANY_SEARCH:\n",
" print(\"Companies:\")\n",
" if k == QueryType.SALES_SEARCH:\n",
" print(\"Sales:\")\n",
" if k == QueryType.NEWS_SEARCH:\n",
" print(\"News:\")\n",
" for val in v:\n",
" print(val)"
]
},
{
"cell_type": "code",
"execution_count": 149,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Here is the information you requested about AI companies in California, their recent news, and their sales for the last month:\n",
"\n",
"### AI Companies in California:\n",
"1. **Apple**\n",
"2. **Wells Fargo**\n",
"3. **Chevron**\n",
"\n",
"### Last Week's News Related to These Companies:\n",
"\n",
"#### Apple:\n",
"1. \"Tech giants show Epic support against Apple's payment rules\"\n",
"2. \"The 30 Best Tech Deals in Amazon's Big Spring Sale -- Including Apple, Beats, Dyson, and More Up to 77% Off\"\n",
"3. \"Meta, Microsoft slam Apple over app store policy\"\n",
"\n",
"#### Wells Fargo:\n",
"1. \"Houston Little Rascals: Three Boys, 11, 12, And 16, Arrested By FBI For Allegedly Robbing Wells Fargo Bank\"\n",
"2. \"'Little Rascals' who allegedly robbed Wells Fargo bank caught after their parents turn them in to Houston police - Conservative Angle\"\n",
"3. \"'Little Rascals' who allegedly robbed Wells Fargo bank caught after their parents turn them in to Houston police - Conservative Angle\"\n",
"\n",
"#### Chevron:\n",
"1. \"Chevron and JX Sign MOU for Collaboration on Development of CCS Value Chain\"\n",
"2. \"Chevron agrees to $13.1 million settlement for Kern County oil spills- Republic World\"\n",
"3. \"Chevron to pay $13M fine for California oil spills (NYSE:CVX)\"\n",
"\n",
"### Sales for Last Month:\n",
"1. **Apple**: $25,024.0\n",
"2. **Wells Fargo**: $36,079.0\n",
"3. **Chevron**: $31,709.0\n",
"\n",
"If you need more detailed information or further assistance, feel free to ask!\n"
]
}
],
"source": [
"answer_prompt = \"\"\"\n",
"You will respond to a user's question, based on the results of several queries.\n",
"\"\"\"\n",
"\n",
"\n",
"def generate_answer(question, results):\n",
" answer = (\n",
" client.chat.completions.create(\n",
" model=\"gpt-4o\",\n",
" messages=[\n",
" {\n",
" \"role\": \"system\",\n",
" \"content\": answer_prompt,\n",
" },\n",
" {\n",
" \"role\": \"user\",\n",
" \"content\": f\"User question: {question}\\n Query results: {results}\",\n",
" },\n",
" ],\n",
" temperature=0,\n",
" max_tokens=1000,\n",
" )\n",
" .choices[0]\n",
" .message.content\n",
" )\n",
" return answer\n",
"\n",
"\n",
"a = generate_answer(\n",
" \"Get me AI companies in California, and last weeks news related to them, and also get sales for last month for each\",\n",
" results,\n",
")\n",
"print(a)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment