mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
Add new intention and a corresponding quick fix for the usage pd.Series.values property from pandas library. ^DS-4878 Fixed Merge-request: IJ-MR-106089 Merged-by: Natalia Murycheva <natalia.murycheva@jetbrains.com> GitOrigin-RevId: 0c8dc40b09ee2d95ecd8ded532f31f5ef4a7740f
5 lines
204 B
Python
5 lines
204 B
Python
import pandas as pd
|
|
# DataFrame columns case
|
|
df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6], "c": [7, 8, 9]})
|
|
|
|
<warning descr="Method Series.to_list() is recommended">list<caret>(df.b.values)</warning> |