我在$('.carousel-btn-left').click(function(){
var ParentRow = $(this).parent();
var thisRowIndex;
var AllRows = ParentRow.parent().siblings();
for ( var k = 0; k < AllRows.length; ++k )
{
if ( AllRows[k] == this )
{
thisRowIndex = k;
break;
}
}
// ...
});
上有一个点击事件,它需要找到点击的In [17]:
df = pd.DataFrame({'Lnc':np.arange(5)})
df['LogLnc'] = np.log2(df['Lnc'])
df
Out[17]:
Lnc LogLnc
0 0 -inf
1 1 0.000000
2 2 1.000000
3 3 1.584963
4 4 2.000000
,无论是第1,第2等等。
我是如何开始的
exec {
commandLine "tty"
}
因为我不知道更好的方式(或者甚至知道这是否正确)。我该怎么做?