国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代做Project 1: 3D printer materials estimation

時間:2024-02-27  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Project 1: 3D printer materials estimation
Use the template material in the zip file project01.zip in Learn to write your report. Add all your function
definitions on the code.R file and write your report using report.Rmd. You must upload the following three
files as part of this assignment: code.R, report.html, report.Rmd. Specific instructions for these files are
in the README.md file.
The main text in your report should be a coherent presentation of theory and discussion of methods and
results, showing code for code chunks that perform computations and analysis but not code for code chunks
that generate functions, figures, or tables.
Use the echo=TRUE and echo=FALSE to control what code is visible.
The styler package addin is useful for restyling code for better and consistent readability. It works for both
.R and .Rmd files.
The Project01Hints file contains some useful tips, and the CWmarking file contains guidelines. Both are
attached in Learn as PDF files.
Submission should be done through Gradescope.
1 The data
A 3D printer uses rolls of filament that get heated and squeezed through a moving nozzle, gradually building
objects. The objects are first designed in a CAD program (Computer Aided Design) that also estimates how
much material will be required to print the object.
The data file "filament1.rda" contains information about one 3D-printed object per row. The columns are
• Index: an observation index
• Date: printing dates
• Material: the printing material, identified by its colour
• CAD_Weight: the object weight (in grams) that the CAD software calculated
• Actual_Weight: the actual weight of the object (in grams) after printing
Start by loading the data and plotting it. Comment on the variability of the data for different CAD_Weight
and Material.
2 Classical estimation
Consider two linear models, named A and B, for capturing the relationship between CAD_Weight and
Actual_Weight. We denote the CAD_weight for observation i by xi
, and the corresponding Actual_Weight
by yi
. The two models are defined by
• Model A: yi ∼ Normal[β1 + β2xi
, exp(β3 + β4xi)]
• Model B: yi ∼ Normal[β1 + β2xi
, exp(β3) + exp(β4)x
2
i
)]
The printer operator reasons that random fluctuations in the material properties (such as the density) and
room temperature should lead to a relative error instead of an additive error, leading them to model B as an
approximation of that. The basic physics assumption is that the error in the CAD software calculation of
the weight is proportional to the weight itself. Model A on the other hand is slightly more mathematically
convenient, but has no such motivation in physics.
1
Create a function neg_log_like() that takes arguments beta (model parameters), data (a data.frame
containing the required variables), and model (either A or B) and returns the negated log-likelihood for the
specified model.
Create a function filament1_estimate() that uses the R built in function optim() and neg_log_like()
to estimate the two models A and B using the filament1 data. As initial values for (β1, β2, β3, β4) in the
optimization use (-0.1, 1.07, -2, 0.05) for model A and (-0.15, 1.07, -13.5, -6.5) for model B. The inputs of the
function should be: a data.frame with the same variables as the filament1 data set (columns CAD_Weight
and Actual_Weight) and the model choice (either A or B). As the output, your function should return the
best set of parameters found and the estimate of the Hessian at the solution found.
First, use filament1_estimate() to estimate models A and B using the filament1 data:
• fit_A = filament1_estimate(filament1, “A”)
• fit_B = filament1_estimate(filament1, “B”)
Use the approximation method for large n and the outputs from filament1_estimate() to construct an
approximate **% confidence intervals for β1, β2, β3, and β4 in Models A and B. Print the result as a table
using the knitr::kable function. Compare the confidence intervals for the different parameters and their width.
Comment on the differences to interpret the model estimation results.
3 Bayesian estimation
Now consider a Bayesian model for describing the actual weight (yi) based on the CAD weight (xi) for
observation i:
yi ∼ Normal[β1 + β2xi
, β3 + β4x
2
i
)].
To ensure positivity of the variance, the parameterisation θ = [θ1, θ2, θ3, θ4] = [β1, β2, log(β3), log(β4)] is
introduced, and the printer operator assigns independent prior distributions as follows:
θ1 ∼ Normal(0, γ1),
θ2 ∼ Normal(1, γ2),
θ3 ∼ LogExp(γ3),
θ4 ∼ LogExp(γ4),
where LogExp(a) denotes the logarithm of an exponentially distributed random variable with rate parameter
a, as seen in Tutorial 4. The γ = (γ1, γ2, γ3, γ4) values are positive parameters.
3.1 Prior density
With the help of dnorm and the dlogexp function (see the code.R file for documentation), define and
document (in code.R) a function log_prior_density with arguments theta and params, where theta is the
θ parameter vector, and params is the vector of γ parameters. Your function should evaluate the logarithm
of the joint prior density p(θ) for the four θi parameters.
3.2 Observation likelihood
With the help of dnorm, define and document a function log_like, taking arguments theta, x, and y, that
evaluates the observation log-likelihood p(y|θ) for the model defined above.
3.3 Posterior density
Define and document a function log_posterior_density with arguments theta, x, y, and params, which
evaluates the logarithm of the posterior density p(θ|y), apart from some unevaluated normalisation constant.
2
3.4 Posterior mode
Define a function posterior_mode with arguments theta_start, x, y, and params, that uses optim together
with the log_posterior_density and filament data to find the mode µ of the log-posterior-density and
evaluates the Hessian at the mode as well as the inverse of the negated Hessian, S. This function should
return a list with elements mode (the posterior mode location), hessian (the Hessian of the log-density at
the mode), and S (the inverse of the negated Hessian at the mode). See the documentation for optim for how
to do maximisation instead of minimisation.
3.5 Gaussian approximation
Let all γi = 1, i = 1, 2, 3, 4, and use posterior_mode to evaluate the inverse of the negated Hessian at the
mode, in order to obtain a multivariate Normal approximation Normal(µ,S) to the posterior distribution for
θ. Use start values θ = 0.
3.6 Importance sampling function
The aim is to construct a **% Bayesian credible interval for each βj using importance sampling, similarly to
the method used in lab 4. There, a one dimensional Gaussian approximation of the posterior of a parameter
was used. Here, we will instead use a multivariate Normal approximation as the importance sampling
distribution. The functions rmvnorm and dmvnorm in the mvtnorm package can be used to sample and evaluate
densities.
Define and document a function do_importance taking arguments N (the number of samples to generate),
mu (the mean vector for the importance distribution), and S (the covariance matrix), and other additional
parameters that are needed by the function code.
The function should output a data.frame with five columns, beta1, beta2, beta3, beta4, log_weights,
containing the βi samples and normalised log-importance-weights, so that sum(exp(log_weights)) is 1. Use
the log_sum_exp function (see the code.R file for documentation) to compute the needed normalisation
information.
3.7 Importance sampling
Use your defined functions to compute an importance sample of size N = 10000. With the help of
the stat_ewcdf function defined in code.R, plot the empirical weighted CDFs together with the unweighted CDFs for each parameter and discuss the results. To achieve a simpler ggplot code, you may find
pivot_longer(???, starts_with("beta")) and facet_wrap(vars(name)) useful.
Construct **% credible intervals for each of the four model parameters based on the importance sample.
In addition to wquantile and pivot_longer, the methods group_by and summarise are helpful. You may
wish to define a function make_CI taking arguments x, weights, and prob (to control the intended coverage
probability), generating a **row, 2-column data.frame to help structure the code.
Discuss the results both from the sampling method point of view and the 3D printer application point of
view (this may also involve, e.g., plotting prediction intervals based on point estimates of the parameters,
and plotting the importance log-weights to explain how they depend on the sampled β-values).
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:self-signed certificate.代做、代寫Java/c++設計編程
  • 下一篇:代做CSE 6242、Java/c++編程設計代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产日韩欧美在线视频观看| 久久人人爽人人爽爽久久| 欧美一级淫片播放口| 插插插亚洲综合网| 国产成人短视频| 国产视频一区二区三区在线播放 | 热门国产精品亚洲第一区在线| 亚洲在线视频观看| 欧美激情xxxxx| 国产精品欧美日韩| 日韩亚洲精品视频| 国产成人亚洲综合91精品| 91免费福利视频| 国产欧美精品久久久| 国产又爽又黄的激情精品视频| 欧美图片激情小说| 欧美二区在线视频| 欧美一区视频在线| 久久久久久久久久久网站| 国产国产精品人在线视| 久久久一本二本三本| 国产极品精品在线观看| 久久精精品视频| 日韩中文字幕不卡视频| 久久久国产成人精品| 国产精品十八以下禁看| 久久伊人色综合| 一区二区三区在线视频111| 国产精品嫩草在线观看| 久热精品视频在线免费观看| 精品国产一二三四区| 中文字幕一区二区三区乱码| 亚洲午夜精品久久久久久人妖| 综合色婷婷一区二区亚洲欧美国产| 精品婷婷色一区二区三区蜜桃| 成人中文字幕av| y97精品国产97久久久久久| 一区二区三区久久网| 欧美高清性xxxxhd| 91精品久久久久久久久久久久久 | 亚洲图片欧洲图片日韩av| 九九热精品在线| 欧美极品欧美精品欧美视频| 青青a在线精品免费观看| 99热在线播放| 久久中文字幕在线视频| 日韩中文字幕一区| 黄色免费高清视频| 久久99精品久久久久久久青青日本 | 久草在在线视频| 日本高清视频免费在线观看| 国产精品99久久免费黑人人妻| 一区二区精品免费视频| 国产乱码精品一区二区三区卡| 国产精品免费区二区三区观看| 日韩人妻精品一区二区三区 | 欧美一区二区影视| 韩国欧美亚洲国产| 91久久国产婷婷一区二区| 九九热只有这里有精品| 久久亚洲电影天堂| 日日噜噜噜噜夜夜爽亚洲精品| 黄色一级免费大片| 白白操在线视频| 国产精品乱码视频| 涩涩日韩在线| 国产欧美在线视频| 国产高清视频一区三区| 欧美激情在线视频二区| 欧洲精品视频在线| 97久久精品人人澡人人爽缅北| 国产成人鲁鲁免费视频a| 欧美猛少妇色xxxxx| 日韩视频在线视频| 91精品中文在线| 久久99久国产精品黄毛片入口| 日本精品免费视频| 国产精品69久久| 午夜精品一区二区在线观看| 国产精品亚洲一区| 国产aⅴ精品一区二区三区黄| 精品欧美日韩| 日韩一区av在线| 欧美一级片免费播放| 91精品久久久久久久久久久| 一区视频二区视频| 国产精品夜色7777狼人| 国产精品入口芒果| 日本精品福利视频| 久久久久久网址| 欧美日本亚洲| 久久精品视频99| 国产一区欧美二区三区| 欧美不卡视频一区发布| 国产午夜福利视频在线观看| 久久这里只有精品视频首页| 国产一区二区三区精彩视频| 欧美大胆在线视频| www.欧美黄色| 日韩中文字幕二区| 国产高清自拍99| 欧美在线影院在线视频| 久久久精品日本| 蜜桃麻豆91| 亚洲欧洲精品在线| 国产成人亚洲综合91| 欧美在线一级va免费观看| 国产精品国语对白| 国产高清免费在线| 国产综合香蕉五月婷在线| 欧美激情视频在线免费观看 欧美视频免费一 | 国产又黄又猛视频| 亚洲精品人成| 国产成人av网址| 国产欧美精品久久久| 日本精品久久久久久久久久| 久久夜精品va视频免费观看| www.xxxx精品| 国产精华一区| 国产免费一区二区三区四在线播放| 亚洲v日韩v欧美v综合| 国产精品久久久久久久美男| 国产精品久久久久久久久粉嫩av| 日韩视频一区在线| 阿v天堂2017| 久热这里只精品99re8久| 久久久久久久久久婷婷| 日韩视频一区在线| 国产精品激情自拍| 亚洲综合中文字幕在线| 国产精品电影在线观看| 久久观看最新视频| 久久免费一级片| www.精品av.com| 久久夜色精品国产欧美乱| 亚洲 日韩 国产第一区| 狠狠色综合一区二区| 国产精品88a∨| 国产精品成人国产乱一区| 日韩资源av在线| 国产综合视频在线观看| 国产成人在线一区| 在线观看成人av| 欧美日韩福利在线| 91久久久久久久| 久久艳片www.17c.com | 日韩欧美视频网站| 91精品久久久久久久久青青 | 欧美日韩一区二区三区在线视频| 国产伦精品一区二区三区四区免费 | 国产精品一区在线播放| 国产精品青草久久久久福利99| 午夜欧美一区二区三区免费观看| 韩日精品中文字幕| 久久久精品在线观看| 日本伊人精品一区二区三区介绍| 国产女人水真多18毛片18精品| 国产精品免费看一区二区三区 | 欧美综合在线第二页| 国产精品18久久久久久首页狼| 亚洲在线免费视频| 国产精品一区二区三区在线播放 | 97国产在线观看| 亚洲精品日韩精品| 亚洲影院在线看| 91九色视频在线| 99热一区二区三区| 日韩中文不卡| 精品国产成人av在线免| 国产欧美一区二区三区久久 | 国产综合精品一区二区三区| 欧美成人精品三级在线观看| caopor在线视频| 日韩亚洲欧美一区二区| 精品国产电影| 久久久久久国产精品一区| 免费看黄色a级片| 痴汉一区二区三区| 日韩在线视频网站| 国产精品亚洲不卡a| 日本精品一区二区三区在线 | 国产精品二区二区三区| 91.com在线| 国产狼人综合免费视频| 黄色小视频大全| 国产精选一区二区| 91精品国产自产在线观看永久| 色中色综合成人| 91美女福利视频高清| 国产va免费精品高清在线观看| 国产精品区二区三区日本| 日韩精品福利视频| 精品免费国产| 国产精品视频色| 精品国产一区二区三区久久狼黑人 | 国产精品永久入口久久久| 日韩中文字幕视频| 国产成人黄色片| 日韩在线一区二区三区免费视频| 久久免费看av|