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

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代做Project 1: 3D printer materials estimation

時(shí)間:2024-02-27  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



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).
請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:self-signed certificate.代做、代寫Java/c++設(shè)計(jì)編程
  • 下一篇:代做CSE 6242、Java/c++編程設(shè)計(jì)代寫
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 寵物飼養(yǎng) 十大衛(wèi)浴品牌排行 suno 豆包網(wǎng)頁版入口 wps 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美一级片中文字幕| 色一情一乱一伦一区二区三区丨| 欧美久久精品一级黑人c片 | 久久欧美在线电影| 欧美激情视频在线| 国产又大又硬又粗| 国产精品精品视频一区二区三区 | 国产精品欧美一区二区三区奶水| 色之综合天天综合色天天棕色| 国产精品永久入口久久久| 久久夜色精品国产欧美乱| 激情综合在线观看| 国产精品视频1区| 黄页网站在线观看视频| 国产精品久久久久久久天堂第1集| 欧美日韩高清免费| 国产精品视频区| 国内精品一区二区三区四区| 国产精品福利片| 国产又粗又猛又爽又黄的网站| 国产精品免费一区二区| 国内精品伊人久久| 久久综合88中文色鬼| 麻豆av一区二区三区| 国产精品九九九| 国产一区二区三区高清| 欧美精品video| dy888夜精品国产专区| 亚洲精品一区二区三区av| 2019日本中文字幕| 日韩欧美一区二区三区久久婷婷| 久久人人爽人人爽人人片av高请| 亚洲a∨一区二区三区| 国产福利一区二区三区在线观看| 熟女少妇在线视频播放| 国产高清在线一区| 欧美怡春院一区二区三区| 久久精品亚洲94久久精品| 黄色影视在线观看| 欧美激情综合色| 69av在线视频| 青青视频免费在线| 国产精品第100页| 99久热re在线精品视频| 日本视频一区二区在线观看| 久久精品亚洲国产| 国产女同一区二区| 午夜精品理论片| 久久久精品国产一区二区三区| 日本不卡一区二区三区四区| 久久精品日韩| 激情一区二区三区| 久久99亚洲热视| 久久综合久久网| 欧美日韩无遮挡| 欧美激情一区二区三区久久久| 久久综合久久综合这里只有精品| 欧美在线视频观看免费网站| 国产99午夜精品一区二区三区| 91精品国产综合久久香蕉最新版| 日本精品视频网站| 国产精品高潮视频| 久久欧美在线电影| 男女超爽视频免费播放| 在线视频欧美一区| 久久综合伊人77777麻豆| 欧美视频在线观看视频| 一区二区三区三区在线| 久久久久久一区二区三区| 国产欧美日韩最新| 日本国产高清不卡| 久久国产精品视频| 久久99蜜桃综合影院免费观看| 精品无码一区二区三区爱欲| 亚洲aaa激情| 国产精品男女猛烈高潮激情| 91精品国产高清久久久久久91裸体| 欧美最猛性xxxxx亚洲精品| 欧美日韩国产成人在线| 久久久久久久久久久久久9999| 黄色www网站| 亚洲成人第一| 精品自拍视频在线观看| 色婷婷久久一区二区| 国产精品自产拍在线观| 欧洲熟妇精品视频| 岳毛多又紧做起爽| 久久久国产一区| 久久久久福利视频| 国产精品自拍首页| 男人的天堂狠狠干| 日本欧美视频在线观看| 在线不卡视频一区二区 | 伊甸园精品99久久久久久| 久久免费视频1| 国产欧美日韩中文字幕在线| 欧美自拍大量在线观看| 亚洲精品中文字幕在线| 欧美精品在线免费观看| www.欧美精品| 国产精品av免费在线观看| 免费拍拍拍网站| 欧美亚洲色图视频| 日本午夜精品一区二区三区| 亚洲巨乳在线观看| 欧美激情亚洲自拍| 欧美精品在线网站| 久久人人爽人人爽爽久久| 久久精品欧美| www.日本在线视频| 国产伦精品一区二区三区高清 | **亚洲第一综合导航网站 | 日韩精品不卡| 午夜精品久久久久久久男人的天堂 | 亚洲影视九九影院在线观看| 国产精品久久色| 色999日韩欧美国产| 国产传媒一区二区| 国产激情一区二区三区在线观看| 国产日韩二区| 国产又大又长又粗又黄| 黄色a级片免费看| 欧美激情亚洲天堂| 欧美人成在线观看| 欧美日韩国产三区| 欧美精品色婷婷五月综合| 欧美自拍视频在线观看| 欧美尤物一区| 欧美日韩一区在线播放| 欧美亚洲国产成人精品| 欧美综合在线观看视频| 欧美一性一乱一交一视频| 欧美一级二级三级九九九| 加勒比成人在线| 欧美丰满熟妇xxxxx| 免费拍拍拍网站| 国产男女无遮挡| av一本久道久久波多野结衣| 97色伦亚洲国产| 91精品免费| 久久久久久艹| 久久99精品久久久久子伦| 久久久精品一区| 国产精品麻豆va在线播放| 欧美乱妇40p| 亚洲综合在线做性| 天堂а√在线中文在线| 日本免费一区二区三区视频观看| 日本高清不卡一区二区三| 午夜精品一区二区三区在线视| 日本一区二区在线视频观看| 青青草成人网| 精品日本一区二区| 国产日韩欧美黄色| 91国产在线免费观看| 国产传媒欧美日韩| 久久久精品电影| 欧美人与性动交a欧美精品| 亚洲国产欧美日韩| 欧美乱偷一区二区三区在线| 国产欧亚日韩视频| 国产精品9999久久久久仙踪林| 国产ts人妖一区二区三区| 久久天堂av综合合色| 国产精品裸体一区二区三区| 欧美精品久久久久a| 日韩a∨精品日韩在线观看| 欧美xxxx黑人又粗又长精品| 国产欧美日韩丝袜精品一区| 91精品国产91久久| 久久综合伊人77777尤物| 中文字幕日韩精品久久| 日韩精品一区二区三区久久| 国产日韩在线看片| 久久精品国产99精品国产亚洲性色 | 久久人人97超碰精品888| y97精品国产97久久久久久| 欧美激情乱人伦一区| 日本福利视频网站| 国产伦精品一区二区三区四区视频_| 99免费在线观看视频| 久久精品视频在线观看| 亚洲精品中字| 国产在线视频不卡| 九色在线视频观看| 久久久久久国产精品美女| 视频一区二区在线| 精品一区日韩成人| 国产成人亚洲综合青青| 色综合视频网站| 欧日韩在线观看| 99精品一级欧美片免费播放 | 国产日韩二区| 日韩在线视频线视频免费网站| 欧美另类第一页| 日韩精品一区二区三区电影| 99精品视频播放| 欧美成人全部免费| 欧美日韩性生活片| 91久久久久久久久|