Skip to content

Commit 1ef8f61

Browse files
committed
analysis-1
1 parent c2abb93 commit 1ef8f61

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/_analysis/Analysis-1.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,14 @@ df_unit = pd.DataFrame([
5555
After exporting these as csv files, we imported them into MySQL for querying to merge and clean the tables.
5656

5757
{% highlight ruby %}
58+
# Uncleaned Augments
5859
select * from df_augments;
5960
{% endhighlight %}
6061

6162
![uncleaned](/assets/images/tft1/uncleaned.png)
6263

6364
{% highlight ruby %}
64-
### Cleaned Augments
65+
# Cleaned Augments
6566
select match_number, participant_placement, name, CASE WHEN da.participant_placement = 1 THEN 1 ELSE 0 END as First
6667
from df_augments da left join df_augment_static das on da.participant_augments = das.id;
6768
{% endhighlight %}
-1.75 KB
Loading

0 commit comments

Comments
 (0)