Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
b0405a09a27327d6e3545e5f2dda1080
mooc-rr
Commits
45c43b4e
Commit
45c43b4e
authored
Apr 06, 2022
by
Melanie Debelgarric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modif code courbe predict
parent
8ed896f9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src_R_challenger.Rmd
module4/src_R_challenger.Rmd
+3
-1
No files found.
module4/src_R_challenger.Rmd
View file @
45c43b4e
...
...
@@ -61,10 +61,12 @@ estimate the failure probability for such temperature using our model.:
# shuttle=shuttle[shuttle$r!=0,]
tempv = seq(from=30, to=90, by = .5)
rmv <- predict(logistic_reg,list(Temperature=tempv),type="response")
plot(tempv,rmv,type="l",ylim=c(0,1))
plot(tempv,rmv,type="l",ylim=c(0,1))
+
points(data=data, Malfunction/Count ~ Temperature)
```
*Modification de la fonction (ajout d'un "+"), sinon bug pour ajouter les points sur la courbe predict.*
This figure is very similar to the Figure 4 of Dalal et al. **I have managed to replicate the Figure 4 of the Dalal *et al.* article.**
# Confidence on the prediction
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment