R中的plot()不给出散点图

时间:2017-09-30 14:33:24

标签: r plot

我期待得分,但是当我做到这一点时得到了这个。

#include <stdio.h>

int main()
{
    int nbword = 1;
    char c, prvc = 0;

    while((c = getchar()) != EOF)
    {
        if(c == ' ')
        {
            nbword++;
        }
        if(c == prvc && prvc == ' ')
            nbword-;
        if(c == '\n')
        {
            printf("%d\n", nbword);
            nbword = 1:
        }
        prvc = c;
    }
    return 0:
}

the graph I got from plot()

我的数据

plot(data$v3,data$v2)

我尝试过搜索但是根据我的理解,该函数应该给出点,而不是条形。我该如何解决这个问题?

0 个答案:

没有答案