• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:07
CEST 14:07
KST 21:07
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #22 - Voting & Ladder Map Selection2Code S Season 2 (2026) - RO8 Preview5[ASL21] Finals Preview: Two Legacies21Code S Season 2 (2026) - RO12 Preview2herO wins GSL Code S Season 1 (2026)7
Community News
[BSL22] Non-Korean Championship from 13 to 28 June0Weekly Cups (May 25-31): Clem doubles, 2v2 circuit heads toward finale0StarCraft II 5.0.16 PTR Patch Notes may 26th139Weekly Cups (May 18-24): MaxPax wins doubles0Crank Gathers Season 4: BW vs SC2 Team League5
StarCraft 2
General
StarCraft II 5.0.16 PTR Patch Notes may 26th My starcraft 2 changes The Death of Cheese: From a Professional Cheeser Oliveira Would Have Returned If EWC Continued SC2 Parody - "Somebody That I Used to Troll"
Tourneys
Maestros of The Game 2 announcement and schedule ! Sparkling Tuna Cup - Weekly Open Tournament RSL Revival: Season 5 - Qualifiers and Main Event Crank Gathers Season 4: BW vs SC2 Team League GSL Code S Season 2 (2026)
Strategy
[G] Having the right mentality to improve
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players
External Content
The PondCast: SC2 News & Results Mutation # 528 Infection Detected Welcome to the External Content forum Mutation # 527 Hell Train
Brood War
General
FlaShFTW vs A.Alm Grudge Match Event [BSL22] Non-Korean Championship from 13 to 28 June vespene.gg — BW replays in browser Quality of life changes in BW that you will like ? Data analysis on 70 million replays
Tourneys
[ASL21] Grand Finals [Megathread] Daily Proleagues Escore Tournament StarCraft Season 2 [BSL22] WB Final & LB Semis - Saturday 21:00 CEST
Strategy
Any training maps people recommend? Muta micro map competition [G] Hydra ZvZ: An Introduction Fighting Spirit mining rates
Other Games
General Games
ZeroSpace Megathread Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread Warcraft III: The Frozen Throne
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread How cold is too cold to be outdoors? Dating: How's your luck? Russo-Ukrainian War Thread Trading/Investing Thread
Fan Clubs
The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread McBoner: A hockey love story TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
Esportsmanship: How to NOT B…
TrAiDoS
Why RTS gamers make better f…
gosubay
ramps on octagon
StaticNine
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 4871 users

Fitting Data to a Complicated Function

Blogs > micronesia
Post a Reply
micronesia
Profile Blog Joined July 2006
United States24776 Posts
December 05 2012 19:08 GMT
#1
Often in science we use equipment to collect data, and then test to see how well the data fits a theoretical equation. This is easy to do using Microsoft Excel when the theory is a linear equation, parabolic, or one of several other fitting functions that are built-in using the 'trendline' feature. However, how do you fit data to a curve when the equation of the curve is not one of the built-in functions?

First you need to install the Solver add-on, if it isn't already activated in your Excel. Here is Microsoft's Guide for how to do this: http://office.microsoft.com/en-us/excel-help/load-the-solver-add-in-HP010021570.aspx . In the 2007 version of Excel, you know the solver is already available if you see it all the way on the right side of the 'data' tab under 'data analysis.'

I will explain this procedure by using an example, and explaining each step along the way. It is very simple to calculating standard deviation, so feel free to review how to calculate standard deviation if you want some mathematical understanding of why I use the steps I do. Resources for standard deviation are readily available online, and I don't want to make this guide too long (nor am I an expert in statistics by any means).

Suppose we have the following data:

[image loading]


This data was measured using laboratory equipment. I am going to avoid addressing uncertainty/error to keep this simple, so let's assume we have the same uncertainty attached to each data point (I will also neglect vertical error bars for this demonstration). According to scientific theory, the equation that should relate the time in seconds and data in meters is:

[image loading]


I picked this formula because it is not available as a built-in Excel trend-line, but is a simple formula to use. I have no idea what the practical applications of this particular formula are.

