从Pandas中的DataFrame中提取某些行的最短方法

时间:2018-11-24 11:55:57

标签: pandas dataframe

我需要从数据集中提取某些行。我需要的行的索引是从另一个变量的另一列中检测到的。我的数据框类似于(具有更多列)

<LinearLayout
    android:id="@+id/chartContent"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <com.github.mikephil.charting.charts.PieChart
        android:id="@+id/pieChart"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="4"/>

    <android.support.v7.widget.AppCompatSeekBar
        android:id="@+id/seekBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"/>
</LinearLayout>

我的另一列是另一个变量,就像

1     data1
2     data2
3     data3
4     data4
5     data5

我放入了一个布尔值,此外,我需要检查满足条件的列中的值,我需要那些索引,然后我要从数据集中提取包含那些索引的行。

0 个答案:

没有答案