How often does castling occur in grandmaster games?
May I know how to find in all grandmaster games, what the percentage of each of the following is?
- Kingside castling
- Queenside castling
- Never castled by the end of the game but still has the right to castle
- Lost the right to castle
Note When one side has castled more than once in a game, only the first castle counts.
statistics castling grandmaster
add a comment |
May I know how to find in all grandmaster games, what the percentage of each of the following is?
- Kingside castling
- Queenside castling
- Never castled by the end of the game but still has the right to castle
- Lost the right to castle
Note When one side has castled more than once in a game, only the first castle counts.
statistics castling grandmaster
2
By "all grandmaster games" you mean all such games in a certain database you have?
– user1583209
Apr 18 at 5:20
Do you need this separately for white and black? (Percentage of white kingside castling, etc?)
– user1583209
Apr 18 at 5:22
@user1583209, I do not have any certain database in my mind. If the percentage is available separately for white and black, it will be preferred.
– Zuriel
Apr 18 at 12:46
No player may ever castle twice in a game, since castling and then moving the king back to a position from which it could castle again requires at least one king move, disqualifying it from ever castling again.
– user45266
Apr 19 at 4:26
3
@user45266 It's an illegal move, but as per OP's link, some historical games do contain illegal moves that nobody caught at the time.
– Geoffrey Brent
Apr 19 at 6:58
add a comment |
May I know how to find in all grandmaster games, what the percentage of each of the following is?
- Kingside castling
- Queenside castling
- Never castled by the end of the game but still has the right to castle
- Lost the right to castle
Note When one side has castled more than once in a game, only the first castle counts.
statistics castling grandmaster
May I know how to find in all grandmaster games, what the percentage of each of the following is?
- Kingside castling
- Queenside castling
- Never castled by the end of the game but still has the right to castle
- Lost the right to castle
Note When one side has castled more than once in a game, only the first castle counts.
statistics castling grandmaster
statistics castling grandmaster
edited Apr 18 at 12:44
Glorfindel
13.2k43664
13.2k43664
asked Apr 18 at 5:07
ZurielZuriel
862415
862415
2
By "all grandmaster games" you mean all such games in a certain database you have?
– user1583209
Apr 18 at 5:20
Do you need this separately for white and black? (Percentage of white kingside castling, etc?)
– user1583209
Apr 18 at 5:22
@user1583209, I do not have any certain database in my mind. If the percentage is available separately for white and black, it will be preferred.
– Zuriel
Apr 18 at 12:46
No player may ever castle twice in a game, since castling and then moving the king back to a position from which it could castle again requires at least one king move, disqualifying it from ever castling again.
– user45266
Apr 19 at 4:26
3
@user45266 It's an illegal move, but as per OP's link, some historical games do contain illegal moves that nobody caught at the time.
– Geoffrey Brent
Apr 19 at 6:58
add a comment |
2
By "all grandmaster games" you mean all such games in a certain database you have?
– user1583209
Apr 18 at 5:20
Do you need this separately for white and black? (Percentage of white kingside castling, etc?)
– user1583209
Apr 18 at 5:22
@user1583209, I do not have any certain database in my mind. If the percentage is available separately for white and black, it will be preferred.
– Zuriel
Apr 18 at 12:46
No player may ever castle twice in a game, since castling and then moving the king back to a position from which it could castle again requires at least one king move, disqualifying it from ever castling again.
– user45266
Apr 19 at 4:26
3
@user45266 It's an illegal move, but as per OP's link, some historical games do contain illegal moves that nobody caught at the time.
– Geoffrey Brent
Apr 19 at 6:58
2
2
By "all grandmaster games" you mean all such games in a certain database you have?
– user1583209
Apr 18 at 5:20
By "all grandmaster games" you mean all such games in a certain database you have?
– user1583209
Apr 18 at 5:20
Do you need this separately for white and black? (Percentage of white kingside castling, etc?)
– user1583209
Apr 18 at 5:22
Do you need this separately for white and black? (Percentage of white kingside castling, etc?)
– user1583209
Apr 18 at 5:22
@user1583209, I do not have any certain database in my mind. If the percentage is available separately for white and black, it will be preferred.
– Zuriel
Apr 18 at 12:46
@user1583209, I do not have any certain database in my mind. If the percentage is available separately for white and black, it will be preferred.
– Zuriel
Apr 18 at 12:46
No player may ever castle twice in a game, since castling and then moving the king back to a position from which it could castle again requires at least one king move, disqualifying it from ever castling again.
– user45266
Apr 19 at 4:26
No player may ever castle twice in a game, since castling and then moving the king back to a position from which it could castle again requires at least one king move, disqualifying it from ever castling again.
– user45266
Apr 19 at 4:26
3
3
@user45266 It's an illegal move, but as per OP's link, some historical games do contain illegal moves that nobody caught at the time.
– Geoffrey Brent
Apr 19 at 6:58
@user45266 It's an illegal move, but as per OP's link, some historical games do contain illegal moves that nobody caught at the time.
– Geoffrey Brent
Apr 19 at 6:58
add a comment |
2 Answers
2
active
oldest
votes
If you are prepared to use standard Linux command-line tools like wc
and grep
then I think my free PGN processor, pgn-extract, will do much of the pre-processing necessary to count games in each category. Below is a basic bash script I put together as a proof of concept. It assumes your file of games is called inputfile.pgn
- adjust as necessary, or pass it in as a command-line argument:
#!/bin/bash
# Output stats on castling.
src=inputfile.pgn
# Pre-process the games to allow textual analysis.
pgn-extract -C -V -N --notags --nochecks --linelength 10000 -s -o stripped.pgn ${src}
# Castling by white: detect a preceding move number.
grep '. O-O ' stripped.pgn > Wkingside.pgn
grep '. O-O-O ' stripped.pgn > Wqueenside.pgn
# Castling by black: detect no preceding move number.
grep '[^.] O-O ' stripped.pgn > Bkingside.pgn
grep '[^.] O-O-O ' stripped.pgn > Bqueenside.pgn
# Find games in which no castling occurred.
grep -v ' O-O ' stripped.pgn | grep -v ' O-O-O ' | grep -v '^$' > nocastle.pgn
# Output the FEN of the final position to include castling rights and
# look for the presence of rights.
pgn-extract -C -V -N --notags --nomovenumbers --linelength 10000 -s nocastle.pgn --dropply -1 -F | grep ' [wb] [KkQq]' > rights.txt
# Output the results - assumes valid Result tags in the source.
echo 'Number of games: ' `grep '^[Result ' ${src} | wc -l`
echo 'W Kingside: ' `cat Wkingside.pgn | wc -l`
echo 'W Queenside: ' `cat Wqueenside.pgn | wc -l`
echo 'B Kingside: ' `cat Bkingside.pgn | wc -l`
echo 'B Queenside: ' `cat Bqueenside.pgn | wc -l`
echo 'Neither: ' `cat nocastle.pgn | wc -l`
echo 'Rights retained: ' `cat rights.txt | wc -l`
I tried the script on the KingBase database (Apr 2019) and, after removing broken games and duplicates got the following stats:
Number of games: 2072354
W Kingside: 1633762
W Queenside: 246158
B Kingside: 1670870
B Queenside: 128124
Neither: 69776
Rights retained: 24280
The 'neither' figure is about 3.4% while the 'rights retained' figure is about 1.2%. If games with 20 or fewer ply are removed then the 'neither' figure reduces to about 2.9% and the 'rights retained' figure to about 0.7%.
1
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
6
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
1
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
1
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
|
show 6 more comments
Just googling for "castling statistics" already yields a few results; even though the analysis is done on a different set of games than 'all grandmaster games', it gives a rough indication.
- 50 world class players
- 2 million games in the MillionBase database
Kingside castling is done by 80-81% of the players, and queen side castling by 8-9%. I estimate that Never castled by the end of the game but still has the right to castle is negligible (less than 0.1%, since it requires a very short game). So that leaves about 11% for the final group Lost the right to castle.
1
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
1
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
add a comment |
protected by Phonon Apr 20 at 12:10
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you are prepared to use standard Linux command-line tools like wc
and grep
then I think my free PGN processor, pgn-extract, will do much of the pre-processing necessary to count games in each category. Below is a basic bash script I put together as a proof of concept. It assumes your file of games is called inputfile.pgn
- adjust as necessary, or pass it in as a command-line argument:
#!/bin/bash
# Output stats on castling.
src=inputfile.pgn
# Pre-process the games to allow textual analysis.
pgn-extract -C -V -N --notags --nochecks --linelength 10000 -s -o stripped.pgn ${src}
# Castling by white: detect a preceding move number.
grep '. O-O ' stripped.pgn > Wkingside.pgn
grep '. O-O-O ' stripped.pgn > Wqueenside.pgn
# Castling by black: detect no preceding move number.
grep '[^.] O-O ' stripped.pgn > Bkingside.pgn
grep '[^.] O-O-O ' stripped.pgn > Bqueenside.pgn
# Find games in which no castling occurred.
grep -v ' O-O ' stripped.pgn | grep -v ' O-O-O ' | grep -v '^$' > nocastle.pgn
# Output the FEN of the final position to include castling rights and
# look for the presence of rights.
pgn-extract -C -V -N --notags --nomovenumbers --linelength 10000 -s nocastle.pgn --dropply -1 -F | grep ' [wb] [KkQq]' > rights.txt
# Output the results - assumes valid Result tags in the source.
echo 'Number of games: ' `grep '^[Result ' ${src} | wc -l`
echo 'W Kingside: ' `cat Wkingside.pgn | wc -l`
echo 'W Queenside: ' `cat Wqueenside.pgn | wc -l`
echo 'B Kingside: ' `cat Bkingside.pgn | wc -l`
echo 'B Queenside: ' `cat Bqueenside.pgn | wc -l`
echo 'Neither: ' `cat nocastle.pgn | wc -l`
echo 'Rights retained: ' `cat rights.txt | wc -l`
I tried the script on the KingBase database (Apr 2019) and, after removing broken games and duplicates got the following stats:
Number of games: 2072354
W Kingside: 1633762
W Queenside: 246158
B Kingside: 1670870
B Queenside: 128124
Neither: 69776
Rights retained: 24280
The 'neither' figure is about 3.4% while the 'rights retained' figure is about 1.2%. If games with 20 or fewer ply are removed then the 'neither' figure reduces to about 2.9% and the 'rights retained' figure to about 0.7%.
1
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
6
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
1
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
1
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
|
show 6 more comments
If you are prepared to use standard Linux command-line tools like wc
and grep
then I think my free PGN processor, pgn-extract, will do much of the pre-processing necessary to count games in each category. Below is a basic bash script I put together as a proof of concept. It assumes your file of games is called inputfile.pgn
- adjust as necessary, or pass it in as a command-line argument:
#!/bin/bash
# Output stats on castling.
src=inputfile.pgn
# Pre-process the games to allow textual analysis.
pgn-extract -C -V -N --notags --nochecks --linelength 10000 -s -o stripped.pgn ${src}
# Castling by white: detect a preceding move number.
grep '. O-O ' stripped.pgn > Wkingside.pgn
grep '. O-O-O ' stripped.pgn > Wqueenside.pgn
# Castling by black: detect no preceding move number.
grep '[^.] O-O ' stripped.pgn > Bkingside.pgn
grep '[^.] O-O-O ' stripped.pgn > Bqueenside.pgn
# Find games in which no castling occurred.
grep -v ' O-O ' stripped.pgn | grep -v ' O-O-O ' | grep -v '^$' > nocastle.pgn
# Output the FEN of the final position to include castling rights and
# look for the presence of rights.
pgn-extract -C -V -N --notags --nomovenumbers --linelength 10000 -s nocastle.pgn --dropply -1 -F | grep ' [wb] [KkQq]' > rights.txt
# Output the results - assumes valid Result tags in the source.
echo 'Number of games: ' `grep '^[Result ' ${src} | wc -l`
echo 'W Kingside: ' `cat Wkingside.pgn | wc -l`
echo 'W Queenside: ' `cat Wqueenside.pgn | wc -l`
echo 'B Kingside: ' `cat Bkingside.pgn | wc -l`
echo 'B Queenside: ' `cat Bqueenside.pgn | wc -l`
echo 'Neither: ' `cat nocastle.pgn | wc -l`
echo 'Rights retained: ' `cat rights.txt | wc -l`
I tried the script on the KingBase database (Apr 2019) and, after removing broken games and duplicates got the following stats:
Number of games: 2072354
W Kingside: 1633762
W Queenside: 246158
B Kingside: 1670870
B Queenside: 128124
Neither: 69776
Rights retained: 24280
The 'neither' figure is about 3.4% while the 'rights retained' figure is about 1.2%. If games with 20 or fewer ply are removed then the 'neither' figure reduces to about 2.9% and the 'rights retained' figure to about 0.7%.
1
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
6
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
1
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
1
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
|
show 6 more comments
If you are prepared to use standard Linux command-line tools like wc
and grep
then I think my free PGN processor, pgn-extract, will do much of the pre-processing necessary to count games in each category. Below is a basic bash script I put together as a proof of concept. It assumes your file of games is called inputfile.pgn
- adjust as necessary, or pass it in as a command-line argument:
#!/bin/bash
# Output stats on castling.
src=inputfile.pgn
# Pre-process the games to allow textual analysis.
pgn-extract -C -V -N --notags --nochecks --linelength 10000 -s -o stripped.pgn ${src}
# Castling by white: detect a preceding move number.
grep '. O-O ' stripped.pgn > Wkingside.pgn
grep '. O-O-O ' stripped.pgn > Wqueenside.pgn
# Castling by black: detect no preceding move number.
grep '[^.] O-O ' stripped.pgn > Bkingside.pgn
grep '[^.] O-O-O ' stripped.pgn > Bqueenside.pgn
# Find games in which no castling occurred.
grep -v ' O-O ' stripped.pgn | grep -v ' O-O-O ' | grep -v '^$' > nocastle.pgn
# Output the FEN of the final position to include castling rights and
# look for the presence of rights.
pgn-extract -C -V -N --notags --nomovenumbers --linelength 10000 -s nocastle.pgn --dropply -1 -F | grep ' [wb] [KkQq]' > rights.txt
# Output the results - assumes valid Result tags in the source.
echo 'Number of games: ' `grep '^[Result ' ${src} | wc -l`
echo 'W Kingside: ' `cat Wkingside.pgn | wc -l`
echo 'W Queenside: ' `cat Wqueenside.pgn | wc -l`
echo 'B Kingside: ' `cat Bkingside.pgn | wc -l`
echo 'B Queenside: ' `cat Bqueenside.pgn | wc -l`
echo 'Neither: ' `cat nocastle.pgn | wc -l`
echo 'Rights retained: ' `cat rights.txt | wc -l`
I tried the script on the KingBase database (Apr 2019) and, after removing broken games and duplicates got the following stats:
Number of games: 2072354
W Kingside: 1633762
W Queenside: 246158
B Kingside: 1670870
B Queenside: 128124
Neither: 69776
Rights retained: 24280
The 'neither' figure is about 3.4% while the 'rights retained' figure is about 1.2%. If games with 20 or fewer ply are removed then the 'neither' figure reduces to about 2.9% and the 'rights retained' figure to about 0.7%.
If you are prepared to use standard Linux command-line tools like wc
and grep
then I think my free PGN processor, pgn-extract, will do much of the pre-processing necessary to count games in each category. Below is a basic bash script I put together as a proof of concept. It assumes your file of games is called inputfile.pgn
- adjust as necessary, or pass it in as a command-line argument:
#!/bin/bash
# Output stats on castling.
src=inputfile.pgn
# Pre-process the games to allow textual analysis.
pgn-extract -C -V -N --notags --nochecks --linelength 10000 -s -o stripped.pgn ${src}
# Castling by white: detect a preceding move number.
grep '. O-O ' stripped.pgn > Wkingside.pgn
grep '. O-O-O ' stripped.pgn > Wqueenside.pgn
# Castling by black: detect no preceding move number.
grep '[^.] O-O ' stripped.pgn > Bkingside.pgn
grep '[^.] O-O-O ' stripped.pgn > Bqueenside.pgn
# Find games in which no castling occurred.
grep -v ' O-O ' stripped.pgn | grep -v ' O-O-O ' | grep -v '^$' > nocastle.pgn
# Output the FEN of the final position to include castling rights and
# look for the presence of rights.
pgn-extract -C -V -N --notags --nomovenumbers --linelength 10000 -s nocastle.pgn --dropply -1 -F | grep ' [wb] [KkQq]' > rights.txt
# Output the results - assumes valid Result tags in the source.
echo 'Number of games: ' `grep '^[Result ' ${src} | wc -l`
echo 'W Kingside: ' `cat Wkingside.pgn | wc -l`
echo 'W Queenside: ' `cat Wqueenside.pgn | wc -l`
echo 'B Kingside: ' `cat Bkingside.pgn | wc -l`
echo 'B Queenside: ' `cat Bqueenside.pgn | wc -l`
echo 'Neither: ' `cat nocastle.pgn | wc -l`
echo 'Rights retained: ' `cat rights.txt | wc -l`
I tried the script on the KingBase database (Apr 2019) and, after removing broken games and duplicates got the following stats:
Number of games: 2072354
W Kingside: 1633762
W Queenside: 246158
B Kingside: 1670870
B Queenside: 128124
Neither: 69776
Rights retained: 24280
The 'neither' figure is about 3.4% while the 'rights retained' figure is about 1.2%. If games with 20 or fewer ply are removed then the 'neither' figure reduces to about 2.9% and the 'rights retained' figure to about 0.7%.
edited Apr 19 at 8:31
answered Apr 18 at 8:25
kentdjbkentdjb
711510
711510
1
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
6
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
1
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
1
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
|
show 6 more comments
1
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
6
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
1
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
1
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
1
1
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
Thank you so much for sharing!! I believe that your code works great (unless one side castles more than once, which is illegal anyway).
– Zuriel
Apr 18 at 12:51
6
6
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
Great! Really digging this new trend of script-based answers for stats questions here on chess SE, like yours here or this one recently.
– user929304
Apr 18 at 13:32
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
So, to clarify, "Kingside" counts all those games in which one or both players castled kingside. Games in which one player castled kingside and the other castled queenside will be counted in both categories. Perhaps a more interesting statistic would be the fraction of games in which White (or respectively Black) castled kingside or queenside.
– Nate Eldredge
Apr 18 at 17:44
1
1
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
I shouldn't think it would affect the percentages much, but 0-0+ and 0-0-0+ have occasionally happened.
– Rosie F
Apr 18 at 19:26
1
1
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
Also, why not find percentages for White and Black separatly as well? Just an idea!
– Rewan Demontay
Apr 18 at 20:52
|
show 6 more comments
Just googling for "castling statistics" already yields a few results; even though the analysis is done on a different set of games than 'all grandmaster games', it gives a rough indication.
- 50 world class players
- 2 million games in the MillionBase database
Kingside castling is done by 80-81% of the players, and queen side castling by 8-9%. I estimate that Never castled by the end of the game but still has the right to castle is negligible (less than 0.1%, since it requires a very short game). So that leaves about 11% for the final group Lost the right to castle.
1
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
1
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
add a comment |
Just googling for "castling statistics" already yields a few results; even though the analysis is done on a different set of games than 'all grandmaster games', it gives a rough indication.
- 50 world class players
- 2 million games in the MillionBase database
Kingside castling is done by 80-81% of the players, and queen side castling by 8-9%. I estimate that Never castled by the end of the game but still has the right to castle is negligible (less than 0.1%, since it requires a very short game). So that leaves about 11% for the final group Lost the right to castle.
1
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
1
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
add a comment |
Just googling for "castling statistics" already yields a few results; even though the analysis is done on a different set of games than 'all grandmaster games', it gives a rough indication.
- 50 world class players
- 2 million games in the MillionBase database
Kingside castling is done by 80-81% of the players, and queen side castling by 8-9%. I estimate that Never castled by the end of the game but still has the right to castle is negligible (less than 0.1%, since it requires a very short game). So that leaves about 11% for the final group Lost the right to castle.
Just googling for "castling statistics" already yields a few results; even though the analysis is done on a different set of games than 'all grandmaster games', it gives a rough indication.
- 50 world class players
- 2 million games in the MillionBase database
Kingside castling is done by 80-81% of the players, and queen side castling by 8-9%. I estimate that Never castled by the end of the game but still has the right to castle is negligible (less than 0.1%, since it requires a very short game). So that leaves about 11% for the final group Lost the right to castle.
answered Apr 18 at 7:18
GlorfindelGlorfindel
13.2k43664
13.2k43664
1
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
1
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
add a comment |
1
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
1
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
1
1
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
The first link is great!! I have never seen such interesting statistics on chess before.
– Zuriel
Apr 18 at 13:08
1
1
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
It's less common these days, but historically, there were many games where two grandmasters would play a few standard opening moves and agree a draw, for example, because the result of their game wasn't going to affect the tournament standings. Probably many of these games ended in a position where at least one of the players still had the right to castle. The frequency plot for different ply depths in your second link contains more than 35,000 games (~2%) that ended after 20 ply or less and nearly all of those will be agreed draws, probably with at least one player having castling rights.
– David Richerby
Apr 18 at 17:04
add a comment |
protected by Phonon Apr 20 at 12:10
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2
By "all grandmaster games" you mean all such games in a certain database you have?
– user1583209
Apr 18 at 5:20
Do you need this separately for white and black? (Percentage of white kingside castling, etc?)
– user1583209
Apr 18 at 5:22
@user1583209, I do not have any certain database in my mind. If the percentage is available separately for white and black, it will be preferred.
– Zuriel
Apr 18 at 12:46
No player may ever castle twice in a game, since castling and then moving the king back to a position from which it could castle again requires at least one king move, disqualifying it from ever castling again.
– user45266
Apr 19 at 4:26
3
@user45266 It's an illegal move, but as per OP's link, some historical games do contain illegal moves that nobody caught at the time.
– Geoffrey Brent
Apr 19 at 6:58