小编Ted*_*tel的帖子

“import pandas.io.data as web”给我一个错误,说没有pandas.io.data的模块名称

我只是在学习 python 并尝试将其用于股票分析。使用股票统计。

  1. 我通过 pip install stockstats 安装了 stockstats

  2. 进口熊猫进口熊猫

  3. 试图导入数据 import pandas.io.data 得到一个错误,说模块 pandas.io.data 不存在

python pandas

3
推荐指数
1
解决办法
1万
查看次数

android无法通过通知播放声音

我有以下代码来生成通知.通知出现但没有声音.我有以下代码来打开声音

notification.defaults |= Notification.DEFAULT_SOUND;
Run Code Online (Sandbox Code Playgroud)

代码清单

    NotificationManager manager = (NotificationManager)     gContext.getSystemService(Context.NOTIFICATION_SERVICE);

    Notification notification = new Notification(R.drawable.icon, "Teeth Alert", System.currentTimeMillis());
    PendingIntent contentIntent = PendingIntent.getActivity(gContext, 0, new Intent(gContext, NotifyMessage.class), 0);
    notification.setLatestEventInfo(gContext, "Your teeth appoitmernt:", "Date:", contentIntent);

    notification.defaults |= Notification.DEFAULT_SOUND;
    notification.defaults |= Notification.DEFAULT_LIGHTS;

    manager.notify(1,notification);
    cDates.SetAlarm(i);
Run Code Online (Sandbox Code Playgroud)

摊晒

audio notifications android

2
推荐指数
1
解决办法
4968
查看次数

有没有办法在java中调用父类中的函数?

我正在为我的机器人屏幕制作一个基类,它有一个列表控件.是否有一种方法可以调用基类的onListItemClick,表示已选择列表项.它可以调用父类中的函数??

码:

