使用Django进行数据挖掘问题

时间:2011-03-09 21:10:37

标签: database django data-mining points

我已经建立了一个Django项目,我在其中创建了随机点。这些随机点存储在数据库(sqlite)中(我可以通过管理员网站查看它们并更改值,因此可行)。 如果我写了一个脚本,我可以访问这些点并在一个图中打印它们。请参阅下面的代码。

但是,如果我想挖掘这些点来对它们进行排序,或者只绘制一个选择的数据集,我似乎遇到了麻烦。如果我读出它们不再连接的值,则排序x会混淆点集。 有没有办法在这种情况下将数据集排序到最小值X并对值进行排序并打印集合? (保持点的所有x,y,z和名称值都完好无损?)(见下面的答案,point in Point3D.objects.all().order_by('x'):

如果我现在想让x的值在x = 12和x = 30之间?我该如何添加这个额外的过滤器?

我的代码如下: models.py:

class Point3D(models.Model):
name = models.CharField(max_length = 10)
x = models.DecimalField(max_digits=5, decimal_places=2)
y = models.DecimalField(max_digits=5, decimal_places=2)
z = models.DecimalField(max_digits=5, decimal_places=2)

生成积分:

from books.models import Point3D

def points():
    for i in range(20):
        x = random.randint(0,100)
        y = random.randint(0,100)
        z = random.randint(0,100)

        p = Point3D(name = x , x = x ,y = y,z = z)
#        print 'test'
        p.save()
#    

points()
在views.py中

def ThreeGraphs(request):
    fig = Figure()
    fig.suptitle('2D-punten')
    ax = fig.add_subplot(111)

    for point in Point3D.objects.all():
        print point
        name = int(point.name)
        xs = int(point.x)
        ys = int(point.y)
        zs = int(point.z)
        print (xs, ys, zs)
        ax.plot(xs, ys, 'bo' )

    HttpResponse(mimetype="image/png")
    FigureCanvas(fig)
    fig.savefig('template/images/testing.png')
    picture = "testing.png"
    return render_to_response('Test.html', {'picture': picture}, RequestContext(request))

希望有人知道如何解决我的麻烦。

非常感谢! Tijl

1 个答案:

答案 0 :(得分:1)

你需要这样:

    for point in Point3D.objects.all().order_by('x'):

这将按“x”字段按排序顺序返回点。你可以说order_by(' - x')来反转排序顺序。