198 KiB
198 KiB
Шпаргалка по pandas¶
In [2]:
# Подготовка к работе
import pandas as pd
import numpy as np
anime = pd.read_csv('anime/anime.csv')
rating = pd.read_csv('anime/rating.csv')
Импорт данных¶
In [3]:
# Загрузка CSV-данных
anime = pd.read_csv('anime/anime.csv')
anime
Out[3]:
anime_id | name | genre | type | episodes | rating | members | |
---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 |
3 | 9253 | Steins;Gate | Sci-Fi, Thriller | TV | 24 | 9.17 | 673572 |
4 | 9969 | Gintama' | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.16 | 151266 |
... | ... | ... | ... | ... | ... | ... | ... |
12289 | 9316 | Toushindai My Lover: Minami tai Mecha-Minami | Hentai | OVA | 1 | 4.15 | 211 |
12290 | 5543 | Under World | Hentai | OVA | 1 | 4.28 | 183 |
12291 | 5621 | Violence Gekiga David no Hoshi | Hentai | OVA | 4 | 4.88 | 219 |
12292 | 6133 | Violence Gekiga Shin David no Hoshi: Inma Dens... | Hentai | OVA | 1 | 4.98 | 175 |
12293 | 26081 | Yasuji no Pornorama: Yacchimae!! | Hentai | Movie | 1 | 5.46 | 142 |
12294 rows × 7 columns
In [4]:
# Создание датафрейма из данных, введённых вручную
df = pd.DataFrame([[1,'Bob', 'Builder'],
[2,'Sally', 'Baker'],
[3,'Scott', 'Candle Stick Maker']],
columns=['id','name', 'occupation'])
df
Out[4]:
id | name | occupation | |
---|---|---|---|
0 | 1 | Bob | Builder |
1 | 2 | Sally | Baker |
2 | 3 | Scott | Candle Stick Maker |
In [5]:
# Копирование датафрейма
anime_copy = anime.copy(deep=True)
Экспорт данных¶
In [6]:
# Экспорт в формат CSV
rating[:10].to_csv('saved_ratings.csv', index=False)
# Экспортировать данные в виде Excel-файлов можно с помощью функции df.to_excel
Просмотр и исследование данных¶
In [7]:
# Получение n записей из начала или конца датафрейма
anime.head(3)
Out[7]:
anime_id | name | genre | type | episodes | rating | members | |
---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 |
In [8]:
rating.tail(1)
Out[8]:
user_id | anime_id | rating | |
---|---|---|---|
7813736 | 73516 | 8074 | 9 |
In [9]:
# Подсчёт количества строк в датафрейме
len(anime)
Out[9]:
12294
In [10]:
# Подсчёт количества уникальных значений в столбце
len(rating['user_id'].unique())
Out[10]:
73515
In [11]:
# Получение сведений о датафрейме
anime.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 12294 entries, 0 to 12293 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 anime_id 12294 non-null int64 1 name 12294 non-null object 2 genre 12232 non-null object 3 type 12269 non-null object 4 episodes 12294 non-null object 5 rating 12064 non-null float64 6 members 12294 non-null int64 dtypes: float64(1), int64(2), object(4) memory usage: 672.5+ KB
In [12]:
# Вывод статистических сведений о датафрейме
anime.describe()
Out[12]:
anime_id | rating | members | |
---|---|---|---|
count | 12294.000000 | 12064.000000 | 1.229400e+04 |
mean | 14058.221653 | 6.473902 | 1.807134e+04 |
std | 11455.294701 | 1.026746 | 5.482068e+04 |
min | 1.000000 | 1.670000 | 5.000000e+00 |
25% | 3484.250000 | 5.880000 | 2.250000e+02 |
50% | 10260.500000 | 6.570000 | 1.550000e+03 |
75% | 24794.500000 | 7.180000 | 9.437000e+03 |
max | 34527.000000 | 10.000000 | 1.013917e+06 |
In [13]:
# Подсчёт количества значений
anime.type.value_counts()
Out[13]:
type TV 3787 OVA 3311 Movie 2348 Special 1676 ONA 659 Music 488 Name: count, dtype: int64
In [14]:
anime.type.value_counts()
Out[14]:
type TV 3787 OVA 3311 Movie 2348 Special 1676 ONA 659 Music 488 Name: count, dtype: int64
Извлечение информации из датафреймов¶
In [15]:
# Создание списка или объекта Series на основе значений столбца
anime['genre'].tolist()
#anime['genre']
Out[15]:
['Drama, Romance, School, Supernatural', 'Action, Adventure, Drama, Fantasy, Magic, Military, Shounen', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Sci-Fi, Thriller', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Comedy, Drama, School, Shounen, Sports', 'Action, Adventure, Shounen, Super Power', 'Drama, Military, Sci-Fi, Space', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Drama, Fantasy, Romance, Slice of Life, Supernatural', 'Drama, School, Shounen', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Action, Drama, Mecha, Military, Sci-Fi, Super Power', 'Comedy, Drama, School, Shounen, Sports', 'Adventure, Drama, Supernatural', 'Drama, Music, Romance, School, Shounen', 'Adventure, Fantasy, Historical, Mystery, Seinen, Slice of Life, Supernatural', 'Fantasy, Slice of Life', 'Action, Mecha, Military, School, Sci-Fi, Super Power', 'Comedy, Drama, Shounen, Sports', 'Action, Drama, Historical, Martial Arts, Romance, Samurai', 'Action, Adventure, Comedy, Drama, Sci-Fi, Space', 'Action, Comedy, Parody, Sci-Fi, Seinen, Super Power, Supernatural', 'Action, Adventure, Fantasy', 'Comedy, Mystery, Romance, School, Sci-Fi, Supernatural', 'Comedy, Mystery, Romance, Supernatural, Vampire', 'Adventure, Fantasy, Historical, Mystery, Seinen, Slice of Life, Supernatural', 'Adventure, Fantasy, Historical, Mystery, Seinen, Slice of Life, Supernatural', 'Action, Adventure, Comedy, Mecha, Sci-Fi', 'Comedy, Drama, School, Shounen, Slice of Life', 'Drama, Fantasy, Shoujo, Slice of Life, Supernatural', 'Comedy, Drama, Shounen, Sports', 'Adventure, Fantasy, Historical, Mystery, Seinen, Slice of Life, Supernatural', 'Drama, Fantasy, Shoujo, Slice of Life, Supernatural', 'Adventure, Drama, Fantasy, Romance', 'Action, Fantasy, Supernatural, Thriller', 'Action, Mystery, Supernatural, Vampire', 'Drama, Horror, Mystery, Police, Psychological, Seinen, Thriller', 'Comedy, Drama, Romance, Shounen', 'Mystery, Police, Psychological, Supernatural, Thriller', 'Comedy, Parody', 'Action, Comedy, School, Shounen', 'Comedy, Drama, School, Shounen, Sports', 'Comedy, Drama, Shounen, Sports', 'Action, Drama, Mystery, Romance, Supernatural, Thriller', 'Drama, Fantasy, Shoujo, Slice of Life, Supernatural', 'Psychological, Seinen, Sports', 'Adventure, Fantasy, Historical, Mystery, Seinen, Slice of Life, Supernatural', 'Mystery, Psychological, Seinen, Supernatural', 'Mystery, Psychological, Romance', 'Fantasy, Sci-Fi, Shounen, Slice of Life', 'Comedy, Demons, Fantasy, Shoujo, Supernatural', 'Drama, Historical, Seinen, Thriller', 'Drama, Fantasy, Psychological, Thriller', 'Action, Mecha, Sci-Fi, Space, Super Power', 'Drama, Fantasy, Shoujo, Slice of Life, Supernatural', 'Drama, Slice of Life, Supernatural', 'Comedy, School, Shounen, Sports', 'Sci-Fi, Thriller', 'Drama, Romance, Shoujo, Supernatural', 'Ecchi, School, Shounen', 'Comedy, Sports', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Action, Adventure, Drama, Shounen, Supernatural', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Action, Horror, Military, Seinen, Supernatural, Vampire', 'Action, Drama, Horror, Psychological, Sci-Fi, Seinen', 'Drama, Historical, Josei', 'Comedy, Sci-Fi, Seinen, Slice of Life, Space', 'Adventure, Supernatural', 'Drama, Historical', 'Comedy, School, Shounen, Sports', 'Comedy, Drama, Romance, Sports', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen, Super Power', 'Action, Mecha, Military, Mystery, Police, Sci-Fi, Seinen', 'Action, Adventure, Comedy, Drama, Shounen, Supernatural', 'Action, Mystery, Romance, Supernatural, Thriller', 'Action, Historical, Military, Seinen', 'Comedy, Drama, School, Shounen, Sports', 'Josei, Slice of Life', 'Military, School', 'Action, Comedy, Slice of Life, Supernatural', 'Comedy, Drama, Music, Romance, Shoujo, Slice of Life', 'Action, Comedy, Historical, Mystery, Seinen, Supernatural', 'Adventure, Fantasy, Historical, Mystery, Seinen, Slice of Life, Supernatural', 'Action, Drama, Fantasy, Shounen, Super Power', 'Comedy, Drama, Romance, Shounen', 'Comedy, Drama, Romance, School, Sports', 'Romance, School, Shounen Ai, Slice of Life', 'Action, Mecha, Sci-Fi', 'Drama, Horror, Mystery, Sci-Fi, Supernatural', 'Action, Drama, Military, Sci-Fi, Space', 'Drama, Game, Josei, Slice of Life, Sports', 'Action, Fantasy, Supernatural', 'Action, Adventure, Shounen, Supernatural, Vampire', 'Drama, Magic, Psychological, Thriller', 'Comedy, School, Slice of Life', 'Action, Police, Psychological, Sci-Fi', 'Comedy, Slice of Life', 'Comedy, School, Shounen, Sports', 'Action, Adventure, Fantasy, Magic, Shounen', 'Drama, Magic, Psychological, Thriller', 'Comedy, Drama, Sports', 'Action, Adventure, Comedy, Historical, Samurai, Shounen', 'Ecchi, School, Shounen', 'Action, Adventure, Historical, Martial Arts, Romance', 'Drama, Magic, Psychological, Thriller', 'Comedy, Drama, Sports', 'Demons, Fantasy, Historical, Horror, Mystery, Seinen, Supernatural', 'Comedy, Drama', 'Drama, Sports', 'Action, Adventure, Shounen, Super Power', 'Action, Adventure, Shounen, Supernatural', 'Drama, Josei, Music, Romance, School', 'Adventure, Comedy, Supernatural', 'Action, Mecha, Military, Police, Sci-Fi, Seinen', 'Adventure, Fantasy', 'Adventure, Comedy, Ecchi, Fantasy, Game, Supernatural', 'Adventure, Drama, Historical, Slice of Life', 'Action, Comedy, Demons, Fantasy, Martial Arts, School, Shounen', 'Action, Adventure, Slice of Life', 'Comedy, School, Shounen, Sports', 'Comedy, Drama, Josei, Music, Romance, Slice of Life', 'Adventure, Fantasy, Historical, Romance', 'Action, Fantasy, Shoujo, Supernatural', 'Sci-Fi, Thriller', 'Action, Fantasy, Magic, Shounen, Supernatural', 'Drama, Fantasy', 'Mystery, Supernatural, Vampire', 'Dementia, Drama, Mecha, Psychological, Sci-Fi', 'Comedy, Romance, School, Slice of Life', 'Adventure, Drama, Romance, Sci-Fi', 'Action, Adventure, Drama, Fantasy, Romance, Shounen', 'Comedy, Mystery, Supernatural', 'Action, Adventure, Comedy, Historical, Romance, Samurai', 'Action, Adventure, Historical, Samurai', 'Adventure, Mystery, Police, Shounen', 'Action, Fantasy, Magic, Shounen, Supernatural', 'Comedy, Drama, Shounen, Sports', 'Action, Mecha, Military, Sci-Fi, Shounen, Space', 'Action, Adventure, Ecchi, Fantasy, Shounen, Supernatural', 'Drama, Fantasy, Shoujo, Slice of Life, Supernatural', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen', 'Mystery, Psychological, Supernatural, Thriller', 'Action, Adventure, Shounen, Super Power', 'Action, Adventure, Shounen, Super Power', 'Comedy, Demons, Fantasy, Historical, Mystery, Shounen, Supernatural', 'Comedy, Drama, Shounen, Sports', 'Psychological, Seinen, Sports', 'Comedy, Drama, Music, Shounen, Slice of Life', 'Action, Adventure, Demons, Drama, Fantasy, Horror, Military, Romance, Seinen, Supernatural', 'Action, Drama, Mystery, Sci-Fi, Space', 'Drama, Shounen, Sports', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Drama, Fantasy, Shoujo, Slice of Life, Supernatural', 'Comedy, Drama, Psychological, Romance', 'Adventure, Drama, Historical, Romance, Shoujo', 'Comedy, Drama, Romance, School, Slice of Life', 'Action, Comedy, Drama, School, Supernatural', 'Mystery, Romance, Supernatural, Vampire', 'Mystery, Seinen, Supernatural', 'Comedy, Shounen, Sports', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen', 'Comedy, Harem, Romance, School, Shoujo', 'Action, Mystery, Police, Shounen', 'Action, Mystery, Supernatural', 'Comedy, Josei, Music, Romance', 'Drama, Romance, Sci-Fi, Seinen, Space', 'Music, Sci-Fi', 'Adventure, Fantasy, Romance, Sci-Fi', 'Action, Comedy, Historical, Parody, Sci-Fi', 'Drama, Josei, Romance', 'Action, Adventure, Comedy, Demons, Fantasy, Magic, Romance, Shounen, Supernatural', 'Fantasy, Historical', 'Action, Comedy, Shounen, Super Power', 'Comedy, Demons, Fantasy, Historical, Shounen, Supernatural', 'Adventure, Fantasy, Historical, Romance', 'Action, Comedy, School, Shounen, Super Power', 'Comedy, School, Shounen, Slice of Life', 'Comedy, Drama, Romance, School, Slice of Life, Supernatural', 'Comedy, Drama, Sports', 'Action, Adventure, Martial Arts, Shounen, Super Power, Supernatural', 'Comedy, School, Shounen', 'Comedy, Romance, Shounen', 'Comedy, School, Shounen, Slice of Life', 'Drama, Psychological, Romance, Slice of Life', 'Fantasy, Slice of Life, Supernatural', 'Comedy, Drama, Shounen, Sports', 'Drama, Mystery, Psychological', 'Comedy, Romance, Slice of Life', 'Action, Mecha, Police, Psychological, Sci-Fi, Seinen', 'Comedy, Music, Slice of Life', 'Action, School, Shounen, Sports', 'Action, Comedy, Drama, Magic, Super Power', 'Action, Adventure, Drama, Fantasy, Historical, Romance', 'Sci-Fi, Thriller', 'Comedy, Drama, Mystery, Psychological, Supernatural', 'Action, Adventure, Demons, Drama, Fantasy, Horror, Military, Seinen, Supernatural', 'Drama, Game, Mystery, Psychological, Thriller', 'Action, Adventure, Comedy, Drama, Fantasy, Magic, Military, Shounen', 'Game, Psychological, Seinen, Thriller', 'Action, Adventure, Shounen, Super Power', 'Action, Cars, Sci-Fi, Sports', 'Drama, Game, Josei, Slice of Life, Sports', 'Action, Mystery, Police, Shounen', 'Action, Adventure, Comedy, Fantasy, Martial Arts, Shounen, Super Power', 'Action, Fantasy, Magic, Shounen, Supernatural', 'Drama, Romance, School', 'Adventure, Drama, Fantasy, Romance, Slice of Life', 'Drama, Fantasy, Romance', 'Action, Dementia, Drama, Mecha, Psychological, Sci-Fi', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen', 'Comedy, Drama', 'Action, Comedy, Sci-Fi', 'Mystery, Supernatural', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Drama, Magic, Psychological, Thriller', 'Comedy, Drama, Romance, Shounen Ai', 'Comedy, Drama, Romance, School', 'Comedy, Romance, School', 'Fantasy, Sci-Fi, Shounen, Slice of Life', 'Action, Seinen', 'Comedy, Drama, Romance, School, Slice of Life, Supernatural', 'Comedy, Harem, Romance, Shounen, Supernatural', 'Comedy, Sci-Fi', 'Action, Comedy, Historical, Mystery, Seinen, Supernatural', 'Action, Mystery, Police, Shounen', 'Game, Psychological, Seinen, Thriller', 'Cars, Seinen, Sports', 'Adventure, Mystery, Romance, Sci-Fi', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen, Super Power', 'Comedy, School, Shounen, Supernatural', 'Comedy, Drama, Fantasy, Magic, Romance, Shoujo', 'Comedy, Shounen, Sports', 'Comedy, Demons, Fantasy, Romance, Shoujo, Supernatural', 'Comedy, Drama, Romance, Shoujo', 'Comedy, Drama, Shounen, Sports', 'Drama, Mystery, Sci-Fi, Supernatural, Thriller', 'Adventure, Comedy, Drama, Fantasy, Magic, Romance', 'Comedy, Josei, Music, Romance, Slice of Life', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen, Super Power', 'Comedy, Parody', 'Comedy, Sci-Fi, Space', 'Drama', 'Comedy, Music', 'Sci-Fi, Slice of Life', 'Sci-Fi, Slice of Life', 'Comedy, Romance, School, Shoujo', 'Adventure, Sci-Fi, Shounen', 'Psychological, Thriller', 'Action, Mystery, Sci-Fi, Super Power', 'Adventure, Comedy, Mystery, Police, Shounen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Comedy, School, Shounen, Sports', 'Action, Adventure, Comedy, Fantasy, Magic, Shounen', 'Drama, Music, School', 'Action, Adventure, Drama, Shounen, Supernatural', 'Comedy, Drama, Romance, Slice of Life', 'Comedy, School, Seinen, Slice of Life', 'Action, Comedy, Martial Arts, School, Shounen', 'Adventure, Drama, Mecha, Sci-Fi, Shounen', 'Comedy, Romance, School', 'Action, Cars, Drama, Seinen, Sports', 'Comedy, Drama, Romance, Shounen Ai', 'Drama, Historical, Romance', 'Action, Historical, Military, Seinen', 'Comedy, Josei, Slice of Life', 'Action, Adventure, Fantasy, Magic, Shounen', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Romance, School, Slice of Life', 'Action, Adventure, Martial Arts, Shounen, Super Power, Supernatural', 'Action, Adventure, Fantasy, Historical', 'Action, Adventure, Comedy, Fantasy, Romance, Shoujo', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Mystery, Supernatural', 'Comedy, School, Slice of Life', 'Drama, Shoujo', 'Drama, Historical, Mystery, Romance', 'Comedy, Drama, Shounen, Sports', 'Action, Cars, Drama, Seinen, Sports', 'Action, Comedy, School, Super Power', 'Comedy, Romance, Shoujo', 'Dementia, Drama, Horror, Psychological', 'Comedy, Fantasy, Magic, Romance', 'Sci-Fi, Seinen', 'Action, Adventure, Drama, Fantasy, Magic, Mystery, Romance, Shounen, Supernatural', 'Drama, Sports', 'Action, Adventure, Comedy, Fantasy, Magic, Shounen', 'Mecha, Military, Mystery, Police, Sci-Fi, Seinen', 'Action, Adventure, Fantasy, Magic, Shounen', 'Drama, Fantasy, Psychological, Shoujo', 'Action, Comedy, Mecha', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Mecha, Sci-Fi', 'Action, Comedy, School', 'Action, Drama, Military, Sci-Fi, Space', 'Action, Drama, Mystery, Supernatural, Thriller', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Comedy, Mystery, Supernatural', 'Comedy, Mystery, Supernatural', 'Action, Comedy, School, Shounen', 'Fantasy, Sci-Fi, Shounen, Slice of Life', 'Romance, School, Shounen, Sports', 'Action, Adventure, Comedy, Shounen', 'Action, Military, Sci-Fi, Space', 'Action, Comedy, Historical, Parody, Samurai, Sci-Fi, Shounen', 'Adventure, Comedy, Shounen', 'Action, Drama, Mecha, Sci-Fi, Space', 'Comedy, Sports', 'Adventure, Comedy, Drama, Fantasy, Historical, Romance', 'Comedy, Drama, Romance, Shounen Ai', 'Drama, Slice of Life, Supernatural', 'Adventure, Comedy, Drama, Mystery, Sci-Fi', 'Adventure, Drama, Mecha, Romance, Sci-Fi', 'Action, Mecha, Mystery, Police, Psychological, Sci-Fi, Seinen', 'Action, Comedy, Parody, Samurai', 'Comedy, School, Slice of Life', 'Comedy, Game, Shounen, Supernatural', 'Romance, School, Shoujo, Slice of Life', 'Comedy, Drama, Romance, School, Slice of Life, Supernatural', 'Drama', 'Adventure, Comedy, Drama, Fantasy, Magic, Romance, School, Shoujo', 'Drama, Mystery, Romance, Supernatural', 'Comedy, School, Shounen, Slice of Life', 'Comedy, Drama, Josei, Romance', 'Comedy, Drama, Romance, Shoujo', 'Music, School, Slice of Life', 'Fantasy, Magic', 'Comedy, Drama, Romance, Shounen Ai', 'Comedy, Romance, Slice of Life', 'Action, Seinen', 'Action, Mystery, Police, Shounen', 'Action, Fantasy, Super Power', 'Horror, Mystery, Psychological, Supernatural, Thriller', 'Mystery, School, Slice of Life', 'Adventure, Drama, Music, Sci-Fi', 'Drama, Romance, Slice of Life, Supernatural', 'Romance, School, Shoujo, Slice of Life', 'Action, Adventure, Shounen, Supernatural', 'Action, Fantasy, Seinen, Supernatural', 'Comedy, Drama, Mystery, Psychological, Supernatural', 'Action, Drama, Fantasy, Magic, Mystery, Psychological, Shounen', 'Comedy, Shounen, Slice of Life', 'Adventure, Comedy, Mystery, Police, Shounen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Adventure, Comedy, Fantasy, Martial Arts, Shounen, Super Power', 'Comedy, Drama, Slice of Life, Supernatural', 'Comedy, Drama, Romance, Shounen Ai', 'Action, Adventure, Fantasy, Magic, Supernatural', 'Action, Shounen, Sports', 'Adventure, Drama, Sci-Fi', 'Action, Adventure, Comedy, Fantasy, Shounen, Super Power', 'Action, Drama, Seinen, Thriller', 'Comedy, Romance, Slice of Life', 'Action, Sci-Fi, Super Power', 'Drama, Romance, School, Shounen, Slice of Life, Sports', 'Comedy, Drama, Shounen, Sports', 'Action, Adventure, Horror, Military, Sci-Fi, Supernatural', 'Action, Seinen', 'Action, Mystery, Supernatural', 'Action, Comedy, Historical, Parody, Samurai, Shounen', 'School, Slice of Life, Sports', 'Comedy, Shounen', 'Action, Demons, Shounen, Supernatural', 'Fantasy, Horror, Mystery, Psychological, Sci-Fi, Thriller', 'Comedy, School, Shounen, Sports', 'Comedy, Romance, School, Shounen', 'Comedy, Drama, Romance, Shounen Ai', 'Drama, Fantasy, Romance, Shoujo', 'Drama, Romance, School, Slice of Life', 'Action, Adventure, Drama, Shounen', 'Action, Cars, Drama, Seinen, Sports', 'Comedy, Music, School, Slice of Life', 'Action, Adventure, Fantasy, Game, Magic, Shounen', 'Comedy, Romance, Shounen Ai', 'Adventure, Comedy, Demons, Fantasy, Magic', 'Fantasy, Sci-Fi, Shounen, Slice of Life', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Adventure, Comedy, Drama', 'Action, Comedy, Historical, Mecha, Parody, Samurai, Sci-Fi, Shounen', 'Adventure, Comedy, Romance, Shounen', 'Comedy, Demons, Fantasy, Romance, Shoujo, Supernatural', 'Drama, Mystery, Seinen, Supernatural', 'Adventure, Drama, Mecha, Military, Romance, Sci-Fi', 'Action, Adventure, Fantasy, Kids', 'Comedy, Demons, Shounen, Supernatural', 'Adventure, Drama, Psychological, Sci-Fi, Supernatural', 'Action, Horror, Mystery, Seinen, Supernatural', 'Action, Sci-Fi, Seinen', 'Action, Comedy, Mystery, Shounen', 'Action, Mystery, Supernatural', 'Drama, Mystery, Romance', 'Action, Mecha, Police, Psychological, Sci-Fi, Seinen', 'Action, Mecha, Sci-Fi', 'Adventure, Romance, Sci-Fi, Shounen, Space', 'Action, Cars, Drama, Seinen, Sports', 'Comedy, Harem, Romance, Shounen, Supernatural', 'Action, Adventure, Shounen', 'Comedy, Kids, Sci-Fi, Shounen', 'Action, Comedy, Mystery, Super Power', 'Comedy, Drama, Romance, School', 'Adventure, Drama, Fantasy, Magic, Military, Shounen', 'Comedy, Mystery, Supernatural', 'Comedy, Drama, Romance, School, Shounen, Slice of Life', 'Comedy, Sports', 'Comedy, Romance, Shoujo', 'Comedy, Drama, Slice of Life', 'Action, Adventure, Psychological, Supernatural', 'Comedy, Romance', 'Comedy, Drama, Mystery, Psychological, Supernatural', 'Drama, Romance, Slice of Life', 'Action, Horror, Mystery, Psychological', 'Drama, Military, Sci-Fi, Space', 'Historical, Samurai, Seinen', 'Fantasy', 'Action, Comedy, Drama, Magic, Super Power', 'Drama, Historical, Romance, Samurai, Shounen', 'Comedy, School, Slice of Life', 'Action, Adventure, Demons, Drama, Fantasy, Horror, Military, Seinen, Supernatural', 'Action, Mystery, Sci-Fi, Super Power', 'Action, Fantasy', 'Action, Historical, Military, Sci-Fi, Space', 'Game, Shounen', 'Drama, Historical, Romance, Sci-Fi, Shounen Ai', 'Action, Comedy, Ecchi, Fantasy, Harem, Mecha, School', 'Comedy, Drama, Romance, Shounen Ai', 'Comedy, Drama, Fantasy', 'Comedy, Drama, Psychological, Seinen', 'Action, Mecha, Military, Music, Romance, Sci-Fi, Space', 'Adventure, Comedy, Fantasy, Shounen', 'Action, Comedy, Shounen, Sports', 'Action, Comedy, Sports', 'Action, Comedy, Shounen, Sports', 'Comedy, Drama, Music, Romance, Shoujo, Supernatural', 'Drama, Harem, Psychological, Romance', 'Horror, Mystery, Psychological, Supernatural', 'Comedy, Drama, Romance, Shounen Ai', 'Comedy, Drama, Mystery, Psychological', 'Comedy, School, Shounen', 'Action, Adventure, Comedy, Fantasy, Shounen, Supernatural', 'Action, Comedy, Sci-Fi', 'Drama, Fantasy, Mystery, Psychological, Slice of Life', 'Comedy, School, Shounen, Sports', 'Action, Mecha, Military, Music, Romance, Sci-Fi, Space', 'Action, Mystery, Psychological, Shounen, Supernatural, Thriller', 'Action, Adventure, Drama, Fantasy, Shoujo', 'Comedy, Parody, Seinen, Super Power', 'Action, Drama, Military, Sci-Fi, Space', 'Action, Drama, Horror, Mystery, Psychological, Seinen, Supernatural', 'Josei, Slice of Life', 'Kids, School, Shoujo', 'Comedy, School, Slice of Life', 'Drama, Slice of Life, Supernatural', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Adventure, Comedy, Fantasy, Historical, Samurai, Seinen', 'Action, Comedy, Dementia, Mecha, Parody, Sci-Fi', 'Action, Mecha, Military', 'Action, Comedy, Demons, Fantasy, Historical, Shounen, Supernatural', 'Music, School, Slice of Life', 'Action, Mecha, Military, Music, Romance, Sci-Fi, Space', 'Action, Adventure, Fantasy, Magic, Shounen', 'Comedy, Romance, Supernatural', 'Adventure, Comedy, Drama, Fantasy, Historical, Romance', 'Comedy, Romance, School, Shounen', 'Action, Ecchi, Fantasy, School, Shounen, Supernatural, Vampire', 'Comedy, Mystery, Parody, School, Sci-Fi, Slice of Life', 'Drama, Historical', 'Adventure, Comedy, Ecchi', 'Drama', 'Comedy, Drama, Fantasy, Shoujo', 'Action, Mystery, Supernatural, Thriller', 'Action, Comedy, Mystery, Shounen', 'Comedy, School, Seinen, Slice of Life', 'Comedy, School, Shounen, Slice of Life', 'Comedy, Shounen', 'Action, Comedy, Demons, School, Shounen, Supernatural', 'Drama, Game, Mystery, Psychological, Thriller', 'Action, Comedy, Supernatural', 'Action, Adventure, Seinen', 'Action, Comedy, Drama, Magic, Super Power', 'Action, Adventure, Fantasy, Game, Magic, Supernatural', 'Action, Comedy, School, Shounen, Sports', 'Adventure, Drama, Historical, Mystery', 'Comedy, Drama, Mystery, Psychological, Supernatural', 'Comedy, School, Shoujo Ai, Slice of Life', 'Action, Comedy, Martial Arts, Shounen, Super Power', 'Historical, Romance, School, Shoujo', 'Drama, Historical, Romance, Seinen, Slice of Life', 'Mystery, Psychological, Sci-Fi', 'Comedy, Drama, Seinen, Slice of Life', 'Comedy, Demons, Fantasy, Romance, Shounen', 'Drama, Music, School', 'Action, Comedy, Drama, Mystery, Romance, Sci-Fi, Thriller', 'Adventure, Drama, Historical, Slice of Life', 'Adventure, Comedy, Fantasy, Supernatural', 'Action, Adventure, Comedy, Drama, Historical, Military, Romance', 'Drama, Mecha, Military, Sci-Fi, Space', 'Comedy, Ecchi, Romance, School, Seinen', 'Adventure, Fantasy, Sci-Fi, Shounen', 'Comedy, Parody, School', 'Comedy, Parody, Romance, School', 'Comedy, Parody, School', 'Comedy, Drama, Shoujo', 'Drama, Romance, School', 'Action, Drama, Historical, Josei, Samurai, Supernatural', 'Action, Mystery, Romance, Supernatural, Thriller', 'Action, Mecha, Military, Music, Romance, Sci-Fi, Space', 'Adventure, Comedy, Romance, Shounen', 'Comedy, School, Shounen', 'Action, Comedy, Martial Arts, School, Shounen', 'Game, Psychological, Seinen, Thriller', 'Comedy, Parody, Supernatural', 'Action, Demons, Shounen, Super Power', 'Romance, Slice of Life', 'Action, Adventure, Comedy, Fantasy, Martial Arts, Shounen, Super Power', 'Comedy, Slice of Life', 'Comedy, School, Slice of Life', 'Comedy, Drama, Romance, School, Slice of Life, Supernatural', 'Action, Adventure, Drama, Fantasy, Shoujo', 'Comedy, Josei, Slice of Life', 'Action, Comedy, Mystery, Super Power', 'Comedy, Parody, School', 'Action, Comedy, Mystery, Shounen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Comedy, Romance, School', 'Action, Mecha, Sci-Fi, Shounen, Super Power', 'Comedy, Historical, Parody', 'Comedy, Drama, Shoujo', 'Comedy, Demons, Fantasy, Shoujo, Supernatural', 'Adventure, Comedy, Fantasy, Magic, School', 'Drama, School, Shoujo Ai, Slice of Life', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Music', 'Adventure, Comedy, Drama, Fantasy, Magic, Romance, Shoujo', 'Action, Fantasy, Mecha, Military, Shounen', 'Comedy, Drama, Slice of Life', 'Comedy, School, Slice of Life', 'Action, Drama, Martial Arts, Sci-Fi, Shounen', 'Drama, Historical, Shoujo, Slice of Life', 'Dementia, Drama, Mystery, Psychological, Sci-Fi, Supernatural', 'Mystery, Supernatural, Thriller, Vampire', 'Drama, Historical', 'Comedy, Romance, School, Super Power', 'Adventure, Comedy, Mystery, Police, Shounen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Mecha, Sci-Fi', 'Comedy, Historical, Parody', 'Action, Cars, Drama, Seinen, Sports', 'Comedy, Sports', 'Adventure, Drama, Fantasy', 'Action, Adventure, Comedy, Sci-Fi, Space', 'Drama, Music, Romance, Slice of Life', 'Comedy, Slice of Life', 'Action, Adventure, Fantasy, Military', 'Action, Adventure, Fantasy, Military', 'Comedy, Horror, Mystery, Shoujo, Supernatural', 'Action, Drama, Sci-Fi, Seinen, Super Power', 'Comedy, School, Slice of Life', 'Comedy, Sports', 'Adventure, Comedy, Fantasy, Romance, Shoujo', 'Action, Adventure, Comedy, Shounen', 'Adventure, Drama, Fantasy, Kids', 'School, Shoujo, Shoujo Ai, Slice of Life', 'Comedy, Military, Parody, Sci-Fi, Space', 'Fantasy, Historical, Romance', 'Action, Adventure, Demons, Fantasy, Sci-Fi, Shounen, Super Power', 'Comedy, Seinen, Slice of Life', 'Action, Military, Romance, Sci-Fi, Space', 'Action, Comedy, Drama, Mecha, Military, Sci-Fi, Shounen, Space', 'Action, Comedy, Military, Romance', 'Comedy, Drama, Fantasy, Slice of Life', 'Romance, School, Shounen, Sports', 'Action, Mecha, Military, Shounen', 'Action, Mecha, Military, Super Power', 'Comedy, Parody, School', 'Action, Adventure, Seinen', 'Mystery, Shounen', 'Action, Drama, Mecha, Sci-Fi, Space', 'Action, Mecha, Shounen, Super Power', 'Comedy, Parody, Seinen, Super Power', 'Adventure, Mecha, Sci-Fi, Shounen', 'Action, Comedy, Shounen, Super Power, Supernatural', 'Comedy, Drama, Romance, School, Slice of Life', 'Action, Comedy, Mystery, Shounen', 'Action, Horror, Mystery, Psychological', 'Adventure, Mystery', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Adventure, Comedy, Fantasy, Martial Arts, Shounen, Super Power', 'Comedy, Historical, Parody', 'Comedy, Slice of Life', 'Comedy, Harem, Romance, Shounen, Supernatural', 'Action, Fantasy, Supernatural', 'Adventure, Comedy, Romance, Shounen', 'Action, Adventure, Fantasy, Military', 'Drama, Romance, Sci-Fi', 'Action, Military, Police, Sci-Fi', 'Comedy, Parody, Romance, School', 'Action, Mecha, Sci-Fi, Seinen, Space', 'Adventure, Comedy, Fantasy, Kids, Slice of Life', 'Horror, Mystery, Romance, School, Shounen, Supernatural', 'Action, Drama, Fantasy, Horror, Romance, Sci-Fi, Vampire', 'Comedy, Shoujo Ai, Slice of Life', 'Action, Fantasy, Mecha, Military, Shounen', 'Comedy, School, Shounen, Slice of Life', 'Adventure, Comedy, Mystery, Police, Shounen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Fantasy, Super Power', 'Comedy, School, Slice of Life, Sports', 'Action, Drama, Historical, Josei, Samurai, Supernatural', 'Comedy, School, Slice of Life', 'Action, Super Power, Supernatural', 'Action, Adventure, Sci-Fi', 'Comedy, Drama, Romance, School, Slice of Life, Supernatural', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Action, Comedy, Martial Arts, Shounen, Super Power', 'Action, Adventure, Comedy, Fantasy, Kids', 'Comedy, School, Shoujo Ai, Slice of Life', 'Comedy, Parody, School', 'Drama, Game, Seinen, Slice of Life', 'Action, Drama, Historical', 'Drama, Fantasy, Romance, Shoujo', 'Action, Adventure, Comedy, Fantasy, Historical, Samurai, Seinen', 'Adventure, Fantasy', 'Mecha, Military, Police, Psychological, Sci-Fi', 'Comedy, Drama, School, Shounen, Sports', 'Shounen, Sports', 'Comedy, Fantasy, Supernatural', 'Comedy, Sci-Fi, Shounen', 'Action, Adventure, Comedy, Shounen', 'Action, Mecha, Military, Music, Romance, Sci-Fi, Space', 'Action, Drama, Mecha, Military, Romance, Sci-Fi, Space', 'Comedy, Josei, Music, Romance', 'Comedy, Drama, Josei, Romance, Slice of Life', 'Adventure, Sci-Fi, Shounen', 'Historical, Samurai, Seinen', 'Horror, Mystery, Supernatural, Vampire', 'Adventure, Comedy, Demons, Fantasy, Magic, Shounen', 'Comedy, Ecchi, Harem, Romance, School, Sci-Fi, Shounen', 'Action, Mecha', 'Action, Drama, Military, Sci-Fi, Space', 'Action, Adventure, Drama, Fantasy, Mystery, Sci-Fi', 'Action, Comedy, Fantasy, Shoujo', 'Action, Demons, Fantasy, Shounen, Supernatural', 'Action, Adventure, Demons, Fantasy, Shounen, Super Power, Supernatural', 'Adventure, Comedy, Mystery, Police, Shounen', 'Mecha, Military, Mystery, Police, Sci-Fi, Seinen', 'Comedy, Romance, Seinen', 'Drama, Historical', 'Action, Comedy, Harem, Parody, Romance', 'Comedy, Fantasy, Seinen', 'Music', 'Adventure, Comedy, Fantasy, Magic, School', 'Comedy, Parody, School, Slice of Life', 'Action, Cars, Seinen, Sports', 'Adventure, Fantasy, Mystery, Shounen, Supernatural', 'Historical, Romance', 'Action, Adventure, Demons, Fantasy, Military, Seinen, Supernatural', 'Cars, Shounen, Sports', 'Drama, School, Super Power', 'Action, Comedy, Mystery, Shounen', 'Adventure, Drama, Fantasy', 'Action, Adventure, Comedy, Drama, Seinen', 'Adventure, Mystery', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Comedy, Harem, Romance, School, Shounen', 'Action, Adventure, Comedy, Fantasy, Kids', 'Comedy, Ecchi, Harem, Romance, School, Sci-Fi, Shounen', 'Comedy, Harem, Mystery, Romance, School, Shounen, Supernatural', 'Drama, Historical, Psychological, Seinen, Thriller', 'Adventure, Comedy, Drama, Fantasy', 'Comedy, Romance, School, Slice of Life', 'Comedy, Kids, Slice of Life', 'Drama, Mecha, Sci-Fi, Space', 'Adventure, Drama, Sci-Fi, Space', 'Drama, Romance, School, Shoujo', 'Drama, Romance, Shoujo', 'Comedy, School, Slice of Life', 'Comedy, School, Slice of Life', 'Adventure, Drama, Historical, Kids, Slice of Life', 'Action, Adventure', 'Cars, Seinen, Sports', 'Action, Fantasy, Seinen, Supernatural', 'Comedy, Martial Arts, School, Shounen', 'Adventure, Fantasy, Shounen, Supernatural', 'Comedy, Drama, Romance, School, Shoujo, Slice of Life', 'Drama, Magic, Romance, Shoujo', 'Action, Adventure, Comedy, Fantasy, Kids', 'Drama, Music, Romance, Slice of Life', 'Action, Comedy, Fantasy, Magic, School, Shoujo, Slice of Life', 'Action, Adventure, Comedy, Demons, Fantasy, Magic, Romance, Shounen, Supernatural', 'Adventure, Comedy, Demons, Fantasy, Magic, Romance, Shounen, Supernatural', 'Adventure, Comedy, Demons, Drama, Fantasy, Historical, Romance, Shounen, Supernatural', 'Comedy, Music, School, Slice of Life', 'Drama, Military, Romance, Sci-Fi', 'Action, Adventure, Comedy, Mystery, Shounen', 'Action, Mecha, Military, Sci-Fi, Space', 'Action, Adventure, Drama, Mecha, Military, Sci-Fi, Space', 'Action, Adventure, Shounen', 'Comedy, School, Shounen, Slice of Life', 'Action, Adventure, Comedy, Drama, Romance, Sci-Fi', 'Comedy, Shoujo', 'Horror, Mystery, School, Supernatural, Thriller', 'Action, Comedy, School, Shounen', 'Action, Demons, Fantasy, Shounen, Supernatural', 'Action, Adventure, Drama, Fantasy, Historical, Shounen', 'Comedy, Parody, Shounen, Supernatural', 'Drama', 'Action, Adventure, Comedy, Fantasy, Romance', 'Action, Mystery, Supernatural', 'Comedy, Historical, Parody', 'Comedy, Music, School, Slice of Life', 'Adventure, Comedy, Demons, Fantasy, Shoujo', 'Fantasy, Slice of Life, Supernatural', 'Adventure, Comedy, Dementia, Psychological, Romance', 'Drama, School, Shoujo, Shoujo Ai', 'Comedy', 'Action, Drama, Fantasy, Shounen, Super Power', 'Comedy, Drama, Slice of Life', 'Action, Martial Arts, Romance, Shounen, Super Power', 'Adventure, Comedy, Drama, Shounen, Supernatural', 'Action, Mecha, Military', 'Action, Horror, Mystery, Psychological', 'Action, Adventure, Drama, Fantasy', 'Action, Comedy, Demons, Ecchi, Harem, Romance, School', 'Comedy, Romance', 'Drama, Military, Police, Psychological, Romance', 'Comedy, Music, School, Slice of Life', 'Adventure, Drama, Fantasy', 'Comedy, Parody, School, Slice of Life', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Adventure, Comedy, Drama, Music, School, Seinen', 'Comedy, Fantasy, Martial Arts, Slice of Life', 'Comedy, Martial Arts, Romance, Shounen', 'Action, Mecha, Sci-Fi, Seinen, Space', 'Adventure, Comedy, Demons, Fantasy, Magic', 'Comedy, Drama, Ecchi, Harem, Romance, Sci-Fi, Shounen, Supernatural', 'Action, Drama, Mecha, Military, Sci-Fi, Space', 'Comedy, Drama, Mystery, Police, Shounen', 'Action, Sci-Fi, Super Power', 'Action, Adventure, Drama, Sci-Fi, Seinen, Space', 'Comedy, Historical, Romance, School, Shoujo, Slice of Life', 'Action, Fantasy, Mecha, Military, Shounen', 'Comedy, Shoujo, Slice of Life', 'Adventure, Comedy, Mystery, Police, Shounen, Sports', 'Comedy, Parody, Slice of Life', 'Drama, Historical', 'Action, Horror, Military, Seinen, Super Power, Supernatural, Vampire', 'Comedy, School, Shounen, Sports', 'Action, Mecha, Military, Music, Sci-Fi, Space', 'Comedy, School, Seinen, Slice of Life', 'Action, Demons, Shounen, Supernatural', 'Action, Adventure, Comedy, Fantasy, Shounen, Super Power', 'Action, Comedy, Parody, Sci-Fi, Seinen, Super Power, Supernatural', 'Action, Military, Romance, Sci-Fi, Space', 'Comedy, Ecchi, Harem, Romance, Sci-Fi, Shounen, Supernatural', 'Comedy, Sci-Fi, Space', 'Comedy, Romance, Seinen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Drama, Horror, Psychological, Romance, Seinen, Supernatural', 'Comedy, Drama, Josei, Romance, Slice of Life', 'Drama', 'Comedy, Harem, Romance, Shounen, Supernatural', 'Comedy, Drama, Romance, School, Shounen, Slice of Life', 'Action, Adventure, Ecchi, Magic, Shounen, Supernatural', 'Drama, Romance, School, Shoujo, Shoujo Ai', 'Adventure, Drama, Mecha, Military, Sci-Fi, Space', 'Comedy, Fantasy, Supernatural', 'Action, Adventure, Fantasy, Shounen, Supernatural', 'Action, Comedy, Parody, Sci-Fi, Seinen, Super Power, Supernatural', 'Drama, Fantasy, Historical, Romance', 'Comedy, Romance, School, Shounen', 'Comedy, Drama, Slice of Life', 'Action, Horror, Mystery, Seinen, Supernatural', 'Action, Adventure, Fantasy', 'Music, Sci-Fi', 'Action, Adventure, Horror, Mecha, Psychological, Sci-Fi, Shounen', 'Mystery, Police, Psychological, Supernatural, Thriller', 'Adventure, Comedy, Mystery, Police, Shounen', 'Action, Demons, Drama, Fantasy, Historical, Josei', 'Comedy, Fantasy, Supernatural', 'Comedy, School, Shounen, Sports', 'Drama, Horror, Psychological, Sci-Fi', 'Action, Adventure, Martial Arts, Shounen, Super Power', 'Action, Drama, Shounen, Supernatural, Vampire', 'Action, Military, Romance, Sci-Fi, Space', 'Comedy, School, Shounen, Slice of Life', 'Action, Adventure, Sci-Fi, Space', 'Action, Magic, Sci-Fi, Super Power', 'Comedy, Sci-Fi, Slice of Life, Sports', 'Comedy, Drama, Shounen, Sports', 'Comedy, Shoujo Ai, Slice of Life', 'Comedy, Romance, School, Super Power', 'Comedy, Slice of Life', 'Action, Adventure, Fantasy, Magic, Shounen', 'Comedy, Ecchi, Fantasy, Magic, Shounen', 'Comedy, School, Slice of Life', 'Action', 'Drama, Mecha, Mystery, Police, Sci-Fi', 'Action, Fantasy, Seinen, Supernatural', 'Action, Comedy, Drama, Magic, Seinen', 'Action, Military, Romance, Sci-Fi, Space', 'Action, Adventure, Comedy, Drama, Shounen, Supernatural', 'Action, Adventure, Fantasy, Game, Romance', 'Action, Comedy, Sci-Fi', 'Demons, Magic, Romance, Shoujo', 'Drama, Mecha, Psychological, Sci-Fi', 'Action, Military, Sci-Fi', 'Action, Mecha, Military, Shounen', 'Adventure, Comedy, Kids, Mystery, Police, Shounen', 'Adventure, Drama, Fantasy, Shounen', 'Action, Fantasy, Shoujo, Supernatural', 'Comedy, School, Slice of Life', 'Action, Super Power, Supernatural', 'Action, Comedy, School, Super Power', 'Comedy, Police, Slice of Life', 'Drama, Mecha, Military, Romance, Sci-Fi, Space', 'Action, Adventure, Mecha, Military, Romance, Sci-Fi, Space', 'Comedy, School, Slice of Life', 'Comedy, School, Shounen, Sports', 'Action, Fantasy, Shounen, Super Power', 'Comedy, Ecchi, Harem, Romance, School, Sci-Fi, Shounen', 'Comedy, Ecchi, Harem, Romance, School, Sci-Fi, Shounen', 'Comedy, Slice of Life', 'Shoujo, Slice of Life', 'Comedy, Sci-Fi, Shoujo', 'Adventure, Comedy, Kids, Sci-Fi', 'Drama, Historical, Romance, Seinen, Slice of Life', 'Action, Comedy, Mecha, Military, Sci-Fi', 'Action, Drama, Sci-Fi, Super Power', 'Adventure, Fantasy, Romance', 'Adventure, Drama, Fantasy, Military, Sci-Fi', 'Mystery, Psychological, Supernatural', 'Action, Mystery, Supernatural, Thriller', 'Comedy, Drama, Romance, Shounen, Slice of Life', 'Comedy, Fantasy', 'Action, Drama, Mystery, Supernatural', 'Action, Adventure, Comedy, Ecchi, Samurai, Seinen', 'Comedy, School, Slice of Life', 'Drama, Mecha, Military, Sci-Fi, Space', 'Action, Comedy, Martial Arts, Shounen, Super Power', 'Comedy, Slice of Life', 'Music, Shounen', 'Action, Comedy, Mecha, Sci-Fi, Space', 'Comedy, School, Super Power', 'Action, Drama, Horror, Military, Mystery, Supernatural, Vampire', 'Action, Demons, Historical, Romance, Supernatural', 'Comedy, Sports', 'Comedy, Drama, Fantasy, Romance, Shoujo, Slice of Life', 'Comedy, Magic, School, Shoujo', 'Comedy, Drama, School, Shounen, Sports', 'Drama, School, Slice of Life', 'Comedy, Romance, Supernatural', 'Drama, Historical, Shoujo, Slice of Life', 'Adventure, Fantasy, Romance, Shoujo', 'Adventure, Fantasy, Mecha, Romance, Shoujo', 'Adventure, Comedy, Mystery, Police, Shounen', 'Comedy, Ecchi, Harem, Romance, School, Sci-Fi, Shounen', 'Comedy, School, Shounen, Super Power, Supernatural', 'Music, School, Shoujo, Slice of Life', 'Action, Comedy, School, Supernatural', 'Fantasy, Sci-Fi, Shounen, Slice of Life', 'Action, Fantasy, Mecha, Military, Shounen', 'Comedy, Ecchi, Kids, School, Shounen, Slice of Life', 'Mystery, School, Thriller', 'Adventure, Comedy, Demons, Fantasy, Magic, Martial Arts, Shounen', 'Comedy, Mystery, Romance', 'Comedy, Slice of Life', 'Comedy, Shounen, Supernatural', 'Horror, Mystery, Psychological, Supernatural', 'Cars, Seinen, Sports', 'Historical, Romance, Shounen', 'Action, Comedy, Ecchi, Parody, Supernatural', 'Comedy, Seinen, Slice of Life', 'Music, Shoujo, Slice of Life, Sports', 'Adventure, Comedy, Martial Arts, Romance, Shounen, Supernatural', 'Comedy, Slice of Life', 'Action, Drama, Fantasy, Romance, School, Supernatural', 'Action, Adventure, Fantasy, Magic, Military', 'Adventure, Military, Romance', 'Action, Super Power, Supernatural', 'Action, Horror, Mystery, Seinen, Supernatural', 'Drama, Fantasy, Romance, Shoujo', 'Drama, Magic, Romance, Shoujo', 'Action, Mecha, Military, School, Super Power', 'Comedy', 'Action, Super Power, Supernatural, Thriller', 'Action, Comedy, Drama, Mystery, Romance, Thriller', 'Comedy, Slice of Life', 'Action, Comedy, Ecchi, Harem, Magic, Supernatural', 'Fantasy, Slice of Life, Supernatural', 'Action, Adventure, Comedy, Mystery, Shounen', 'Comedy, School, Slice of Life', 'Drama, Supernatural', 'Action, Demons, Shounen, Supernatural', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen, Super Power', 'Drama, Romance, School, Sci-Fi, Shoujo', 'Shounen, Sports', 'Action, Adventure, Historical, Magic, Mystery, Sci-Fi', 'Action, Ecchi, Fantasy, Romance, School', 'Comedy, Drama, Romance, Shounen', 'Action, Comedy, Drama, Magic, Seinen', 'Comedy, Drama, School, Shounen, Slice of Life, Sports', 'Comedy, Romance, School, Shoujo', 'Action, Comedy, Harem, Sci-Fi, Shounen, Space', 'Action, Drama, Psychological, Sci-Fi', 'Action, Adventure, Comedy, Drama, Romance, Sci-Fi', 'Action, Drama, Fantasy, Sci-Fi', 'Action, Comedy, Ecchi, Shounen, Sports', 'Action, Drama', 'Action, Adventure, Comedy, Drama', 'Adventure, Comedy, Drama, Fantasy, Historical, Magic, Martial Arts, Romance, Shoujo', 'Comedy, Slice of Life', 'Action, Adventure, Horror, Shounen, Vampire', 'Comedy, Mystery, Supernatural', 'Action, Drama, Mecha, Military, Sci-Fi', 'Comedy, Fantasy, Magic, Shoujo', 'Adventure, Comedy, Fantasy, Shounen', 'Action, Historical, Martial Arts, Samurai, Super Power', 'Action, Adventure, Demons, Fantasy, Magic, Supernatural', 'Action, Comedy, Sci-Fi, Shounen, Space', 'Comedy, Romance, School, Shoujo, Slice of Life', 'Adventure, Ecchi, Fantasy, Magic, Romance', 'Romance, School, Shoujo, Slice of Life', 'Adventure, Comedy, Drama, Fantasy, Magic, Romance, Shoujo', 'Comedy, Romance, School, Slice of Life', 'Action, Comedy, Mystery, Seinen, Supernatural', 'Action, Mystery, Police, Shounen', 'Adventure, Comedy, Fantasy, Kids, Sci-Fi, Shounen', 'Comedy, Parody, Slice of Life', 'Adventure, Drama, Fantasy, Sci-Fi, Space', 'Military, School', 'Action, Drama, Historical, Josei, Samurai, Supernatural', 'Comedy, Historical, Parody', 'Comedy, Romance, Shoujo', 'Action, Adventure, Comedy, Shounen', 'Magic, Romance, School, Sci-Fi, Supernatural', 'Comedy, Demons, Mystery, Shounen, Supernatural', 'Adventure, Mystery', 'Action, Sci-Fi', 'Action, Adventure, Comedy, Fantasy, Shounen, Super Power', 'Action, Military, Romance', 'Adventure, Fantasy, Shounen, Supernatural', 'Action, Super Power, Supernatural', 'Action, Adventure, Drama, Mecha, Military, Sci-Fi, Space', 'Action, Comedy, Shounen, Super Power, Supernatural', 'Comedy, Game, School, Seinen', 'Adventure, Comedy, Mystery, Police, Shounen', 'Adventure, Comedy, Fantasy, Sci-Fi, Shounen', 'Action, Comedy, Fantasy, Magic, School, Shoujo, Slice of Life', 'Action, Comedy, Harem, Parody, Romance', 'Adventure, Demons, Drama, Fantasy, Historical, Romance, Shounen, Supernatural', 'Psychological, Romance, Slice of Life', 'Action, Mystery, Romance, Super Power, Thriller', 'Adventure, Fantasy, Psychological', 'Fantasy, Shounen Ai', 'Comedy, School, Shounen, Sports', 'Action, Fantasy, Supernatural', 'Adventure, Comedy, Fantasy, Magic, Shounen', 'Action, Adventure, Comedy, Drama, Fantasy, Shounen', 'Action, Drama, Fantasy, Shounen, Super Power', 'Comedy, Drama, Music', 'Drama, Historical, Music, Romance', 'Action, Comedy, Drama, Fantasy', 'Action, School, Sci-Fi, Shounen, Supernatural', 'Action, Mecha, Sci-Fi, Super Power', 'Demons, Magic, Romance, Shoujo', 'Drama', 'Comedy, Drama, Fantasy, Magic, Shoujo', 'Adventure, Comedy, Mystery, Police, Shounen', 'Comedy, Drama, Fantasy, Historical, Military, Shounen', 'Comedy, Parody, Slice of Life', 'Romance, Sci-Fi, Shoujo', 'Fantasy, Kids, Magic, Shoujo', 'Comedy, Drama, Mystery, Romance, Slice of Life, Thriller', 'Comedy, Shounen, Slice of Life, Sports', 'Action, Cars, Drama, Seinen, Sports', 'Action, Fantasy, Shounen, Super Power, Supernatural, Vampire', 'Comedy, Romance, Shounen Ai', 'Action, Comedy, Drama, Magic, Super Power', 'Drama, Mystery, Police, Psychological, Supernatural, Thriller', 'Adventure, Comedy, Fantasy, Kids', 'Adventure, Drama, Sci-Fi, Slice of Life', 'Action, Fantasy, Seinen, Supernatural', 'Action, Historical, Martial Arts, Samurai, Super Power', 'Action, Drama, Fantasy, Romance, School, Supernatural', 'Action, Drama, Mecha, Military, Sci-Fi', 'Adventure, Historical, Sci-Fi', 'Action, Adventure, Comedy, Fantasy, Shounen', 'Mystery, Supernatural', 'Comedy, Ecchi, Kids, School, Shounen, Slice of Life', 'Comedy, School, Shounen, Sports', 'Adventure, Comedy, Fantasy, Kids, Shounen', 'Comedy, Sci-Fi', 'Action, Comedy, Drama, Mystery, Shounen, Super Power, Supernatural', 'Action, Super Power, Supernatural', 'Comedy, Shounen', 'Adventure, Comedy, Fantasy, Shounen', 'Comedy, Fantasy, Parody, Shounen, Supernatural', ...]
In [16]:
# Получение списка значений из индекса
anime_modified = anime.set_index('name')
anime_modified.index.tolist()
# anime_modified
Out[16]:
['Kimi no Na wa.', 'Fullmetal Alchemist: Brotherhood', 'Gintama°', 'Steins;Gate', 'Gintama'', 'Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou', 'Hunter x Hunter (2011)', 'Ginga Eiyuu Densetsu', 'Gintama Movie: Kanketsu-hen - Yorozuya yo Eien Nare', 'Gintama': Enchousen', 'Clannad: After Story', 'Koe no Katachi', 'Gintama', 'Code Geass: Hangyaku no Lelouch R2', 'Haikyuu!! Second Season', 'Sen to Chihiro no Kamikakushi', 'Shigatsu wa Kimi no Uso', 'Mushishi Zoku Shou 2nd Season', 'Ookami Kodomo no Ame to Yuki', 'Code Geass: Hangyaku no Lelouch', 'Hajime no Ippo', 'Rurouni Kenshin: Meiji Kenkaku Romantan - Tsuioku-hen', 'Cowboy Bebop', 'One Punch Man', 'Mononoke Hime', 'Suzumiya Haruhi no Shoushitsu', 'Monogatari Series: Second Season', 'Mushishi Zoku Shou', 'Mushishi', 'Tengen Toppa Gurren Lagann', 'Great Teacher Onizuka', 'Natsume Yuujinchou Go', 'Hajime no Ippo: New Challenger', 'Mushishi Zoku Shou: Suzu no Shizuku', 'Natsume Yuujinchou Shi', 'Howl no Ugoku Shiro', 'Fate/Zero 2nd Season', 'Kizumonogatari II: Nekketsu-hen', 'Monster', 'Bakuman. 3rd Season', 'Death Note', 'Gintama°: Aizome Kaori-hen', 'Ansatsu Kyoushitsu (TV) 2nd Season', 'Haikyuu!!', 'Hajime no Ippo: Rising', 'Kara no Kyoukai 5: Mujun Rasen', 'Natsume Yuujinchou San', 'Ping Pong The Animation', 'Mushishi Special: Hihamukage', 'Boku dake ga Inai Machi', 'Yojouhan Shinwa Taikei', 'Aria The Origination', 'Kamisama Hajimemashita: Kako-hen', 'Rainbow: Nisha Rokubou no Shichinin', 'Re:Zero kara Hajimeru Isekai Seikatsu', 'Tengen Toppa Gurren Lagann Movie: Lagann-hen', 'Zoku Natsume Yuujinchou', 'Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.', 'Kuroko no Basket 3rd Season', 'Steins;Gate Movie: Fuka Ryouiki no Déjà vu', 'Hotarubi no Mori e', 'Shokugeki no Souma', 'Yuri!!! on Ice', 'Gintama: Yorinuki Gintama-san on Theater 2D', 'JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season', 'Gintama Movie: Shinyaku Benizakura-hen', 'Hellsing Ultimate', 'Kiseijuu: Sei no Kakuritsu', 'Shouwa Genroku Rakugo Shinjuu', 'Uchuu Kyoudai', 'Bakemono no Ko', 'Hotaru no Haka', 'Kuroko no Basket 2nd Season', 'Major S5', 'One Piece', 'Ghost in the Shell: Stand Alone Complex 2nd GIG', 'JoJo no Kimyou na Bouken: Diamond wa Kudakenai', 'Kara no Kyoukai 7: Satsujin Kousatsu (Kou)', 'Kingdom 2nd Season', 'Slam Dunk', 'Usagi Drop', 'Girls und Panzer der Film', 'Mob Psycho 100', 'Nana', 'Baccano!', 'Mushishi Zoku Shou: Odoro no Michi', 'Shingeki no Kyojin', 'Bakuman. 2nd Season', 'Cross Game', 'Doukyuusei (Movie)', 'Evangelion: 2.0 You Can (Not) Advance', 'Shinsekai yori', 'Uchuu Senkan Yamato 2199', 'Chihayafuru 2', 'Fate/Zero', 'JoJo no Kimyou na Bouken (TV)', 'Mahou Shoujo Madoka★Magica', 'Nichijou', 'Psycho-Pass', 'Barakamon', 'Diamond no Ace: Second Season', 'Magi: The Kingdom of Magic', 'Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari', 'Major: World Series', 'Samurai Champloo', 'Shokugeki no Souma: Ni no Sara', 'Katanagatari', 'Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari', 'Major S6', 'Mononoke', 'Shirobako', 'Ashita no Joe 2', 'Hunter x Hunter', 'Noragami Aragoto', 'Sakamichi no Apollon', 'Tonari no Totoro', 'Ghost in the Shell: Stand Alone Complex', 'Kaze no Tani no Nausicaä', 'No Game No Life', 'Romeo no Aoi Sora', 'Yuu☆Yuu☆Hakusho', 'Kino no Tabi: The Beautiful World', 'Kuroko no Basket', 'Nodame Cantabile', 'Ookami to Koushinryou II', 'Shingeki no Kyojin: Kuinaki Sentaku', 'Steins;Gate: Oukoubakko no Poriomania', 'Fate/stay night: Unlimited Blade Works 2nd Season', 'Kemono no Souja Erin', 'Kizumonogatari I: Tekketsu-hen', 'Neon Genesis Evangelion: The End of Evangelion', 'Toradora!', 'Toki wo Kakeru Shoujo', 'Tsubasa: Tokyo Revelations', 'Owarimonogatari', 'Rurouni Kenshin: Meiji Kenkaku Romantan', 'Stranger: Mukou Hadan', 'Detective Conan Movie 06: The Phantom of Baker Street', 'Fate/stay night: Unlimited Blade Works', 'Major S1', 'Mobile Suit Gundam: The Origin', 'Nanatsu no Taizai', 'Natsume Yuujinchou', 'One Piece Film: Strong World', 'Higurashi no Naku Koro ni Kai', 'Hunter x Hunter OVA', 'Hunter x Hunter: Greed Island Final', 'Kuroshitsuji: Book of Murder', 'Major S2', 'One Outs', 'Beck', 'Berserk', 'Cowboy Bebop: Tengoku no Tobira', 'Major S3', 'Mobile Suit Gundam Unicorn', 'Natsume Yuujinchou: Itsuka Yuki no Hi ni', 'NHK ni Youkoso!', 'Rose of Versailles', 'Sakurasou no Pet na Kanojo', 'Angel Beats!', 'Bakemonogatari', 'Bungou Stray Dogs 2nd Season', 'Hajime no Ippo: Champion Road', 'One Piece Film: Z', 'Ouran Koukou Host Club', 'Detective Conan Movie 13: The Raven Chaser', 'Durarara!!', 'Nodame Cantabile Finale', 'Planetes', 'Shelter', 'Tenkuu no Shiro Laputa', 'Gintama: Shiroyasha Koutan', 'Hachimitsu to Clover II', 'InuYasha: Kanketsu-hen', 'Kaguya-hime no Monogatari', 'Katekyo Hitman Reborn!', 'Kuroshitsuji: Book of Circus', 'Ookami to Koushinryou', 'Boku no Hero Academia', 'Gin no Saji 2nd Season', 'Little Busters!: Refrain', 'Major: Message', 'Saint Seiya: The Lost Canvas - Meiou Shinwa 2', 'SKET Dance', 'Bakuman.', 'Danshi Koukousei no Nichijou', 'Kotonoha no Niwa', 'Kyoukai no Kanata Movie: I'll Be Here - Mirai-hen', 'Major S4', 'Omoide no Marnie', 'Working!!!: Lord of the Takanashi', 'Ghost in the Shell', 'K-On! Movie', 'Kuroko no Basket: Saikou no Present Desu', 'Mahou Shoujo Lyrical Nanoha: The Movie 2nd A's', 'Sennen Joyuu', 'Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero', 'xxxHOLiC Kei', 'Berserk: Ougon Jidai-hen III - Kourin', 'Death Parade', 'Fullmetal Alchemist', 'Gyakkyou Burai Kaiji: Ultimate Survivor', 'Hunter x Hunter: Greed Island', 'Redline', 'Chihayafuru', 'Detective Conan Movie 20: The Darkest Nightmare', 'Dragon Ball Z', 'Fate/stay night: Unlimited Blade Works - Prologue', 'Kokoro ga Sakebitagatterunda.', 'Mimi wo Sumaseba', 'Nagi no Asukara', 'Neon Genesis Evangelion', 'One Piece Film: Gold', 'Tokyo Godfathers', 'Trigun', 'xxxHOLiC Rou', 'Gintama: Shinyaku Benizakura-hen', 'Mahou Shoujo Madoka★Magica Movie 1: Hajimari no Monogatari', 'Sekaiichi Hatsukoi 2', 'Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku', 'Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA', 'Aria The Natural', 'Black Lagoon: The Second Barrage', 'Clannad', 'Kami nomi zo Shiru Sekai: Megami-hen', 'Summer Wars', 'Baccano! Specials', 'Detective Conan Movie 14: The Lost Ship in the Sky', 'Gyakkyou Burai Kaiji: Hakairoku-hen', 'Initial D Final Stage', 'Kaiba', 'One Piece: Episode of Merry - Mou Hitori no Nakama no Monogatari', 'Saiki Kusuo no Ψ-nan (TV)', 'Cardcaptor Sakura Movie 2: Fuuin Sareta Card', 'Hajime no Ippo: Mashiba vs. Kimura', 'Kamisama Hajimemashita◎', 'Skip Beat!', 'Yowamushi Pedal: Grande Road', 'Gankutsuou', 'Majo no Takkyuubin', 'Nodame Cantabile: Paris-hen', 'One Piece: Episode of Nami - Koukaishi no Namida to Nakama no Kizuna', 'Osomatsu-san', 'Space☆Dandy 2nd Season', 'Tsumiki no Ie', 'Detroit Metal City', 'Eve no Jikan', 'Eve no Jikan (Movie)', 'Kaichou wa Maid-sama!', 'Saint Seiya: Meiou Hades Juuni Kyuu-hen', 'Zankyou no Terror', 'Darker than Black: Kuro no Keiyakusha', 'Detective Conan', 'Detective Conan Movie 05: Countdown to Heaven', 'Diamond no Ace', 'Fairy Tail (2014)', 'Hibike! Euphonium 2', 'JoJo no Kimyou na Bouken: Stardust Crusaders', 'Maison Ikkoku', 'Non Non Biyori Repeat', 'Shijou Saikyou no Deshi Kenichi', 'Yuusha-Ou GaoGaiGar Final', 'Gekkan Shoujo Nozaki-kun', 'Initial D Fourth Stage', 'Junjou Romantica 2', 'Kaze Tachinu', 'Kingdom', 'Kuragehime', 'Magi: The Labyrinth of Magic', 'Mobile Suit Gundam 00', 'ReLIFE', 'Saint Seiya: The Lost Canvas - Meiou Shinwa', 'Seirei no Moribito', 'Akatsuki no Yona', 'Detective Conan Movie 08: Magician of the Silver Sky', 'Durarara!!x2 Ketsu', 'Free!: Eternal Summer Special', 'Glass no Kamen (2005)', 'Gosick', 'Hajime no Ippo: Boxer no Kobushi', 'Initial D First Stage', 'Kill la Kill', 'Lovely★Complex', 'Perfect Blue', 'Princess Tutu', 'Sakasama no Patema', 'Tsubasa: Shunraiki', 'Ashita no Joe', 'Fairy Tail', 'Ghost in the Shell: Stand Alone Complex - Solid State Society', 'Magi: Sinbad no Bouken (TV)', 'Shoujo Kakumei Utena', 'Tengen Toppa Gurren Lagann Movie: Gurren-hen', 'Detective Conan Movie 10: Requiem of the Detectives', 'Evangelion: 1.0 You Are (Not) Alone', 'Full Metal Panic? Fumoffu', 'Ginga Eiyuu Densetsu: Arata Naru Tatakai no Overture', 'Kara no Kyoukai 3: Tsuukaku Zanryuu', 'Mobile Suit Gundam 00 Second Season', 'Nisemonogatari', 'Tsukimonogatari', 'Ansatsu Kyoushitsu (TV)', 'Aria The Avvenire', 'Baby Steps 2nd Season', 'D.Gray-man', 'Ginga Eiyuu Densetsu Gaiden: Senoku no Hoshi, Senoku no Hikari', 'Gintama: Jump Festa 2014 Special', 'Lupin III: Cagliostro no Shiro', 'Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season', 'Ookiku Furikabutte: Natsu no Taikai-hen', 'Saiunkoku Monogatari 2nd Season', 'Sekaiichi Hatsukoi Movie: Yokozawa Takafumi no Baai', 'Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie', 'Dennou Coil', 'Eureka Seven', 'Ghost in the Shell: Stand Alone Complex - The Laughing Man', 'Gintama: Dai Hanseikai', 'Hidamari Sketch: Sae Hiro Sotsugyou-hen', 'Hikaru no Go', 'Kimi ni Todoke', 'Kokoro Connect: Michi Random', 'Tokyo Magnitude 8.0', 'Cardcaptor Sakura', 'ef: A Tale of Melodies.', 'Gin no Saji', 'Hachimitsu to Clover', 'Kodomo no Omocha (TV)', 'Love Live! The School Idol Movie', 'Mahoutsukai no Yome: Hoshi Matsu Hito', 'Sekaiichi Hatsukoi OVA', 'Working!!!', 'Black Lagoon', 'Detective Conan Movie 18: The Sniper from Another Dimension', 'Final Fantasy VII: Advent Children Complete', 'Higurashi no Naku Koro ni', 'Hyouka', 'Interstella5555: The 5tory of The 5ecret 5tar 5ystem', 'Kanon (2006)', 'Kimi ni Todoke 2nd Season', 'Noragami', 'Persona 3 the Movie 4: Winter of Rebirth', 'xxxHOLiC Shunmuki', 'Zetsuen no Tempest', 'Aria The Origination: Sono Choppiri Himitsu no Basho ni...', 'Detective Conan Movie 03: The Last Wizard of the Century', 'Detective Conan Movie 04: Captured in Her Eyes', 'Dragon Ball', 'Hanada Shounen-shi', 'Junjou Romantica 3', 'Juuni Kokuki', 'Major Movie: Yuujou no Winning Shot', 'Mirai Shounen Conan', 'One Piece Film: Strong World Episode 0', 'Phantom: Requiem for the Phantom', 'Tamako Love Story', 'Toaru Kagaku no Railgun S', 'Touch', 'Yowamushi Pedal', 'Akira', 'Black Lagoon: Roberta's Blood Trail', 'Durarara!!x2 Shou', 'Gintama: Jump Festa 2015 Special', 'High☆Speed!: Free! Starting Days', 'Kyou kara Ore wa!!', 'Nurarihyon no Mago: Sennen Makyou', 'Paprika', 'Prince of Tennis: The National Tournament Finals', 'School Rumble Ni Gakki', 'Sekaiichi Hatsukoi', 'Akagami no Shirayuki-hime 2nd Season', 'Clannad: Mou Hitotsu no Sekai, Tomoyo-hen', 'Ginga Nagareboshi Gin', 'Initial D Fifth Stage', 'K-On!!', 'Log Horizon', 'Sekaiichi Hatsukoi: Valentine-hen', 'Slayers Next', 'Aria The OVA: Arietta', 'Detective Conan Movie 15: Quarter of Silence', 'Digimon Adventure tri. 3: Kokuhaku', 'Gintama: Nanigoto mo Saiyo ga Kanjin nano de Tasho Senobisuru Kurai ga Choudoyoi', 'Igano Kabamaru', 'Kamisama Hajimemashita', 'Kara no Kyoukai: Mirai Fukuin', 'Mobile Suit Gundam: The 08th MS Team', 'Omae Umasou da na', 'Ushio to Tora (TV) 2nd Season', 'Wolf's Rain OVA', 'Ajin 2nd Season', 'Aoki Hagane no Arpeggio: Ars Nova Cadenza', 'City Hunter 2', 'Durarara!!x2 Ten', 'ef: A Tale of Memories.', 'Ghost in the Shell 2.0', 'Ghost in the Shell: Stand Alone Complex 2nd GIG - Individual Eleven', 'Ginga Sengoku Gunyuuden Rai', 'Initial D Second Stage', 'Kami nomi zo Shiru Sekai II', 'Noragami Aragoto OVA', 'Stand By Me Doraemon', 'Tiger & Bunny', 'Yahari Ore no Seishun Love Comedy wa Machigatteiru.', 'Fullmetal Alchemist: Brotherhood Specials', 'Hanamonogatari', 'Kimi to Boku. 2', 'Ookiku Furikabutte', 'Ore Monogatari!!', 'Tamayura: Sotsugyou Shashin Part 4 - Ashita', 'Tekkon Kinkreet', 'There She Is!!', 'xxxHOLiC', 'Byousoku 5 Centimeter', 'Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen', 'Ginga Eiyuu Densetsu Gaiden: Rasen Meikyuu', 'Hyouge Mono', 'Karigurashi no Arrietty', 'Mahou Shoujo Lyrical Nanoha A's', 'Rurouni Kenshin: Meiji Kenkaku Romantan - Seisou-hen', 'Tanaka-kun wa Itsumo Kedaruge', 'Berserk: Ougon Jidai-hen II - Doldrey Kouryaku', 'Darker than Black: Kuro no Keiyakusha Gaiden', 'Elsword: El Lady', 'Ginga Eiyuu Densetsu: Waga Yuku wa Hoshi no Taikai', 'Hikaru no Go: Journey to the North Star Cup', 'Hybrid Child', 'Isekai no Seikishi Monogatari', 'Junjou Romantica OVA', 'Kobato.', 'Kuuchuu Buranko', 'Macross: Do You Remember Love?', 'One Piece 3D2Y: Ace no shi wo Koete! Luffy Nakama Tono Chikai', 'Prince of Tennis: The National Tournament', 'Prince of Tennis: The National Tournament Semifinals', 'Eyeshield 21', 'Full Moon wo Sagashite', 'Grisaia no Rakuen', 'Jigoku Shoujo Futakomori', 'Junjou Romantica', 'Mawaru Penguindrum', 'SKET Dance OVA', 'Soul Eater', 'Trigun: Badlands Rumble', 'Haibane Renmei', 'Kuroko no Basket: Tip Off', 'Macross', 'Mirai Nikki (TV)', 'Saiyuuki Reload: Burial', 'Tentai Senshi Sunred 2nd Season', 'Terra e... (TV)', 'Tokyo Ghoul', 'Usagi Drop Specials', 'Yume-iro Pâtissière', 'Azumanga Daioh', 'Colorful (Movie)', 'Detective Conan OVA 09: The Stranger in 10 Years...', 'Drifters: Special Edition', 'FLCL', 'Full Metal Panic! The Second Raid', 'Kuroshitsuji', 'Love Live! School Idol Project 2nd Season', 'Macross F Movie 2: Sayonara no Tsubasa', 'Magi: Sinbad no Bouken', 'Nekomonogatari: Kuro', 'Saiunkoku Monogatari', 'School Rumble', 'Strike the Blood II', 'Suzumiya Haruhi no Yuuutsu', 'Flanders no Inu (Movie)', 'Golden Boy', 'Grisaia no Meikyuu: Caprice no Mayu 0', 'Kaleido Star', 'Kara no Kyoukai 4: Garan no Dou', 'Lupin III vs. Detective Conan: The Movie', 'Non Non Biyori', 'Seitokai Yakuindomo* OVA', 'Yakitate!! Japan', 'Beelzebub', 'Death Billiards', 'Durarara!! Specials', 'Jormungand: Perfect Order', 'Mahou Shoujo Lyrical Nanoha: The Movie 1st', 'Overlord', 'Prince of Tennis', 'Takarajima', 'xxxHOLiC Movie: Manatsu no Yoru no Yume', 'Yuru Yuri San☆Hai!', 'Boruto: Naruto the Movie', 'Coquelicot-zaka kara', 'Eikoku Koi Monogatari Emma: Molders-hen', 'Ergo Proxy', 'Hanasaku Iroha', 'Hataraku Maou-sama!', 'Hibike! Euphonium', 'Higashi no Eden', 'Ie Naki Ko Remi', 'Kono Subarashii Sekai ni Shukufuku wo!', 'Kurenai no Buta', 'Mobile Suit Zeta Gundam', 'Prison School', 'Saint Seiya', 'Sayonara Zetsubou Sensei', 'Seto no Hanayome OVA', 'Zoku Sayonara Zetsubou Sensei', 'Akachan to Boku', 'Clannad: After Story - Mou Hitotsu no Sekai, Kyou-hen', 'Hakuouki Movie 2: Shikon Soukyuu', 'Kara no Kyoukai 2: Satsujin Kousatsu (Zen)', 'Macross F', 'Magic Kaito', 'Sakigake!! Cromartie Koukou', 'Shijou Saikyou no Deshi Kenichi OVA', 'Touhai Densetsu Akagi: Yami ni Maiorita Tensai', 'Carnival Phantasm', 'D.Gray-man Hallow', 'Date A Live: Encore OVA', 'Dragon Ball Kai (2014)', 'Gochuumon wa Usagi Desu ka??', 'Hidamari Sketch x ☆☆☆', 'Kokoro Connect', 'Saiyuuki Gaiden', 'Shirokuma Cafe', 'Tiger & Bunny Movie 2: The Rising', 'Zan Sayonara Zetsubou Sensei', 'City Hunter', 'Detective Conan Movie 02: The Fourteenth Target', 'Gekkan Shoujo Nozaki-kun Specials', 'Giant Robo the Animation: Chikyuu ga Seishi Suru Hi', 'Hetalia: The Beautiful World Specials', 'Kaleido Star: Legend of Phoenix - Layla Hamilton Monogatari', 'Kamisama Hajimemashita OVA', 'Little Witch Academia', 'Maria-sama ga Miteru 3rd', 'Mobile Suit Gundam Thunderbolt', 'The Everlasting Guilty Crown', 'Bishoujo Senshi Sailor Moon: Sailor Stars', 'Break Blade 4: Sanka no Chi', 'Hanasaku Iroha: Home Sweet Home', 'Hidamari Sketch x Honeycomb', 'Hokuto no Ken', 'Les Misérables: Shoujo Cosette', 'Serial Experiments Lain', 'Shiki', 'Ushiro no Shoumen Daare', 'Baka to Test to Shoukanjuu Ni!', 'Detective Conan Movie 01: The Timed Skyscraper', 'Detective Conan Movie 07: Crossroad in the Ancient Capital', 'Gundam Build Fighters', 'Hetalia: The Beautiful World', 'Initial D Third Stage', 'Kuroko no Basket 3rd Season NG-shuu', 'Neko no Ongaeshi', 'Seihou Bukyou Outlaw Star', 'White Album 2', 'Working'!!', 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri', 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri 2nd Season', 'Ghost Hunt', 'Gungrave', 'Jungle wa Itsumo Hare nochi Guu', 'Kuroko no Basket 2nd Season NG-shuu', 'Kyou kara Maou! 3rd Series', 'Lupin III (2015)', 'Madang-Eul Naon Amtalg', 'Maria-sama ga Miteru 4th', 'Musekinin Kanchou Tylor', 'Ookami to Koushinryou II: Ookami to Kohakuiro no Yuuutsu', 'Saint Seiya: Meiou Hades Meikai-hen', 'Saint☆Oniisan (Movie)', 'Seikai no Senki II', 'Top wo Nerae! Gunbuster', 'Toshokan Sensou: Kakumei no Tsubasa', 'Uchouten Kazoku', 'Baby Steps', 'Break Blade 5: Shisen no Hate', 'Code Geass: Hangyaku no Lelouch R2 Special Edition Zero Requiem', 'Goku Sayonara Zetsubou Sensei', 'Jormungand', 'Kindaichi Shounen no Jikenbo (TV)', 'Mobile Suit Gundam: Iron-Blooded Orphans', 'Shin Mazinger Shougeki! Z-hen', 'Tentai Senshi Sunred', 'Yuusha-Ou GaoGaiGar', 'Bleach', 'Chuunibyou demo Koi ga Shitai!', 'City Hunter 3', 'Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen', 'Detective Conan Movie 08: Time Travel of the Silver Sky', 'Detective Conan OVA 10: Kid in Trap Island', 'Dragon Ball Kai', 'Hetalia World Series', 'Jungle wa Itsumo Hare nochi Guu Deluxe', 'Kami nomi zo Shiru Sekai', 'Kyousou Giga (TV)', 'Magic Kaito 1412', 'Nejimaki Seirei Senki: Tenkyou no Alderamin', 'Plastic Memories', 'Psycho-Pass Movie', 'Seto no Hanayome', 'Sidonia no Kishi: Daikyuu Wakusei Seneki', 'Tanoshii Muumin Ikka', 'Tasogare Otome x Amnesia', 'Vampire Hunter D (2000)', 'Yuru Yuri Nachuyachumi!', 'Break Blade 3: Kyoujin no Ato', 'Danshi Koukousei no Nichijou Specials', 'Detective Conan Movie 09: Strategy Above the Depths', 'Detective Conan Movie 12: Full Score of Fear', 'Final Fantasy VII: Advent Children', 'Free!: Eternal Summer', 'Hakuouki Movie 1: Kyoto Ranbu', 'Hidamari Sketch x ☆☆☆ Specials', 'K: Missing Kings', 'Last Exile', 'Little Busters!: EX', 'Mobile Suit Gundam Wing: Endless Waltz Movie', 'Naruto: Shippuuden', 'Pokemon: The Origin', 'Yuru Yuri♪♪', 'Zan Sayonara Zetsubou Sensei Bangaichi', '3-gatsu no Lion', '91 Days', 'Akagami no Shirayuki-hime', 'Drifters', 'Gake no Ue no Ponyo', 'Ghost in the Shell 2: Innocence', 'Haikyuu!! Movie 1: Owari to Hajimari', 'Haikyuu!! OVA', 'Hoozuki no Reitetsu OVA', 'Keroro Gunsou', 'Lupin III: Part II', 'Macross F Movie 1: Itsuwari no Utahime', 'Mobile Suit Gundam Seed', 'Nodame Cantabile Finale Special', 'Paradise Kiss', 'Saint Seiya: The Hades Chapter Sanctuary - Yomigaerishi Gold Saint-tachi no Shinwa', 'Saraiya Goyou', 'Shiki Specials', 'Slayers Try', 'To LOVE-Ru Darkness 2nd Specials', 'Transformers the Movie', 'Uchuu Senkan Yamato 2199: Hoshimeguru Hakobune', 'Wolf's Rain', 'Akatsuki no Yona OVA', 'Ao no Exorcist', 'Claymore', 'Detective Conan: Episode One - Chiisaku Natta Meitantei', 'Ghost in the Shell: Stand Alone Complex - Solid State Society 3D', 'Golden Time', 'Hadashi no Gen', 'Hayate no Gotoku!!', 'Jinrui wa Suitai Shimashita', 'Kyoukai no Kanata Movie: I'll Be Here - Kako-hen - Yakusoku no Kizuna', 'Little Witch Academia: Mahoujikake no Parade', 'Lucky☆Star: Original na Visual to Animation', 'New Initial D Movie: Legend 1 - Kakusei', 'Pandora Hearts', 'Rurouni Kenshin DVD-BOX Special Ending', 'Berserk: Ougon Jidai-hen I - Haou no Tamago', 'Capeta', 'Charlotte', 'City Hunter '91', 'Kino no Tabi: Nanika wo Suru Tame ni - Life Goes On.', 'Lupin the IIIrd: Jigen Daisuke no Bohyou', 'Master Keaton OVA', 'Mobile Suit Gundam Thunderbolt: December Sky', 'Nisekoi', 'Pokemon XY&Z', 'To LOVE-Ru Darkness 2nd OVA', 'Yamada-kun to 7-nin no Majo (TV)', 'Aoi Bungaku Series', 'Arashi no Yoru ni', 'Bokura wa Minna Kawaisou', 'Chi's Sweet Home: Atarashii Ouchi', 'Densetsu Kyojin Ideon: Hatsudou-hen', 'Ginga Tetsudou 999', 'Hana yori Dango', 'Hanasakeru Seishounen', 'Hidamari Sketch x 365', 'Hidamari Sketch x SP', 'Ie Naki Ko', 'Michiko to Hatchin', 'New Initial D Movie: Legend 2 - Tousou', 'Persona 3 the Movie 2: Midsummer Knight's Dream', 'Sexy Commando Gaiden: Sugoiyo!! Masaru-san', 'Tegamibachi Reverse', 'Ao Haru Ride', 'Bishoujo Senshi Sailor Moon S', 'Digimon Adventure', 'Furiko', 'Heartcatch Precure!', 'InuYasha', 'InuYasha: Kuroi Tessaiga', 'InuYasha: Tenka Hadou no Ken', 'K-On!!: Keikaku!', 'Kumo no Mukou, Yakusoku no Basho', 'Lupin III vs. Detective Conan', 'Mobile Suit Gundam', 'Mobile Suit Gundam III: Encounters in Space', 'Noragami OVA', 'Seitokai Yakuindomo OVA', 'Urusei Yatsura Movie 2: Beautiful Dreamer', 'Yamato Nadeshiko Shichihenge♥', 'Another', 'Ansatsu Kyoushitsu (TV) 2nd Season: Kagaijugyou-hen', 'Ao no Exorcist Movie', 'Arslan Senki (TV)', 'Binbougami ga!', 'Black Jack', 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka', 'Durarara!!x2 Shou: Watashi no Kokoro wa Nabe Moyou', 'Hetalia World Series Specials', 'K-On!: Live House!', 'Kyou kara Maou!', 'Kyoukai no Kanata', 'Mind Game', 'Oniisama e...', 'Servamp Specials', 'Shingeki no Kyojin OVA', 'Tamayura: Sotsugyou Shashin Part 3 - Akogare', 'The Last: Naruto the Movie', 'The Law of Ueki', 'Code Geass: Boukoku no Akito 2 - Hikisakareshi Yokuryuu', 'Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen', 'Hai to Gensou no Grimgar', 'High School DxD New', 'Huyao Xiao Hongniang: Yue Hong', 'Jin-Rou', 'K-On!', 'Kino no Tabi: The Beautiful World - Byouki no Kuni - For You', 'Lucky☆Star', 'Mobile Suit Gundam Wing', 'Mobile Suit Gundam Wing: Endless Waltz', 'Piano no Mori', 'Ranma ½', 'Ranma ½ OVA', 'Sidonia no Kishi', 'Slayers', 'Sora no Otoshimono: Tokeijikake no Angeloid', 'Soukou Kihei Votoms', 'Tantei Gakuen Q', 'Toaru Kagaku no Railgun', 'Uchuu Kaizoku Captain Harlock', 'Watashi no Ashinaga Ojisan', 'Break Blade 2: Ketsubetsu no Michi', 'Chibi Maruko-chan', 'Detective Conan Movie 16: The Eleventh Striker', 'Genshiken 2', 'Giovanni no Shima', 'Hellsing I: Digest for Freaks', 'Kuroko no Basket: Mou Ikkai Yarimasen ka', 'Macross F: Close Encounter - Deculture Edition', 'Non Non Biyori Repeat OVA', 'Nurarihyon no Mago OVA', 'One Piece: Episode of Luffy - Hand Island no Bouken', 'One Punch Man Specials', 'Seikai no Senki', 'Sora no Otoshimono: Forte', 'Space☆Dandy', 'Arakawa Under the Bridge x Bridge', 'Detective Conan Movie 10: Promo Special', 'Elfen Lied', 'Hachimitsu to Clover Specials', 'Hello! Lady Lynn', 'Kami nomi zo Shiru Sekai: Tenri-hen', 'Kimi to Boku.', 'Mahou Sensei Negima! Mou Hitotsu no Sekai', 'Maria-sama ga Miteru: Haru', 'Mobile Suit Gundam 0080: War in the Pocket', 'Mondaiji-tachi ga Isekai kara Kuru Sou Desu yo?', 'Nanatsu no Taizai OVA', 'One Punch Man: Road to Hero', 'Romeo x Juliet', 'School Rumble Ichi Gakki Hoshuu', 'Tamayura: Sotsugyou Shashin Part 2 - Hibiki', 'Ajin Part 1: Shoudou', 'Akame ga Kill!', 'AKB0048: Next Stage', 'Change!! Getter Robo: Sekai Saigo no Hi', 'Death Note Rewrite', 'Detective Conan Movie 17: Private Eye in the Distant Sea', 'Hakuouki Sekkaroku', 'Hoozuki no Reitetsu', 'Kuroko no Basket NG-shuu', 'Memories', 'Naruto: Shippuuden Movie 6 - Road to Ninja', 'Owari no Seraph: Nagoya Kessen-hen', 'Seikai no Senki III', 'Seitokai Yakuindomo*', 'Space Cobra', 'Toaru Majutsu no Index II', 'Tsuritama', 'Yowamushi Pedal Movie', 'Yuru Yuri Nachuyachumi!+', 'Baka to Test to Shoukanjuu', 'Chi's Sweet Home', 'Densetsu no Yuusha no Densetsu', 'Fairy Tail OVA', 'Ichigo Mashimaro OVA', 'Kingsglaive: Final Fantasy XV', 'Mobile Police Patlabor 2: The Movie', 'Persona 3 the Movie 1: Spring of Birth', 'Rozen Maiden: Ouvertüre', 'Seikai no Monshou', 'Shaman King', 'Sword Art Online', 'Tetsuwan Birdy Decode:02', 'Bishoujo Senshi Sailor Moon Crystal Season III', 'Bokurano', 'Bounen no Xamdou', 'Break Blade 6: Doukoku no Toride', 'Detective Conan: Conan vs. Kid - Shark & Jewel', 'Dragon Ball Z Special 2: Zetsubou e no Hankou!! Nokosareta Chousenshi - Gohan to Trunks', 'Hakkenden: Touhou Hakken Ibun 2nd Season', 'Hidamari Sketch x 365 Specials', 'K: Return of Kings', 'Kill la Kill Special', 'Kochira Katsushikaku Kameari Kouenmae Hashutsujo (TV)', 'Macross Plus', 'Macross Plus Movie Edition', 'Mitsudomoe Zouryouchuu!', 'Prince of Tennis: Another Story - Messages From Past and Future', 'Saint Seiya: Meiou Hades Elysion-hen', 'To LOVE-Ru Darkness', 'To LOVE-Ru Darkness OVA', 'Working!!', 'Yume-iro Pâtissière SP Professional', 'Daa! Daa! Daa!', 'Digimon Adventure: Bokura no War Game!', 'Eikoku Koi Monogatari Emma', 'Full Metal Panic!', 'Guilty Crown', 'Hoshi wo Ou Kodomo', 'Ima, Soko ni Iru Boku', 'Jigoku Shoujo Mitsuganae', 'Kara no Kyoukai 1: Fukan Fuukei', 'Kimagure Orange☆Road: Ano Hi ni Kaeritai', 'Kono Subarashii Sekai ni Shukufuku wo! OVA', 'Kubikiri Cycle: Aoiro Savant to Zaregototsukai', 'Lupin the Third: Mine Fujiko to Iu Onna', 'Minami-ke', 'Mobile Suit Gundam: Char's Counterattack', 'Naruto', 'New Game!', 'Shigatsu wa Kimi no Uso: Moments', 'Top wo Nerae 2! Diebuster', 'Baka to Test to Shoukanjuu: Matsuri', 'Blood+', 'Chrno Crusade', 'Free!: FrFr - Short Movie', 'Fruits Basket', 'Gakuen Alice', 'Haikyuu!! Movie 2: Shousha to Haisha', 'Hourou Musuko', 'Huyao Xiao Hongniang: Wangquan Fugui', 'Shoukoujo Sara', 'Soredemo Sekai wa Utsukushii', 'Tenkuu no Escaflowne', 'The Disappearance of Conan Edogawa: The Worst Two Days in History', 'To LOVE-Ru Darkness 2nd', 'Tokyo Ravens', 'Aikatsu! Movie', 'Angel Beats! Specials', 'Aria The Animation', 'Break Blade 1: Kakusei no Toki', 'Crayon Shin-chan Movie 09: Arashi wo Yobu Mouretsu! Otona Teikoku no Gyakushuu', 'Denpa-teki na Kanojo', 'Dragon Quest: Dai no Daibouken', 'Higashi no Eden Soushuuhen: Air Communication', 'Ichigo Mashimaro Encore', 'Inu x Boku SS Special', 'Jigoku Shoujo', 'New Initial D Movie: Legend 3 - Mugen', 'Nobunaga Concerto', 'Panty & Stocking with Garterbelt', 'Poyopoyo Kansatsu Nikki', 'Pretty Rhythm: Rainbow Live', 'Ranma ½ Super', 'Servant x Service', 'Shakugan no Shana II (Second)', 'Tales of Vesperia: The First Strike', 'Toaru Hikuushi e no Tsuioku', 'Towa no Quon 6: Towa no Quon', 'Ajin', 'Akagami no Shirayuki-hime: Nandemonai Takaramono, Kono Page', 'Bishoujo Senshi Sailor Moon R: The Movie', 'Code Geass: Hangyaku no Lelouch Special Edition Black Rebellion', 'Full Metal Panic! The Second Raid: Wari to Hima na Sentaichou no Ichinichi', 'Ga-Rei: Zero', 'Higashi no Eden Movie II: Paradise Lost', 'Jungle wa Itsumo Hare nochi Guu Final', 'Kore wa Zombie Desu ka? of the Dead', 'Kyoukai no Kanata: Shinonome', 'Lupin III: Episode 0 "First Contact"', 'Minami-ke Tadaima', 'Momo e no Tegami', 'Nurarihyon no Mago', 'One Piece: Episode of Sabo - 3 Kyoudai no Kizuna Kiseki no Saikai to Uketsugareru Ishi', 'Orange', 'Over Drive', 'R.O.D OVA', 'Rakudai Kishi no Cavalry', 'Ranma ½ Specials', 'Rozen Maiden: Träumend', 'Slam Dunk: Hoero Basketman-damashii! Hanamichi to Rukawa no Atsuki Natsu', 'Special A', 'Tenchi Muyou! Ryououki 2nd Season', 'Texhnolyze', 'Urusei Yatsura', 'Utawarerumono', 'Air Gear: Kuro no Hane to Nemuri no Mori - Break on the Sky', 'Black Jack 21', 'Digimon Adventure tri. 2: Ketsui', 'Fushigi Yuugi', 'Ichigo Mashimaro', 'JoJo no Kimyou na Bouken: Phantom Blood', 'Koyomimonogatari', 'Mobile Suit Gundam 00 Special Edition', 'Ojamajo Doremi Na-i-sho', 'One Piece Movie 6: Omatsuri Danshaku to Himitsu no Shima', 'Sengoku Basara Movie: The Last Party', 'Shingeki no Bahamut: Genesis', 'Tenchi Muyou! Ryououki', 'Tonari no Kaibutsu-kun', 'Zero no Tsukaima F', 'Ao Haru Ride OVA', 'Bishoujo Senshi Sailor Moon S: Kaguya Hime no Koibito', 'Bokura wa Minna Kawaisou: Hajimete no', 'Bungou Stray Dogs', 'Detective Conan Movie 19: The Hellfire Sunflowers', 'Doraemon (1979)', 'Genshiken', 'Ginga Tetsudou 999 (Movie)', 'Girls und Panzer: Kore ga Hontou no Anzio-sen Desu!', 'Hakuouki Hekketsuroku', 'Hetalia Axis Powers', 'Itazura na Kiss', 'Lupin III', 'Mahouka Koukou no Rettousei', 'Majin Tantei Nougami Neuro', 'Master Keaton', 'No.6', 'One Piece Movie 4: Dead End no Bouken', 'Senjou no Valkyria', 'Tegamibachi', 'Towa no Quon 4: Guren no Shoushin', 'Turn A Gundam', 'Bleach Movie 4: Jigoku-hen', 'D-Frag!', 'Detective Conan Movie 09: Promo Special', 'Dragon Ball Z Special 1: Tatta Hitori no Saishuu Kessen', 'Go! Princess Precure', 'Hayate no Gotoku!', 'InuYasha: Kagami no Naka no Mugenjo', 'Kanojo to Kanojo no Neko: Everything Flows', 'Kara no Kyoukai Remix: Gate of Seventh Heaven', 'Kino no Tabi: The Beautiful World - Tou no Kuni', 'Kono Danshi, Ningyo Hiroimashita.', 'Kuroko no Basket: Baka ja Katenai no yo!', 'Kyoukai no Kanata Movie: I'll Be Here - Kako-hen', 'Mahoujin Guru Guru', 'One Piece: Heart of Gold', 'Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa', 'The iDOLM@STER', 'Trapp Ikka Monogatari', 'Utawarerumono Specials', 'World Trigger', 'Yuusha-Ou GaoGaiGar Final Grand Glorious Gathering', 'Bishoujo Senshi Sailor Moon R', 'Black Jack (TV)', 'Cardcaptor Sakura Movie 1', 'Detective Conan: Black History', 'Fullmetal Alchemist: The Conqueror of Shamballa', 'Genshiken OVA', 'Hal', 'Heartcatch Precure! Movie: Hana no Miyako de Fashion Show... Desu ka!?', 'Higashi no Eden Movie I: The King of Eden', 'Hungry Heart: Wild Striker', 'Initial D Battle Stage 2', 'Kekkai Sensen', 'Love Stage!! OVA', 'Mahou Shoujo Lyrical Nanoha StrikerS', 'Mousou Dairinin', 'Muumindani no Suisei', 'Noein: Mou Hitori no Kimi e', 'Persona 3 the Movie 3: Falling Down', 'Sengoku Basara Two', 'Shakugan no Shana', 'Soukyuu no Fafner: Dead Aggressor - Exodus 2nd Season', 'Taiyou no Ko Esteban', 'Toriko', 'UN-GO: Inga-ron', 'Crayon Shin-chan', 'Diamond no Ace OVA', 'Doraemon Movie 31: Shin Nobita to Tetsujin Heidan - Habatake Tenshi-tachi', 'Flip Flappers', 'GetBackers', 'K', 'Katekyo Hitman Reborn! Special', 'Kekkaishi', 'Kuroshitsuji II Specials', ...]
In [17]:
# Получение списка значений столбцов
anime.columns.tolist()
Out[17]:
['anime_id', 'name', 'genre', 'type', 'episodes', 'rating', 'members']
Добавление данных в датафрейм и удаление их из него¶
In [18]:
# Присоединение к датафрейму нового столбца с заданным значением
anime['train set'] = True
anime.head(3)
Out[18]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 | True |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 | True |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 | True |
In [19]:
# Создание нового датафрейма из подмножества столбцов
anime[['name','episodes']].head()
Out[19]:
name | episodes | |
---|---|---|
0 | Kimi no Na wa. | 1 |
1 | Fullmetal Alchemist: Brotherhood | 64 |
2 | Gintama° | 51 |
3 | Steins;Gate | 24 |
4 | Gintama' | 51 |
In [20]:
# Удаление заданных столбцов
anime.drop(['anime_id', 'genre', 'members'], axis=1).head()
Out[20]:
name | type | episodes | rating | train set | |
---|---|---|---|---|---|
0 | Kimi no Na wa. | Movie | 1 | 9.37 | True |
1 | Fullmetal Alchemist: Brotherhood | TV | 64 | 9.26 | True |
2 | Gintama° | TV | 51 | 9.25 | True |
3 | Steins;Gate | TV | 24 | 9.17 | True |
4 | Gintama' | TV | 51 | 9.16 | True |
In [46]:
# Добавление в датафрейм строки с суммой значений из других строк
# Если используется RangeIndex - стандартная нумерация
df = pd.DataFrame([[1,'Bob', 8000],
[2,'Sally', 9000],
[3,'Scott', 20]], columns=['id','name', 'power level'])
new_row_sum = df.sum(axis=0)
# df.append(df.sum(axis=0), ignore_index=True) # устаревшее
df.loc[len(df)] = new_row_sum # only use with a RangeIndex!
df
Out[46]:
id | name | power level | |
---|---|---|---|
0 | 1 | Bob | 8000 |
1 | 2 | Sally | 9000 |
2 | 3 | Scott | 20 |
3 | 6 | BobSallyScott | 17020 |
In [47]:
# Добавление в датафрейм строки с суммой значений из других строк
# Если используются поля как индексы
df = pd.DataFrame([[1,'Bob', 8000],
[2,'Sally', 9000],
[3,'Scott', 20]], columns=['id','name', 'power level'])
new_row_sum = df.sum(axis=0)
df = df.set_index("name")
df = pd.concat([df, pd.DataFrame([new_row_sum]).set_index("name")]) # , ignore_index=True # - использовать с RangeIndex, когда неважно конкретное значение идентификатора
df
Out[47]:
id | power level | |
---|---|---|
name | ||
Bob | 1 | 8000 |
Sally | 2 | 9000 |
Scott | 3 | 20 |
BobSallyScott | 6 | 17020 |
Комбинирование датафреймов¶
In [52]:
# Конкатенация двух датафреймов
df1 = anime[0:2]
df2 = anime[2:4]
pd.concat([df1, df2], ignore_index=True)
Out[52]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 | True |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 | True |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 | True |
3 | 9253 | Steins;Gate | Sci-Fi, Thriller | TV | 24 | 9.17 | 673572 | True |
In [59]:
anime.head()
Out[59]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 | True |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 | True |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 | True |
3 | 9253 | Steins;Gate | Sci-Fi, Thriller | TV | 24 | 9.17 | 673572 | True |
4 | 9969 | Gintama' | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.16 | 151266 | True |
In [56]:
# Слияние датафреймов
# функция df.merge похожа на левое соединение SQL!
rating.head().merge(anime, left_on='anime_id', right_on='anime_id', suffixes=('_rating', '_anime'))
Out[56]:
user_id | anime_id | rating_rating | name | genre | type | episodes | rating_anime | members | train set | |
---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | 20 | -1 | Naruto | Action, Comedy, Martial Arts, Shounen, Super P... | TV | 220 | 7.81 | 683297 | True |
1 | 1 | 24 | -1 | School Rumble | Comedy, Romance, School, Shounen | TV | 26 | 8.06 | 178553 | True |
2 | 1 | 79 | -1 | Shuffle! | Comedy, Drama, Ecchi, Fantasy, Harem, Magic, R... | TV | 24 | 7.31 | 158772 | True |
3 | 1 | 226 | -1 | Elfen Lied | Action, Drama, Horror, Psychological, Romance,... | TV | 13 | 7.85 | 623511 | True |
4 | 1 | 241 | -1 | Girls Bravo: First Season | Comedy, Ecchi, Fantasy, Harem, Romance, School | TV | 11 | 6.69 | 84395 | True |
Фильтрация¶
In [57]:
# Получение строк с нужными индексными значениями
anime_modified.loc[['Haikyuu!! Second Season','Gintama']]
Out[57]:
anime_id | genre | type | episodes | rating | members | |
---|---|---|---|---|---|---|
name | ||||||
Haikyuu!! Second Season | 28891 | Comedy, Drama, School, Shounen, Sports | TV | 25 | 8.93 | 179342 |
Gintama | 918 | Action, Comedy, Historical, Parody, Samurai, S... | TV | 201 | 9.04 | 336376 |
In [64]:
# Получение строк по числовым индексам
anime_modified.iloc[0:3] # iloc < index, loc <= index
Out[64]:
anime_id | genre | type | episodes | rating | members | |
---|---|---|---|---|---|---|
name | ||||||
Kimi no Na wa. | 32281 | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 |
Fullmetal Alchemist: Brotherhood | 5114 | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 |
Gintama° | 28977 | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 |
In [66]:
# Получение строк по заданным значениям столбцов
# anime[anime['type'] == 'TV']
anime[anime['type'].isin(['TV', 'Movie'])].head()
Out[66]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 | True |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 | True |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 | True |
3 | 9253 | Steins;Gate | Sci-Fi, Thriller | TV | 24 | 9.17 | 673572 | True |
4 | 9969 | Gintama' | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.16 | 151266 | True |
In [67]:
# Получение среза датафрейма
anime[1:3]
Out[67]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 | True |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 | True |
In [69]:
# Фильтрация по значению
anime[anime['rating'] > 8]
Out[69]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 | True |
1 | 5114 | Fullmetal Alchemist: Brotherhood | Action, Adventure, Drama, Fantasy, Magic, Mili... | TV | 64 | 9.26 | 793665 | True |
2 | 28977 | Gintama° | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.25 | 114262 | True |
3 | 9253 | Steins;Gate | Sci-Fi, Thriller | TV | 24 | 9.17 | 673572 | True |
4 | 9969 | Gintama' | Action, Comedy, Historical, Parody, Samurai, S... | TV | 51 | 9.16 | 151266 | True |
... | ... | ... | ... | ... | ... | ... | ... | ... |
10765 | 32230 | Xi You Ji | Adventure, Fantasy | TV | 52 | 8.07 | 89 | True |
10786 | 26313 | Yakusoku: Africa Mizu to Midori | Drama, Kids | OVA | 1 | 9.25 | 53 | True |
10793 | 28557 | Yamete! Writer Asobi: Doubutsu Mura no Shoubou... | Drama, Kids | OVA | 1 | 8.67 | 40 | True |
10847 | 26097 | Yume no Tsuzuki | Drama, Kids | OVA | 1 | 8.67 | 53 | True |
12251 | 33960 | Chou Do M na Hentai Mesu-tachi Otokoton Chouky... | Hentai | OVA | Unknown | 8.38 | 161 | True |
583 rows × 8 columns
Сортировка¶
In [70]:
# простой пример
anime.sort_values('rating', ascending=False)
Out[70]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
10464 | 33662 | Taka no Tsume 8: Yoshida-kun no X-Files | Comedy, Parody | Movie | 1 | 10.00 | 13 | True |
10400 | 30120 | Spoon-hime no Swing Kitchen | Adventure, Kids | TV | Unknown | 9.60 | 47 | True |
9595 | 23005 | Mogura no Motoro | Slice of Life | Movie | 1 | 9.50 | 62 | True |
0 | 32281 | Kimi no Na wa. | Drama, Romance, School, Supernatural | Movie | 1 | 9.37 | 200630 | True |
9078 | 33607 | Kahei no Umi | Historical | Movie | 1 | 9.33 | 44 | True |
... | ... | ... | ... | ... | ... | ... | ... | ... |
12274 | 34492 | Nuki Doki! Tenshi to Akuma no Sakusei Battle -... | Hentai | OVA | Unknown | NaN | 392 | True |
12279 | 34491 | Sagurare Otome The Animation | Hentai | OVA | 1 | NaN | 79 | True |
12280 | 34312 | Saimin Class | Hentai | OVA | Unknown | NaN | 240 | True |
12282 | 34388 | Shikkoku no Shaga The Animation | Hentai | OVA | Unknown | NaN | 195 | True |
12285 | 34399 | Taimanin Asagi 3 | Demons, Hentai, Supernatural | OVA | Unknown | NaN | 485 | True |
12294 rows × 8 columns
Агрегирование¶
In [73]:
# Функция df.groupby и подсчёт количества записей
anime.groupby('type').count()
Out[73]:
anime_id | name | genre | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|
type | |||||||
Movie | 2348 | 2348 | 2306 | 2348 | 2297 | 2348 | 2348 |
Music | 488 | 488 | 488 | 488 | 488 | 488 | 488 |
ONA | 659 | 659 | 655 | 659 | 652 | 659 | 659 |
OVA | 3311 | 3311 | 3310 | 3311 | 3285 | 3311 | 3311 |
Special | 1676 | 1676 | 1674 | 1676 | 1671 | 1676 | 1676 |
TV | 3787 | 3787 | 3777 | 3787 | 3671 | 3787 | 3787 |
In [77]:
# Функция df.groupby и агрегирование столбцов различными способами
anime.groupby(["type"]).agg({
"rating": "mean",
"episodes": "count",
"name": "last"
}).reset_index()
Out[77]:
type | rating | episodes | name | |
---|---|---|---|---|
0 | Movie | 6.318058 | 2348 | Yasuji no Pornorama: Yacchimae!! |
1 | Music | 5.588996 | 488 | Yuu no Mahou |
2 | ONA | 5.643298 | 659 | Docchi mo Maid |
3 | OVA | 6.375221 | 3311 | Violence Gekiga Shin David no Hoshi: Inma Dens... |
4 | Special | 6.523501 | 1676 | Junjou Shoujo Et Cetera Specials |
5 | TV | 6.902299 | 3787 | Yuuki Yuuna wa Yuusha de Aru: Yuusha no Shou |
In [87]:
# Создание сводной таблицы
tmp_df = rating.copy()
tmp_df.sort_values('user_id', ascending=True, inplace=True)
tmp_df = tmp_df[tmp_df.user_id < 10]
tmp_df = tmp_df[tmp_df.anime_id < 30]
tmp_df = tmp_df[tmp_df.rating != -1]
pd.pivot_table(tmp_df, values='rating', index=['user_id'], columns=['anime_id'], aggfunc='sum', fill_value=0)
Out[87]:
anime_id | 6 | 15 | 17 | 18 | 20 | 22 | 24 |
---|---|---|---|---|---|---|---|
user_id | |||||||
3 | 0 | 0 | 0 | 0 | 8 | 0 | 0 |
5 | 8 | 6 | 6 | 6 | 6 | 5 | 1 |
7 | 0 | 0 | 0 | 0 | 0 | 7 | 0 |
Очистка данных¶
In [89]:
# Запись в ячейки, содержащие значение NaN, какого-то другого значения
pivot = pd.pivot_table(tmp_df, values='rating', index=['user_id'], columns=['anime_id'], aggfunc='sum')
pivot.fillna(0)
Out[89]:
anime_id | 6 | 15 | 17 | 18 | 20 | 22 | 24 |
---|---|---|---|---|---|---|---|
user_id | |||||||
3 | 0.0 | 0.0 | 0.0 | 0.0 | 8.0 | 0.0 | 0.0 |
5 | 8.0 | 6.0 | 6.0 | 6.0 | 6.0 | 5.0 | 1.0 |
7 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 7.0 | 0.0 |
Другие полезные возможности¶
In [90]:
# Отбор случайных образцов из набора данных
anime.sample(frac=0.25)
Out[90]:
anime_id | name | genre | type | episodes | rating | members | train set | |
---|---|---|---|---|---|---|---|---|
4133 | 29697 | Prince of Tennis: Message in a Bottle | Comedy, School, Shounen, Sports | Special | 1 | 6.80 | 813 | True |
6201 | 25967 | Backkom Sports | Comedy, Kids, Sports | TV | 52 | 6.21 | 131 | True |
4942 | 3154 | Gatchaman | Action, Adventure, Martial Arts, Sci-Fi, Shoun... | OVA | 3 | 6.59 | 1407 | True |
331 | 889 | Black Lagoon | Action, Seinen | TV | 12 | 8.17 | 332562 | True |
6112 | 6385 | Pokemon: Slowking no Ichinichi | Fantasy, Kids | Special | 1 | 6.25 | 6090 | True |
... | ... | ... | ... | ... | ... | ... | ... | ... |
2556 | 1215 | Mobile Suit Gundam Seed C.E.73: Stargazer | Mecha, Military, Sci-Fi, Space | ONA | 3 | 7.23 | 15203 | True |
7310 | 17048 | Choujin Locke Special | Action, Sci-Fi, Super Power | Special | 1 | 5.55 | 171 | True |
4893 | 9881 | Chou Supercar Gattiger | Action, Cars, Sci-Fi | TV | 25 | 6.60 | 199 | True |
11643 | 3538 | Dorei Kaigo | Hentai | OVA | 3 | 6.32 | 1959 | True |
2708 | 8206 | Hime Chen! Otogi Chikku Idol Lilpri | Magic, Shoujo | TV | 51 | 7.18 | 6118 | True |
3074 rows × 8 columns
In [91]:
# Перебор строк датафрейма
for idx,row in anime[:2].iterrows():
print(idx, row)
0 anime_id 32281 name Kimi no Na wa. genre Drama, Romance, School, Supernatural type Movie episodes 1 rating 9.37 members 200630 train set True Name: 0, dtype: object 1 anime_id 5114 name Fullmetal Alchemist: Brotherhood genre Action, Adventure, Drama, Fantasy, Magic, Mili... type TV episodes 64 rating 9.26 members 793665 train set True Name: 1, dtype: object