The question I will show you how to solve is: For what values of A and B does the data best fit the theory? The first thing to do (after placing the data, shown above, into a spreadsheet) is to dedicate cells to house the values of A and B (if the equation was more complicated, you would need more than two cells). Here is my spreadsheet so far:

[image loading]


The next column over will be the 'theoretical' data: in other words, the f(t) values you get for each value of t using the equation (shown above). These values depend on the value of A, and B, so I will pick some arbitrary values for A and B to allow the cells C2 to C11 to populate. My spreadsheet looks like this:

[image loading]


The code for cell C2 is:
=$B$13*A2+$B$14/A2

The code for cell C3 is:
=$B$13*A3+$B$14/A3

etc

Notice the dollar signs ($) before the letter and number of cells B13 and B14. This is called 'referencing' the cell. In other words, when you drag cell C2 down to populate cells C3 through C11 (or use the fill option), you want "A2" in the formula to change to A3, A4, etc, but you always want cells B13 and B14 to remain the same. The way to tell Excel not to look at cells B14 and B15 when calculating the value of cell C3 is to reference any mention of B13 and B14 in the formula for cell C2 before populating cells C3 through C11. You either do this by manually typing dollar signs as shown above, or by hitting the 'f4' key directly after typing in the name of the cell you want to reference. For example, the way I typed the code for C2 was:

  1. =
  2. B13
  3. F4 key
  4. *
  5. A2
  6. +
  7. B14
  8. F4 key
  9. /
  10. A2
  11. enter


Unless you picked really good values for A and B, the values in the data column and the theory column are probably way off. The next column you will need is a 'difference' column. It will calculate the difference between the theoretical values and the data values for each time. For example, cell D2's code is: "=C2-B2" Although if you did B2-C2 that would work also. The final column you need I will call "square" because you are going to square the values of column D. For example, the code for cell E2 should be "=D2^2" The spreadsheet now looks like this:

[image loading]


Next we need to add up the values in the square column. I put the word "sum" in cell D12 and then put the actual sum in cell E12 with the code "=SUM(E2:E11)" It looks like this:

[image loading]


Now click on the 'solver' located under the Data tab of Excel. Use these settings:

[image loading]


The target cell, in this case E12, needs to be minimized by adjusting the values of A, and B. Click 'solve' and it will give you the best result it could find. I plotted the data and the theoretical data:

[image loading]


So in conclusion, with the given data and expected theoretical curve, values of A=1.74 and B=9.53 best fit the data. I won't go into determining how well it fits the data, as that gets more much complicated, but is also much more useful!

As a final tip, how would you fit data to an equation of a sine wave over x^2? I would do it as such:

f(x) = A*sin(B*x+C)/x^2+D

I would have the solver minimize the squares column by changing the values of A, B, C, and D.

Notice I needed more fitting parameters that time! This topic can actually be fun, so play around with it!

*****
ModeratorThere are animal crackers for people and there are people crackers for animals.
Otolia
Profile Blog Joined July 2011
France5805 Posts
December 05 2012 19:21 GMT
#2
You could also use a program like SciDaVis or LabPlot (both are Open Source but un-maintained). In fact anything beside basic fitting (usual functions) should be done with a dedicated program because you need to know which algorithm was used to do the fitting.

Still as an how-to for basic plot fitting this is well written.
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
December 05 2012 19:38 GMT
#3
I do these type of fits with Mathematica, though it kinda takes the "magic" out of it. In the case of your example, I would give the command ("data" is the array of datapoints):
Fit[data, {x, 1/x}, x]
and the program will obtain the best coefficients for a fit with a linear combination of x and 1/x (so a * x + b * 1/x).

