我的目标是实现管道工 R HTTP 包的响应。
library(rjson)
formatResponse = function(matchId, home, draw, away) {
return(toJSON(???))
}
formatResponse('myId', 10, 20, 70);
我的目标是得到:
{
matchId: 'myId',
probabilities: {
home: 10,
draw: 20,
away: 70
}
}