Baselight

2023 NPB Active Players

Career statistics of active NPB players

@kaggle.egerber1_2022_npb_active_players

Npb Batting
@kaggle.egerber1_2022_npb_active_players.npb_batting

  • 157.46 KB
  • 4239 rows
  • 33 columns
unnamed_0

Unnamed: 0

player_id

Player ID

last_name

Last Name

first_name

First Name

position

Position

bats

Bats

throws

Throws

height

Height

weight

Weight

born

Born

year

Year

team

Team

g

G

pa

PA

ab

AB

r

R

h

H

n_2b

2B

n_3b

3B

hr

HR

tb

TB

rbi

RBI

sb

SB

cs

CS

sh

SH

sf

SF

bb

BB

hp

HP

so

SO

gdp

GDP

avg

AVG

slg

SLG

obp

OBP

1105153AbeShotaPitcherLeftRight17880November 3, 19922021ORIX4
11105153AbeShotaPitcherLeftRight17880November 3, 19922022ORIX44
291195116AbeTomohiroInfielderLeftRight18188June 24, 19892011Hiroshima8202033360.150.150.15
391195116AbeTomohiroInfielderLeftRight18188June 24, 19892012Hiroshima5313511915303136252972110.2520.3030.294
491195116AbeTomohiroInfielderLeftRight18188June 24, 19892013Hiroshima751421231327413485261123110.220.2760.287
591195116AbeTomohiroInfielderLeftRight18188June 24, 19892014Hiroshima333110.3330.3330.333
691195116AbeTomohiroInfielderLeftRight18188June 24, 19892015Hiroshima2674706171721231610.2430.2430.254
791195116AbeTomohiroInfielderLeftRight18188June 24, 19892016Hiroshima11529225923731246111337751916430.2820.4290.327
891195116AbeTomohiroInfielderLeftRight18188June 24, 19892017Hiroshima123455413631281744165491751212729430.310.40.354
991195116AbeTomohiroInfielderLeftRight18188June 24, 19892018Hiroshima7225222032521144832471722126010.2360.3770.306

CREATE TABLE npb_batting (
  "unnamed_0" BIGINT,
  "player_id" BIGINT,
  "last_name" VARCHAR,
  "first_name" VARCHAR,
  "position" VARCHAR,
  "bats" VARCHAR,
  "throws" VARCHAR,
  "height" DOUBLE,
  "weight" DOUBLE,
  "born" VARCHAR,
  "year" BIGINT,
  "team" VARCHAR,
  "g" BIGINT,
  "pa" BIGINT,
  "ab" BIGINT,
  "r" BIGINT,
  "h" BIGINT,
  "n_2b" BIGINT,
  "n_3b" BIGINT,
  "hr" BIGINT,
  "tb" BIGINT,
  "rbi" BIGINT,
  "sb" BIGINT,
  "cs" BIGINT,
  "sh" BIGINT,
  "sf" BIGINT,
  "bb" BIGINT,
  "hp" BIGINT,
  "so" BIGINT,
  "gdp" BIGINT,
  "avg" DOUBLE,
  "slg" DOUBLE,
  "obp" DOUBLE
);

Share link

Anyone who has the link will be able to view this.