public class cHome extends cBase {
String[] MyItems={ 
        "Gate Directions",
        "Food & Beverges",
        "Shjops",
        "Banking",
        "Official Agencies",
        "Amenities & Services",
        "Restrooms"
        };

public void onCreate(Bundle icicle) {
    super.onCreate(icicle, MyItems);
//  Display=MyItems;
}
Run Code Online (Sandbox Code Playgroud)

码:

public class cBase extends ListActivity  {

String[] items={"CASUAL","DRESSES","CAREER","OUTWEAR","FOOTWEAR",
        "JEWELRY","ACCESSORIES"};
String[] Display;


public void onCreate(Bundle icicle, String[] items2) {
     Display=items2;
    super.onCreate(icicle);

    setContentView(R.layout.baselayout);
    setListAdapter(new IconicAdapter(this));
//  selection=(TextView)findViewById(R.id.selection);

// set values in header
     // set header
     TextView mFlight = (TextView)findViewById(R.id.idFlyerFlightNumber);
     mFlight.setText( cGlobals.mFlightNumber);     

     TextView mDes = (TextView)findViewById(R.id.idFlyerDestanation);
     mDes.setText( cGlobals.mDestanation); …
Run Code Online (Sandbox Code Playgroud)

java android

2
推荐指数
1
解决办法
2245
查看次数

如何将分叉项目的更改推送到原始项目?

我应该在 GitHub 上处理我客户的项目,更改将在他的存储库中。我试图遵循 fork 示例,但只能将更改转到我的帐户存储库?

在 GitHub 上的示例中,为了 fork 一个 repo,他们创建了一个远程调用upstream以指向原始项目。我可以从中获取更改

get fetch upstream
git merge upstream/master
Run Code Online (Sandbox Code Playgroud)

我能够通过以下方式将更改上传到我的回购中

git push –u  origin
Run Code Online (Sandbox Code Playgroud)

将我的更改复制到我的帐户。

我试过

git push –u upstream
Run Code Online (Sandbox Code Playgroud)

将我的更改推送到原始帐户。我收到以下错误

你不能推送到 git://github.com.octocat/SpoonKnife.git 使用 git@github.comoctocat/Spoon0-Knife.git

github git-push

2
推荐指数
1
解决办法
7942
查看次数

在LinearLayout上设置背景图像

有没有办法将背景图像添加到LinearLayout,所以按钮控件会被绘制到它上面?我试图看看有没有办法让位图作为LinearLayout的背景,但找不到办法.

android

2
推荐指数
1
解决办法
1万
查看次数

PHP:尝试找出如何从字符串中提取单词

我想创建一个字符串中所有单词的数组。我尝试谷歌,但只找到了str_split,它没有分开单词。

php

2
推荐指数
1
解决办法
8409
查看次数

touchesEnd没有被称为bit touchesBegin和touchesMoved被调用

我试图在ios中拖延.如果拖动移动距离很短,我会将拖动计为点击事件,方法是将开始x,y(来自touchesBegan)与touchesEnd中的x,y进行比较.似乎touchesEnd永远不会被调用.我给了一个断点来验证它并且断点从未消失.

code:
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

    NSUInteger touchCount = [touches count];
    NSUInteger tapCount = [[touches anyObject] tapCount];

    [ self UpdateDrag];

   }

- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    NSUInteger touchCount = [touches count];
    NSUInteger tapCount = [[touches anyObject] tapCount];

    }


- (void) touchesEnd:(NSSet *)touches withEvent:(UIEvent *)event {
   // this methes never gets called 
    NSUInteger touchCount = [touches count];
    NSUInteger tapCount = [[touches anyObject] tapCount];


    if (mDisplay==nil)
    {
        mDisplay = [[cDisplayYesOrNo_iPhone alloc]
                    initWithNibName:@"cDisplayYesOrNo_iPhone"
                    bundle:[NSBundle mainBundle]];
    }
    [ mDisplay …
Run Code Online (Sandbox Code Playgroud)

ios

2
推荐指数
1
解决办法
922
查看次数

getTextBounds返回错误的值

我试图得到一个文本字符串的宽度,我得到的值为8,这不会产生,因为这意味着每个字母都是1个像素.我有以下代码

Rect bounds = new Rect();
Paint paint = new Paint();
paint.setTextSize(12);
paint.getTextBounds("ABCDEFGHI", 0, 1, bounds);
width=bounds.right;      // this value is 8
Run Code Online (Sandbox Code Playgroud)

bounds的值为0,0,8,9

android

2
推荐指数
1
解决办法
1798
查看次数

实现接口时出错"无法降低继承方法的可见性"

我刚刚安装了ta4j技术分析库.它有一个名为的接口类TimeSeries.当我尝试实现第一个方法时TimeSeries

String getName()

我收到以下错误:

不能从TimeSeries implaments org.ta4jcore.Timeserios.GetName中降低心灵变形的可靠性

我的守则

import org.ta4j.core.*;



public class cMyChartVal implements TimeSeries {
       /**
     * @return the name of the series
     */
    String getName()
    {
        return "TestSet";
    }
    .....
    .....
}
Run Code Online (Sandbox Code Playgroud)

TimeSeries 接口类

package org.ta4j.core;

import java.io.Serializable;
import java.time.format.DateTimeFormatter;
import java.util.List;

/**
 * Sequence of {@link Bar bars} separated by a predefined period (e.g. 15 minutes, 1 day, etc.)
 * </p>
 * Notably, a {@link TimeSeries time series} can be:
 * <ul>
 *     <li>the …
Run Code Online (Sandbox Code Playgroud)

java inheritance interface subclass

2
推荐指数
1
解决办法
95
查看次数

为什么DefaultListModel.toArray()抛出ClassCastException?

我试图将DefaultListModel内容复制到数组中.以下行导致异常

testArray =(cGenIndicator [])indObjList.toArray();

void testCasting() {
    DefaultListModel<cGenIndicator> indObjList;
    indObjList = new DefaultListModel<cGenIndicator>();
    indObjList.addElement(new cGenIndicator(null, null));

    cGenIndicator[] testArray;
    try {
        // This line causses exception saying
        // [Ljava.lang.Object; cannot be cast to [LIndicator.cGenIndicator;
        testArray = (cGenIndicator[]) indObjList.toArray();
    } catch(Exception e) {
        test++;
    }

    test++;
}
Run Code Online (Sandbox Code Playgroud)

java arrays

2
推荐指数
1
解决办法
79
查看次数