在此处输入图片描述我有以下数据;请任何人帮我绘制它,我尝试过使用很多不同的命令,但没有一个给我一个完美的图形
year x y
2012 4 5
2014 7 9
2017 4 3
enter image description here 这张照片我需要照做
答案 0 :(得分:1)
根据您的评论,您可能正在寻找:
function Coordinate(a, b) {
this.x = a;
this.y = b;
}
Coordinate.prototype.multiply = function(n) {
return [this.x * n, this.y * n];
}
var makeCoordinate = new Coordinate(2,3);
console.log(makeCoordinate.multiply(2));
此处最大的点是library(tidyverse)
plot1 <- df %>% gather(key = measure, value = value, -year) %>%
ggplot(aes(x = year, y = value, color = measure))+
geom_point()+
geom_line()+
facet_wrap(~measure)
plot1
和gather
。我推荐以下两个链接:
答案 1 :(得分:0)
您需要将Year列类型转换为Date。 这是一个整洁的风格的解决方案
图书馆(tidyverse)
return (
<Paper className={classes.paperContainer}>
<Fragment>
<CommonToolbar reload={getAnns} />
<Typography variant="title">Announces</Typography>
<Table className={classes.table}>
<TableHead>
返回此
答案 2 :(得分:0)