mirror of
https://github.com/status-im/datasets.git
synced 2025-02-23 05:28:09 +00:00
Fix col naming
This commit is contained in:
parent
8f739efd2b
commit
142475ceb4
@ -586,7 +586,7 @@
|
||||
" qtp.append((columns[col_idx], 'Answer'))\n",
|
||||
" qtp.append((columns[col_idx], 'Topics'))\n",
|
||||
" qtp.append((columns[col_idx], 'Projects'))\n",
|
||||
" return pd.MultiIndex.from_tuples(qtp, names=('Questions', 'Answers_Topics_Projects'))\n",
|
||||
" return pd.MultiIndex.from_tuples(qtp, names=('Questions', 'id'))\n",
|
||||
" "
|
||||
]
|
||||
},
|
||||
@ -3349,7 +3349,7 @@
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 8,
|
||||
"execution_count": 17,
|
||||
"metadata": {},
|
||||
"outputs": [
|
||||
{
|
||||
@ -3379,14 +3379,6 @@
|
||||
" <th>Projects</th>\n",
|
||||
" <th>Topics</th>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>Questions</th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" </tr>\n",
|
||||
" </thead>\n",
|
||||
" <tbody>\n",
|
||||
" <tr>\n",
|
||||
@ -3884,7 +3876,6 @@
|
||||
],
|
||||
"text/plain": [
|
||||
"Answers_Topics_Projects Questions \\\n",
|
||||
"Questions \n",
|
||||
"0 Are there any other questions we should be ask... \n",
|
||||
"1 Are there any other questions we should be ask... \n",
|
||||
"2 Are there any other questions we should be ask... \n",
|
||||
@ -3948,7 +3939,6 @@
|
||||
"1455 Who are you and what are you working on? \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Name \\\n",
|
||||
"Questions \n",
|
||||
"0 (Fabio Berger + Remco Bloemen ,) \n",
|
||||
"1 (Leo Logvinov,) \n",
|
||||
"2 (Axel Ericsson,) \n",
|
||||
@ -4012,7 +4002,6 @@
|
||||
"1455 (Kames,) \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Answer \\\n",
|
||||
"Questions \n",
|
||||
"0 NaN \n",
|
||||
"1 NaN \n",
|
||||
"2 NaN \n",
|
||||
@ -4076,7 +4065,6 @@
|
||||
"1455 I am working on uPort as a community a manager... \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Projects \\\n",
|
||||
"Questions \n",
|
||||
"0 NaN \n",
|
||||
"1 NaN \n",
|
||||
"2 NaN \n",
|
||||
@ -4140,7 +4128,6 @@
|
||||
"1455 Ethereum, uPort \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Topics \n",
|
||||
"Questions \n",
|
||||
"0 NaN \n",
|
||||
"1 NaN \n",
|
||||
"2 NaN \n",
|
||||
@ -4206,13 +4193,13 @@
|
||||
"[1456 rows x 5 columns]"
|
||||
]
|
||||
},
|
||||
"execution_count": 8,
|
||||
"execution_count": 17,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"cleaned = df.set_index('Name').unstack().unstack(level=1).reset_index().rename_axis('Questions')\n",
|
||||
"cleaned = df.set_index('Name').unstack().unstack(level=1).reset_index(drop=True)\n",
|
||||
"cleaned"
|
||||
]
|
||||
},
|
||||
@ -4225,7 +4212,7 @@
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 9,
|
||||
"execution_count": 18,
|
||||
"metadata": {},
|
||||
"outputs": [
|
||||
{
|
||||
@ -4249,24 +4236,18 @@
|
||||
" <thead>\n",
|
||||
" <tr style=\"text-align: right;\">\n",
|
||||
" <th>Answers_Topics_Projects</th>\n",
|
||||
" <th>index</th>\n",
|
||||
" <th>Name</th>\n",
|
||||
" <th>Questions</th>\n",
|
||||
" <th>Answer</th>\n",
|
||||
" <th>Topics</th>\n",
|
||||
" <th>Projects</th>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>id</th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" <th></th>\n",
|
||||
" </tr>\n",
|
||||
" </thead>\n",
|
||||
" <tbody>\n",
|
||||
" <tr>\n",
|
||||
" <th>0</th>\n",
|
||||
" <td>56</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>Are there any other questions we should be ask...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4275,6 +4256,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1</th>\n",
|
||||
" <td>160</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>How do you handle smart contract verification ...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4283,6 +4265,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>2</th>\n",
|
||||
" <td>264</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>How do you handle testing?</td>\n",
|
||||
" <td>Just Truffle for tests\\nMocha for unit and fun...</td>\n",
|
||||
@ -4291,6 +4274,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>3</th>\n",
|
||||
" <td>368</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>Other bounties?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4299,6 +4283,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>4</th>\n",
|
||||
" <td>472</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>Other domain specific questions?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4307,6 +4292,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>5</th>\n",
|
||||
" <td>576</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>Was anything easier than expected?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4315,6 +4301,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>6</th>\n",
|
||||
" <td>680</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>What are the best educational resources?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4323,6 +4310,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>7</th>\n",
|
||||
" <td>784</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>What are the tools/libraries/frameworks you use?</td>\n",
|
||||
" <td>Truffle for building, testing and compiling\\nC...</td>\n",
|
||||
@ -4331,6 +4319,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>8</th>\n",
|
||||
" <td>888</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>What are you most excited about in the short t...</td>\n",
|
||||
" <td>Proof of Stake overlays will be really interes...</td>\n",
|
||||
@ -4339,6 +4328,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>9</th>\n",
|
||||
" <td>992</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>What are your biggest frustrations?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4347,6 +4337,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>10</th>\n",
|
||||
" <td>1096</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>What tools don’t exist at the moment?</td>\n",
|
||||
" <td>The community is doing a good job and a lot of...</td>\n",
|
||||
@ -4355,6 +4346,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>11</th>\n",
|
||||
" <td>1200</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>What was the hardest part about learning to de...</td>\n",
|
||||
" <td>Having a sequential getting started stuff on e...</td>\n",
|
||||
@ -4363,6 +4355,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>12</th>\n",
|
||||
" <td>1304</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>Who are the other people you think we should t...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4371,6 +4364,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>13</th>\n",
|
||||
" <td>1408</td>\n",
|
||||
" <td>Christopher Brown</td>\n",
|
||||
" <td>Who are you and what are you working on?</td>\n",
|
||||
" <td>Full stack web dev, working in finance and som...</td>\n",
|
||||
@ -4379,6 +4373,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>14</th>\n",
|
||||
" <td>45</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>Are there any other questions we should be ask...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4387,6 +4382,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>15</th>\n",
|
||||
" <td>149</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>How do you handle smart contract verification ...</td>\n",
|
||||
" <td>Write a lot of tests myself. Get other people ...</td>\n",
|
||||
@ -4395,6 +4391,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>16</th>\n",
|
||||
" <td>253</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>How do you handle testing?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4403,6 +4400,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>17</th>\n",
|
||||
" <td>357</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>Other bounties?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4411,6 +4409,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>18</th>\n",
|
||||
" <td>461</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>Other domain specific questions?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4419,6 +4418,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>19</th>\n",
|
||||
" <td>565</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>Was anything easier than expected?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4427,6 +4427,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>20</th>\n",
|
||||
" <td>669</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>What are the best educational resources?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4435,6 +4436,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>21</th>\n",
|
||||
" <td>773</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>What are the tools/libraries/frameworks you use?</td>\n",
|
||||
" <td>Truffle - not his favourite, but best thing ou...</td>\n",
|
||||
@ -4443,6 +4445,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>22</th>\n",
|
||||
" <td>877</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>What are you most excited about in the short t...</td>\n",
|
||||
" <td>What dev tools on near horizon that would chan...</td>\n",
|
||||
@ -4451,6 +4454,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>23</th>\n",
|
||||
" <td>981</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>What are your biggest frustrations?</td>\n",
|
||||
" <td>Dapps: web3js stuff sucks. In the doc, it’s in...</td>\n",
|
||||
@ -4459,6 +4463,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>24</th>\n",
|
||||
" <td>1085</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>What tools don’t exist at the moment?</td>\n",
|
||||
" <td>Things I want improved with truffle: it has a ...</td>\n",
|
||||
@ -4467,6 +4472,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>25</th>\n",
|
||||
" <td>1189</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>What was the hardest part about learning to de...</td>\n",
|
||||
" <td>A lot of tooling that isn’t there. Ecosystem i...</td>\n",
|
||||
@ -4475,6 +4481,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>26</th>\n",
|
||||
" <td>1293</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>Who are the other people you think we should t...</td>\n",
|
||||
" <td>Max Veytsman\\n</td>\n",
|
||||
@ -4483,6 +4490,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>27</th>\n",
|
||||
" <td>1397</td>\n",
|
||||
" <td>ANDREY PETROV</td>\n",
|
||||
" <td>Who are you and what are you working on?</td>\n",
|
||||
" <td>https://thousandetherhomepage.com/\\n</td>\n",
|
||||
@ -4491,6 +4499,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>28</th>\n",
|
||||
" <td>54</td>\n",
|
||||
" <td>Aaron Kumavis</td>\n",
|
||||
" <td>Are there any other questions we should be ask...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4499,6 +4508,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>29</th>\n",
|
||||
" <td>158</td>\n",
|
||||
" <td>Aaron Kumavis</td>\n",
|
||||
" <td>How do you handle smart contract verification ...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4512,9 +4522,11 @@
|
||||
" <td>...</td>\n",
|
||||
" <td>...</td>\n",
|
||||
" <td>...</td>\n",
|
||||
" <td>...</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1426</th>\n",
|
||||
" <td>1333</td>\n",
|
||||
" <td>Yaniv Tal and Brandon Ramirez</td>\n",
|
||||
" <td>Who are the other people you think we should t...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4523,6 +4535,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1427</th>\n",
|
||||
" <td>1437</td>\n",
|
||||
" <td>Yaniv Tal and Brandon Ramirez</td>\n",
|
||||
" <td>Who are you and what are you working on?</td>\n",
|
||||
" <td>Yaniv and Brandon from The Graph, query protoc...</td>\n",
|
||||
@ -4531,6 +4544,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1428</th>\n",
|
||||
" <td>72</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>Are there any other questions we should be ask...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4539,6 +4553,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1429</th>\n",
|
||||
" <td>176</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>How do you handle smart contract verification ...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4547,6 +4562,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1430</th>\n",
|
||||
" <td>280</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>How do you handle testing?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4555,6 +4571,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1431</th>\n",
|
||||
" <td>384</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>Other bounties?</td>\n",
|
||||
" <td>Hard to make links between tools.\\nIf you want...</td>\n",
|
||||
@ -4563,6 +4580,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1432</th>\n",
|
||||
" <td>488</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>Other domain specific questions?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4571,6 +4589,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1433</th>\n",
|
||||
" <td>592</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>Was anything easier than expected?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4579,6 +4598,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1434</th>\n",
|
||||
" <td>696</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>What are the best educational resources?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4587,6 +4607,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1435</th>\n",
|
||||
" <td>800</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>What are the tools/libraries/frameworks you use?</td>\n",
|
||||
" <td>Focussed on Remix and improving the UX:\\nRemix...</td>\n",
|
||||
@ -4595,6 +4616,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1436</th>\n",
|
||||
" <td>904</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>What are you most excited about in the short t...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4603,6 +4625,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1437</th>\n",
|
||||
" <td>1008</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>What are your biggest frustrations?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4611,6 +4634,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1438</th>\n",
|
||||
" <td>1112</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>What tools don’t exist at the moment?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4619,6 +4643,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1439</th>\n",
|
||||
" <td>1216</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>What was the hardest part about learning to de...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4627,6 +4652,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1440</th>\n",
|
||||
" <td>1320</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>Who are the other people you think we should t...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4635,6 +4661,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1441</th>\n",
|
||||
" <td>1424</td>\n",
|
||||
" <td>Yann Levreau</td>\n",
|
||||
" <td>Who are you and what are you working on?</td>\n",
|
||||
" <td>Working on dev tools for the Foundation for th...</td>\n",
|
||||
@ -4643,6 +4670,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1442</th>\n",
|
||||
" <td>49</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>Are there any other questions we should be ask...</td>\n",
|
||||
" <td>Have we considered Grants, for longer-term thi...</td>\n",
|
||||
@ -4651,6 +4679,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1443</th>\n",
|
||||
" <td>153</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>How do you handle smart contract verification ...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4659,6 +4688,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1444</th>\n",
|
||||
" <td>257</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>How do you handle testing?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4667,6 +4697,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1445</th>\n",
|
||||
" <td>361</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>Other bounties?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4675,6 +4706,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1446</th>\n",
|
||||
" <td>465</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>Other domain specific questions?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4683,6 +4715,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1447</th>\n",
|
||||
" <td>569</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>Was anything easier than expected?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4691,6 +4724,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1448</th>\n",
|
||||
" <td>673</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>What are the best educational resources?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4699,6 +4733,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1449</th>\n",
|
||||
" <td>777</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>What are the tools/libraries/frameworks you use?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4707,6 +4742,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1450</th>\n",
|
||||
" <td>881</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>What are you most excited about in the short t...</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4715,6 +4751,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1451</th>\n",
|
||||
" <td>985</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>What are your biggest frustrations?</td>\n",
|
||||
" <td>Livepeer that runs as Daemon, unlock your wall...</td>\n",
|
||||
@ -4723,6 +4760,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1452</th>\n",
|
||||
" <td>1089</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>What tools don’t exist at the moment?</td>\n",
|
||||
" <td>NaN</td>\n",
|
||||
@ -4731,6 +4769,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1453</th>\n",
|
||||
" <td>1193</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>What was the hardest part about learning to de...</td>\n",
|
||||
" <td>Smart contracts:\\nContract compilation time is...</td>\n",
|
||||
@ -4739,6 +4778,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1454</th>\n",
|
||||
" <td>1297</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>Who are the other people you think we should t...</td>\n",
|
||||
" <td>Guys at Aragon – Jorge or Oliver.\\nEthereum Na...</td>\n",
|
||||
@ -4747,6 +4787,7 @@
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1455</th>\n",
|
||||
" <td>1401</td>\n",
|
||||
" <td>Yondon Fu</td>\n",
|
||||
" <td>Who are you and what are you working on?</td>\n",
|
||||
" <td>Previously: working on smart contracts.\\nTruff...</td>\n",
|
||||
@ -4755,76 +4796,74 @@
|
||||
" </tr>\n",
|
||||
" </tbody>\n",
|
||||
"</table>\n",
|
||||
"<p>1456 rows × 5 columns</p>\n",
|
||||
"<p>1456 rows × 6 columns</p>\n",
|
||||
"</div>"
|
||||
],
|
||||
"text/plain": [
|
||||
"Answers_Topics_Projects Name \\\n",
|
||||
"id \n",
|
||||
"0 Christopher Brown \n",
|
||||
"1 Christopher Brown \n",
|
||||
"2 Christopher Brown \n",
|
||||
"3 Christopher Brown \n",
|
||||
"4 Christopher Brown \n",
|
||||
"5 Christopher Brown \n",
|
||||
"6 Christopher Brown \n",
|
||||
"7 Christopher Brown \n",
|
||||
"8 Christopher Brown \n",
|
||||
"9 Christopher Brown \n",
|
||||
"10 Christopher Brown \n",
|
||||
"11 Christopher Brown \n",
|
||||
"12 Christopher Brown \n",
|
||||
"13 Christopher Brown \n",
|
||||
"14 ANDREY PETROV \n",
|
||||
"15 ANDREY PETROV \n",
|
||||
"16 ANDREY PETROV \n",
|
||||
"17 ANDREY PETROV \n",
|
||||
"18 ANDREY PETROV \n",
|
||||
"19 ANDREY PETROV \n",
|
||||
"20 ANDREY PETROV \n",
|
||||
"21 ANDREY PETROV \n",
|
||||
"22 ANDREY PETROV \n",
|
||||
"23 ANDREY PETROV \n",
|
||||
"24 ANDREY PETROV \n",
|
||||
"25 ANDREY PETROV \n",
|
||||
"26 ANDREY PETROV \n",
|
||||
"27 ANDREY PETROV \n",
|
||||
"28 Aaron Kumavis \n",
|
||||
"29 Aaron Kumavis \n",
|
||||
"... ... \n",
|
||||
"1426 Yaniv Tal and Brandon Ramirez \n",
|
||||
"1427 Yaniv Tal and Brandon Ramirez \n",
|
||||
"1428 Yann Levreau \n",
|
||||
"1429 Yann Levreau \n",
|
||||
"1430 Yann Levreau \n",
|
||||
"1431 Yann Levreau \n",
|
||||
"1432 Yann Levreau \n",
|
||||
"1433 Yann Levreau \n",
|
||||
"1434 Yann Levreau \n",
|
||||
"1435 Yann Levreau \n",
|
||||
"1436 Yann Levreau \n",
|
||||
"1437 Yann Levreau \n",
|
||||
"1438 Yann Levreau \n",
|
||||
"1439 Yann Levreau \n",
|
||||
"1440 Yann Levreau \n",
|
||||
"1441 Yann Levreau \n",
|
||||
"1442 Yondon Fu \n",
|
||||
"1443 Yondon Fu \n",
|
||||
"1444 Yondon Fu \n",
|
||||
"1445 Yondon Fu \n",
|
||||
"1446 Yondon Fu \n",
|
||||
"1447 Yondon Fu \n",
|
||||
"1448 Yondon Fu \n",
|
||||
"1449 Yondon Fu \n",
|
||||
"1450 Yondon Fu \n",
|
||||
"1451 Yondon Fu \n",
|
||||
"1452 Yondon Fu \n",
|
||||
"1453 Yondon Fu \n",
|
||||
"1454 Yondon Fu \n",
|
||||
"1455 Yondon Fu \n",
|
||||
"Answers_Topics_Projects index Name \\\n",
|
||||
"0 56 Christopher Brown \n",
|
||||
"1 160 Christopher Brown \n",
|
||||
"2 264 Christopher Brown \n",
|
||||
"3 368 Christopher Brown \n",
|
||||
"4 472 Christopher Brown \n",
|
||||
"5 576 Christopher Brown \n",
|
||||
"6 680 Christopher Brown \n",
|
||||
"7 784 Christopher Brown \n",
|
||||
"8 888 Christopher Brown \n",
|
||||
"9 992 Christopher Brown \n",
|
||||
"10 1096 Christopher Brown \n",
|
||||
"11 1200 Christopher Brown \n",
|
||||
"12 1304 Christopher Brown \n",
|
||||
"13 1408 Christopher Brown \n",
|
||||
"14 45 ANDREY PETROV \n",
|
||||
"15 149 ANDREY PETROV \n",
|
||||
"16 253 ANDREY PETROV \n",
|
||||
"17 357 ANDREY PETROV \n",
|
||||
"18 461 ANDREY PETROV \n",
|
||||
"19 565 ANDREY PETROV \n",
|
||||
"20 669 ANDREY PETROV \n",
|
||||
"21 773 ANDREY PETROV \n",
|
||||
"22 877 ANDREY PETROV \n",
|
||||
"23 981 ANDREY PETROV \n",
|
||||
"24 1085 ANDREY PETROV \n",
|
||||
"25 1189 ANDREY PETROV \n",
|
||||
"26 1293 ANDREY PETROV \n",
|
||||
"27 1397 ANDREY PETROV \n",
|
||||
"28 54 Aaron Kumavis \n",
|
||||
"29 158 Aaron Kumavis \n",
|
||||
"... ... ... \n",
|
||||
"1426 1333 Yaniv Tal and Brandon Ramirez \n",
|
||||
"1427 1437 Yaniv Tal and Brandon Ramirez \n",
|
||||
"1428 72 Yann Levreau \n",
|
||||
"1429 176 Yann Levreau \n",
|
||||
"1430 280 Yann Levreau \n",
|
||||
"1431 384 Yann Levreau \n",
|
||||
"1432 488 Yann Levreau \n",
|
||||
"1433 592 Yann Levreau \n",
|
||||
"1434 696 Yann Levreau \n",
|
||||
"1435 800 Yann Levreau \n",
|
||||
"1436 904 Yann Levreau \n",
|
||||
"1437 1008 Yann Levreau \n",
|
||||
"1438 1112 Yann Levreau \n",
|
||||
"1439 1216 Yann Levreau \n",
|
||||
"1440 1320 Yann Levreau \n",
|
||||
"1441 1424 Yann Levreau \n",
|
||||
"1442 49 Yondon Fu \n",
|
||||
"1443 153 Yondon Fu \n",
|
||||
"1444 257 Yondon Fu \n",
|
||||
"1445 361 Yondon Fu \n",
|
||||
"1446 465 Yondon Fu \n",
|
||||
"1447 569 Yondon Fu \n",
|
||||
"1448 673 Yondon Fu \n",
|
||||
"1449 777 Yondon Fu \n",
|
||||
"1450 881 Yondon Fu \n",
|
||||
"1451 985 Yondon Fu \n",
|
||||
"1452 1089 Yondon Fu \n",
|
||||
"1453 1193 Yondon Fu \n",
|
||||
"1454 1297 Yondon Fu \n",
|
||||
"1455 1401 Yondon Fu \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Questions \\\n",
|
||||
"id \n",
|
||||
"0 Are there any other questions we should be ask... \n",
|
||||
"1 How do you handle smart contract verification ... \n",
|
||||
"2 How do you handle testing? \n",
|
||||
@ -4888,7 +4927,6 @@
|
||||
"1455 Who are you and what are you working on? \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Answer \\\n",
|
||||
"id \n",
|
||||
"0 NaN \n",
|
||||
"1 NaN \n",
|
||||
"2 Just Truffle for tests\\nMocha for unit and fun... \n",
|
||||
@ -4952,7 +4990,6 @@
|
||||
"1455 Previously: working on smart contracts.\\nTruff... \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Topics \\\n",
|
||||
"id \n",
|
||||
"0 NaN \n",
|
||||
"1 NaN \n",
|
||||
"2 unit tests, testing, functional tests, contact... \n",
|
||||
@ -5016,7 +5053,6 @@
|
||||
"1455 contracts, Go, video \n",
|
||||
"\n",
|
||||
"Answers_Topics_Projects Projects \n",
|
||||
"id \n",
|
||||
"0 NaN \n",
|
||||
"1 NaN \n",
|
||||
"2 Truffle, Mocha, Mthril \n",
|
||||
@ -5079,10 +5115,10 @@
|
||||
"1454 Aragon, Open Zeppelin, 0x \n",
|
||||
"1455 Geth, EVM, Parity, POA, Truffle, Testrpc \n",
|
||||
"\n",
|
||||
"[1456 rows x 5 columns]"
|
||||
"[1456 rows x 6 columns]"
|
||||
]
|
||||
},
|
||||
"execution_count": 9,
|
||||
"execution_count": 18,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
@ -5090,7 +5126,7 @@
|
||||
"source": [
|
||||
"cleaned['Name'] = cleaned['Name'].str.get(0)\n",
|
||||
"cleaned = cleaned.reindex(columns = ['Name', 'Questions', 'Answer', 'Topics', 'Projects'])\n",
|
||||
"cleaned = cleaned.sort_values(['Name', 'Questions']).reset_index(drop = True).rename_axis('id')\n",
|
||||
"cleaned = cleaned.sort_values(['Name', 'Questions']).reset_index(drop=True)\n",
|
||||
"cleaned"
|
||||
]
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user