加快数据框内的滚动计算

时间:2017-03-08 19:57:06

标签: python dataframe

我有一个数据框,其中索引是一个日期时间,并且它已经过排序。基本上我想创建一个列rolling_time1,rolling_time2,...等,其中值是timex内行之后的count数。我创建了以下内容,但速度非常慢。有什么方法可以加快速度吗?

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
    [mapView deselectAnnotation:view.annotation animated:YES];

    DetailsViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"DetailsPopover"];
    controller.annotation = view.annotation;
    self.popover = [[UIPopoverController alloc] initWithContentViewController:controller];
    self.popover.delegate = self;
    [self.popover presentPopoverFromRect:view.frame
                                  inView:view.superview
                permittedArrowDirections:UIPopoverArrowDirectionAny
                                animated:YES];
}

0 个答案:

没有答案