A similar function is available for the non-linear fitting-function in your final example.
Such flammable little insects!
infinity21 *
Profile Blog Joined October 2006
Canada6683 Posts
December 05 2012 19:38 GMT
#4
I wouldn't recommend limiting yourself to a certain formula without strong theoretical reasons or a good intuition about the underlying structure of the data.
If you want the line of best fit, you could look at something like LOESS to do some smoothing.
Official Entusman #21
micronesia
Profile Blog Joined July 2006
United States24776 Posts
December 05 2012 19:42 GMT
#5
Good points. From a learning perspective I find doing it all manually has benefits, but I doubt most scientists do it this way.
ModeratorThere are animal crackers for people and there are people crackers for animals.
RAGEMOAR The Pope
Profile Joined February 2011
United States216 Posts
December 05 2012 19:58 GMT
#6
That's not the most efficient way of doing it in excel. Excel's built in solver algorithm is pretty shitty at coming up with points that aren't near the "initial guesses" and can often send you to a non-global min / max.

I don't recall the exact method, but you essentially want to divide the error term by one of the variables to get each individual error term close to one.
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
December 05 2012 19:59 GMT
#7
On December 06 2012 04:42 micronesia wrote:
Good points. From a learning perspective I find doing it all manually has benefits, but I doubt most scientists do it this way.


It gets a bit redundant to do all the fitting manually after doing it a bunch of times. So I like the methods of automation that are at my disposal.

The real fun is when you don't know which function fits the underlying data well. Guessing the correct form of the function is interesting. That is, if you don't go for the easy way out and just pick the polynomial of degree n-1 (for n datapoints) that perfectly fits your data ^^
Such flammable little insects!
Iranon
Profile Blog Joined March 2010
United States983 Posts
Last Edited: 2012-12-05 20:17:48
December 05 2012 20:14 GMT
#8
On December 06 2012 04:08 micronesia wrote:
As a final tip, how would you fit data to an equation of a sine wave over x^2? I would do it as such:

f(x) = A*sin(B*x+C)/x^2+D

I would have the solver minimize the squares column by changing the values of A, B, C, and D.

This is fine; you need all four of those constants (period adjustment, amplitude adjustment, left/right translations, up/down translations), and without more insight into whatever quantity you're trying to model there's no reason to include other terms.

Edit: I'm sure you know this, but just in case, if the whole thing stabilizes around some nonzero value, keep it as you wrote it, but if the whole thing eventually drops to [near] zero, put the D on top of the fraction (i.e. (Asin(Bx+C)+D)/x^2).
snively
Profile Blog Joined August 2011
United States1159 Posts
December 05 2012 21:04 GMT
#9
if u wanted to do it by hand how would you do it
My religion is Starcraft
micronesia
Profile Blog Joined July 2006
United States24776 Posts
December 05 2012 21:59 GMT
#10
On December 06 2012 06:04 snively wrote:
if u wanted to do it by hand how would you do it

Calculating the sum of the squares of the differences wouldn't be bad by hand (for reasonable number of data points), but actually minimizing the sum by modifying the values of A and B (what the solver does) would be quite difficult to do by hand, and I don't know how you would.
ModeratorThere are animal crackers for people and there are people crackers for animals.
ZpuX
Profile Blog Joined December 2002
Sweden1230 Posts
December 05 2012 22:05 GMT
#11
Sounds like a function using the least square method... I think a lesson on how it works and a way to write it would make more sense since you seldom know the function of the measured data. I don't really agree on skipping the part of how accurate the result is, as that's all the reasoning behind using the technique. I would also believe this is the most accurate result you will get as you have minimized the error as much as possible without any oscillations between the points, which is usually a problem as the error goes to zero.
Really, play for fun!
micronesia
Profile Blog Joined July 2006
United States24776 Posts
December 05 2012 22:17 GMT
#12
On December 06 2012 07:05 ZpuX wrote:
Sounds like a function using the least square method... I think a lesson on how it works and a way to write it would make more sense since you seldom know the function of the measured data.

I often find myself knowing the formula... of course it depends on what you are doing. I can't really justify doing a lesson on how it works without already doing pretty much everything in the OP, so you are implying I would have been better off covering more material or doing nothing, which I don't agree with (this may not have been your intention). This has its uses and limitations, and I was up front about that.

I don't really agree on skipping the part of how accurate the result is, as that's all the reasoning behind using the technique.

For people who really want/need to understand the theory here and how to apply it to their experiment, they are going to need to branch away from what I can explain to them (I'm no statistician either). The purpose of this is to provide a mini knowhow-esque guide to how you can use excel to minimize the deviation of a function to a list of data points, without having a program do all of the work for you (of course the solver itself is utilized in this method).

I encourage you to write a guide on the things I haven't addressed, though!
ModeratorThere are animal crackers for people and there are people crackers for animals.
ZpuX
Profile Blog Joined December 2002
Sweden1230 Posts
December 05 2012 23:10 GMT
#13
On December 06 2012 07:17 micronesia wrote:
Show nested quote +
On December 06 2012 07:05 ZpuX wrote:
Sounds like a function using the least square method... I think a lesson on how it works and a way to write it would make more sense since you seldom know the function of the measured data.

I often find myself knowing the formula... of course it depends on what you are doing. I can't really justify doing a lesson on how it works without already doing pretty much everything in the OP, so you are implying I would have been better off covering more material or doing nothing, which I don't agree with (this may not have been your intention). This has its uses and limitations, and I was up front about that.

Show nested quote +
I don't really agree on skipping the part of how accurate the result is, as that's all the reasoning behind using the technique.

For people who really want/need to understand the theory here and how to apply it to their experiment, they are going to need to branch away from what I can explain to them (I'm no statistician either). The purpose of this is to provide a mini knowhow-esque guide to how you can use excel to minimize the deviation of a function to a list of data points, without having a program do all of the work for you (of course the solver itself is utilized in this method).

I encourage you to write a guide on the things I haven't addressed, though!

Fair enough After both teaching and using quite a lot of numerical methods, both curve fitting and function solving, it just felt so wrong to see you explain the excel steps in such detail while not discussing the actual methods at hand
Really, play for fun!
infinity21 *
Profile Blog Joined October 2006
Canada6683 Posts
Last Edited: 2012-12-05 23:22:51
December 05 2012 23:13 GMT
#14
On December 06 2012 07:17 micronesia wrote:
Show nested quote +
On December 06 2012 07:05 ZpuX wrote:
Sounds like a function using the least square method... I think a lesson on how it works and a way to write it would make more sense since you seldom know the function of the measured data.

I often find myself knowing the formula... of course it depends on what you are doing. I can't really justify doing a lesson on how it works without already doing pretty much everything in the OP, so you are implying I would have been better off covering more material or doing nothing, which I don't agree with (this may not have been your intention). This has its uses and limitations, and I was up front about that.

Show nested quote +
I don't really agree on skipping the part of how accurate the result is, as that's all the reasoning behind using the technique.

For people who really want/need to understand the theory here and how to apply it to their experiment, they are going to need to branch away from what I can explain to them (I'm no statistician either). The purpose of this is to provide a mini knowhow-esque guide to how you can use excel to minimize the deviation of a function to a list of data points, without having a program do all of the work for you (of course the solver itself is utilized in this method).

I encourage you to write a guide on the things I haven't addressed, though!

Can you give some examples of scenarios where you know the right formula to use? Is this more common in physics and/or in the classroom?

I agree that you have to draw the line somewhere. The section for when you don't know the underlying function is an entire field of study in itself. You could also play around with different cost functions (e.g. absolute difference vs. square difference) and other underlying functions to show the bias/variance trade-off (i.e. under/overfitting).

On December 06 2012 07:05 ZpuX wrote:
Sounds like a function using the least square method... I think a lesson on how it works and a way to write it would make more sense since you seldom know the function of the measured data. I don't really agree on skipping the part of how accurate the result is, as that's all the reasoning behind using the technique. I would also believe this is the most accurate result you will get as you have minimized the error as much as possible without any oscillations between the points, which is usually a problem as the error goes to zero.

There are functions that have many local optima and finding a global minimum heuristically (or however Excel does it) would be impossible so your last point is not necessarily true.
Official Entusman #21
micronesia
Profile Blog Joined July 2006
United States24776 Posts
December 05 2012 23:38 GMT
#15
On December 06 2012 08:13 infinity21 wrote:
Show nested quote +
On December 06 2012 07:17 micronesia wrote:
On December 06 2012 07:05 ZpuX wrote:
Sounds like a function using the least square method... I think a lesson on how it works and a way to write it would make more sense since you seldom know the function of the measured data.

I often find myself knowing the formula... of course it depends on what you are doing. I can't really justify doing a lesson on how it works without already doing pretty much everything in the OP, so you are implying I would have been better off covering more material or doing nothing, which I don't agree with (this may not have been your intention). This has its uses and limitations, and I was up front about that.

I don't really agree on skipping the part of how accurate the result is, as that's all the reasoning behind using the technique.

For people who really want/need to understand the theory here and how to apply it to their experiment, they are going to need to branch away from what I can explain to them (I'm no statistician either). The purpose of this is to provide a mini knowhow-esque guide to how you can use excel to minimize the deviation of a function to a list of data points, without having a program do all of the work for you (of course the solver itself is utilized in this method).

I encourage you to write a guide on the things I haven't addressed, though!

Can you give some examples of scenarios where you know the right formula to use? Is this more common in physics and/or in the classroom?

Most of the labs I did in physics classes in college required me to experimentally determine constants and compare them to known values. In these cases, you know the type of equation based on the theory, and use the experiment simply to determine the constants within the equations. For example...

Measure the electric field strength on the axis of a charged ring as a function of distance from the center of the ring.

You know from theory that the electric field looks like A*x / (x^2+B^2)^(3/2), and simply compare the values of A and B to what you would expect based on the amount of charge, size of ring, etc.

Of course there are many other applications of these techniques besides verifying formulas.
ModeratorThere are animal crackers for people and there are people crackers for animals.
infinity21 *
Profile Blog Joined October 2006
Canada6683 Posts
December 05 2012 23:55 GMT
#16
Yeah, I just wanted to get a sense of what kind of scenarios you were using this in. I figured your experience with this was physics related.

To verify that your model is a good fit, you'll have to plot the residuals and test for homoscedasticity, use it for prediction on a different set of data and measure the error compared to other functions, etc.

I'm a statistics major so I could talk about this stuff for hours on end lol
Official Entusman #21
sabreace
Profile Joined May 2012
United States27 Posts
December 06 2012 01:09 GMT
#17
I picked this formula because it is not available as a built-in Excel trend-line, but is a simple formula to use. I have no idea what the practical applications of this particular formula are.


For your random knowledge, one practical application for the formula relates the viscosity of the polymer, which you measure with one of these cool things, with the average molecular weight of the polymer chain.

So... uh..... science!
>Relax you're doing fine.
Iranon
Profile Blog Joined March 2010
United States983 Posts
December 06 2012 01:15 GMT
#18
On December 06 2012 08:13 infinity21 wrote:
Can you give some examples of scenarios where you know the right formula to use? Is this more common in physics and/or in the classroom?

I know micronesia already answered your post, but this is more common that you might think in any sort of real-world modeling. The "standard" way to model a system (say, a population) is to write down a whole bunch of things that affect how it changes over time -- i.e. it grows proportional to this, shrinks proportional to this, grows inversely proportional to that, has an upper limit somewhere around here, and is stable when this other quantity is small -- and add them all up to yield a rough guess at what the derivative of that population with respect to time is. Using either knowledge of solutions to similar differential equations, a computer algebra system, or black magic, turn this into an expression for the population size as a function of time. Of course, you won't just get a function of time, you'll get a function of time and all those proportionality constants and other parameters. That's exactly the situation that the OP described. From there, you play around with possible values of all those constants, and settle on using the ones that produce curves that more or less appear to match your data. If you can't find any, reexamine the assumptions you made about the derivative and start over with the appropriate modifications.
infinity21 *
Profile Blog Joined October 2006
Canada6683 Posts
December 06 2012 01:48 GMT
#19
On December 06 2012 10:15 Iranon wrote:
Show nested quote +
On December 06 2012 08:13 infinity21 wrote:
Can you give some examples of scenarios where you know the right formula to use? Is this more common in physics and/or in the classroom?

I know micronesia already answered your post, but this is more common that you might think in any sort of real-world modeling. The "standard" way to model a system (say, a population) is to write down a whole bunch of things that affect how it changes over time -- i.e. it grows proportional to this, shrinks proportional to this, grows inversely proportional to that, has an upper limit somewhere around here, and is stable when this other quantity is small -- and add them all up to yield a rough guess at what the derivative of that population with respect to time is. Using either knowledge of solutions to similar differential equations, a computer algebra system, or black magic, turn this into an expression for the population size as a function of time. Of course, you won't just get a function of time, you'll get a function of time and all those proportionality constants and other parameters. That's exactly the situation that the OP described. From there, you play around with possible values of all those constants, and settle on using the ones that produce curves that more or less appear to match your data. If you can't find any, reexamine the assumptions you made about the derivative and start over with the appropriate modifications.

Yeah, I remember doing something like this in an intro to differential equations class. There are certainly scenarios in which known universal relationships between variables exist (e.g. physics) and scenarios in which certain assumptions, whether or not they're true, can help you model (e.g. population growth/decay).

For statistics, you rarely have these strong known/assumed properties so the focus is more on finding these underlying structures rather than knowing/assuming it from the get-go.
Official Entusman #21
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
11:00
#10
IntoTheiNu 711
WardiTV625
SteadfastSC114
Rex102
Liquipedia
The PondCast
10:00
Episode 95
CranKy Ducklings SOOP36
CranKy Ducklings27
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 455
SteadfastSC 114
Rex 102
ProTech85
gerald23 26
StarCraft: Brood War
Britney 38915
Rain 18609
Calm 11251
Shuttle 1548
Horang2 735
actioN 670
Mini 507
BeSt 283
EffOrt 173
Last 165
[ Show more ]
Pusan 154
ggaemo 147
Hyuk 127
Sharp 119
Rush 119
Zeus 97
hero 97
ToSsGirL 62
Shine 60
PianO 54
Shinee 42
JYJ 35
[sc1f]eonzerg 31
sorry 28
sSak 23
Sacsri 19
IntoTheRainbow 16
Movie 15
zelot 14
Hm[arnc] 13
ajuk12(nOOB) 8
Noble 8
Icarus 4
Terrorterran 1
Dota 2
Dendi766
XcaliburYe51
League of Legends
Reynor75
Counter-Strike
olofmeister2449
zeus875
allub249
kRYSTAL_0
Other Games
singsing1325
B2W.Neo627
Lowko414
DeMusliM194
Livibee71
Hui .11
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 31
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis6554
• Jankos2819
• TFBlade327
Upcoming Events
uThermal 2v2 Circuit
2h 54m
Maestros of the Game
3h 24m
ByuN vs herO
Rogue vs Bunny
Replay Cast
11h 54m
Replay Cast
20h 54m
WardiTV Spring Champion…
22h 54m
OSC
1d
Maestros of the Game
1d 3h
Serral vs Percival
SHIN vs ShoWTimE
Replay Cast
1d 20h
uThermal 2v2 Circuit
2 days
Maestros of the Game
2 days
Clem vs Lambo
Zoun vs SKillous
[ Show More ]
Replay Cast
2 days
Solar vs Classic
uThermal 2v2 Circuit
3 days
Grudge Match
3 days
FlaShFTW vs A.Alm
GSL
3 days
herO vs Rogue
Maru vs Cure
Patches Events
4 days
uThermal 2v2 Circuit
4 days
BSL
4 days
Replay Cast
4 days
Monday Night Weeklies
5 days
Sparkling Tuna Cup
5 days
Replay Cast
6 days
Kung Fu Cup
6 days
Liquipedia Results

Completed

KK 2v2 League Season 1
RSL Revival: Season 5
Heroes Pulsing #1

Ongoing

BSL Season 22
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
CSCL: Masked Kings S4
YSL S3
SCTL 2026 Spring
WardiTV Spring 2026
Maestros of the Game 2
2026 GSL S2
Murky Cup 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026

Upcoming

BSL 22 Non-Korean Championship
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
uThermal 2v2 2026 Main Event
Heroes Pulsing #3
Heroes Pulsing #2
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.