How do I resolve the following error while opening a “.rattle” file? “Error in .RGtkCall(”S_gtk_file_chooser_dialog_new_with_backendRStudio can't find my library on startupRunning Rattle on Mac OS X 10.9 (Mavericks)Installation of RODBC/ROracle packages on OS X MavericksError on R studio startuprJava load error in RStudio/R after “upgrading” to OSX YosemiteMultiple users of RStudio on virtual machine gives fatal errorrattle installation error: Invalid root element:Install RGtk2 on macOS Sierra 10.12.6 and R Version 3.4.1Rstudio: error uploading RMD HTML file to RpubsThe rattle Annotation option doesn't seem to work
How come there are so many candidates for the 2020 Democratic party presidential nomination?
"The cow" OR "a cow" OR "cows" in this context
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
Are there physical dangers to preparing a prepared piano?
Check if a string is entirely made of the same substring
Critique of timeline aesthetic
Two field separators (colon and space) in awk
What's the polite way to say "I need to urinate"?
How would 10 generations of living underground change the human body?
How to have a sharp product image?
Map of water taps to fill bottles
What makes accurate emulation of old systems a difficult task?
What happens in the secondary winding if there's no spark plug connected?
How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?
can anyone help me with this awful query plan?
Could the terminal length of components like resistors be reduced?
What are the steps to solving this definite integral?
How much cash can I safely carry into the USA and avoid civil forfeiture?
How to write a column outside the braces in a matrix?
Did the BCPL programming language support floats?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
Minor Revision with suggestion of an alternative proof by reviewer
Is there a way to generate a list of distinct numbers such that no two subsets ever have an equal sum?
Overlay of two functions leaves gaps
How do I resolve the following error while opening a “.rattle” file? “Error in .RGtkCall(”S_gtk_file_chooser_dialog_new_with_backend
RStudio can't find my library on startupRunning Rattle on Mac OS X 10.9 (Mavericks)Installation of RODBC/ROracle packages on OS X MavericksError on R studio startuprJava load error in RStudio/R after “upgrading” to OSX YosemiteMultiple users of RStudio on virtual machine gives fatal errorrattle installation error: Invalid root element:Install RGtk2 on macOS Sierra 10.12.6 and R Version 3.4.1Rstudio: error uploading RMD HTML file to RpubsThe rattle Annotation option doesn't seem to work
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have R Version 3.5.2, RStudio Version 1.1.463, and Rattle Version 5.2.5. on 2 Windows 10 machines.
After launching Rattle successfully I click on the "Open" button to attempt to open a .rattle file. After clicking the open button I get the following message in the RStudio Console
"Error in .RGtkCall("S_gtk_file_chooser_dialog_new_with_backend", title, :
Could not parse enum value load"
I have re-installed R, R Studio, RGtk2, GTK+ on both machines and get the same error on both machines.
r windows-10 rstudio rattle rgtk2
add a comment |
I have R Version 3.5.2, RStudio Version 1.1.463, and Rattle Version 5.2.5. on 2 Windows 10 machines.
After launching Rattle successfully I click on the "Open" button to attempt to open a .rattle file. After clicking the open button I get the following message in the RStudio Console
"Error in .RGtkCall("S_gtk_file_chooser_dialog_new_with_backend", title, :
Could not parse enum value load"
I have re-installed R, R Studio, RGtk2, GTK+ on both machines and get the same error on both machines.
r windows-10 rstudio rattle rgtk2
add a comment |
I have R Version 3.5.2, RStudio Version 1.1.463, and Rattle Version 5.2.5. on 2 Windows 10 machines.
After launching Rattle successfully I click on the "Open" button to attempt to open a .rattle file. After clicking the open button I get the following message in the RStudio Console
"Error in .RGtkCall("S_gtk_file_chooser_dialog_new_with_backend", title, :
Could not parse enum value load"
I have re-installed R, R Studio, RGtk2, GTK+ on both machines and get the same error on both machines.
r windows-10 rstudio rattle rgtk2
I have R Version 3.5.2, RStudio Version 1.1.463, and Rattle Version 5.2.5. on 2 Windows 10 machines.
After launching Rattle successfully I click on the "Open" button to attempt to open a .rattle file. After clicking the open button I get the following message in the RStudio Console
"Error in .RGtkCall("S_gtk_file_chooser_dialog_new_with_backend", title, :
Could not parse enum value load"
I have re-installed R, R Studio, RGtk2, GTK+ on both machines and get the same error on both machines.
r windows-10 rstudio rattle rgtk2
r windows-10 rstudio rattle rgtk2
asked Mar 22 at 17:29
Dave ArnoldDave Arnold
62
62
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Check which version of RGtk2 is loaded in R if its version 2.20.36 try reverting back to version 2.20.35 that solved my issue.
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
add a comment |
A change to the RGtk2 package from 2.20.35 to 2.20.36 has resulted in a latent rattle bug being found. For now revert to the previous version of RGtk2.
For Linux:
> install.packages("https://cran.r-project.org/src/contrib/Archive/RGtk2/RGtk2_2.20.35.tar.gz", repos=NULL)
For Windows
> install.packages("https://cran.microsoft.com/snapshot/2019-02-01/bin/windows/contrib/3.6/RGtk2_2.20.35.zip", repos=NULL)
I hope to have a fix for rattle soon.
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55304938%2fhow-do-i-resolve-the-following-error-while-opening-a-rattle-file-error-in%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check which version of RGtk2 is loaded in R if its version 2.20.36 try reverting back to version 2.20.35 that solved my issue.
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
add a comment |
Check which version of RGtk2 is loaded in R if its version 2.20.36 try reverting back to version 2.20.35 that solved my issue.
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
add a comment |
Check which version of RGtk2 is loaded in R if its version 2.20.36 try reverting back to version 2.20.35 that solved my issue.
Check which version of RGtk2 is loaded in R if its version 2.20.36 try reverting back to version 2.20.35 that solved my issue.
answered Mar 24 at 1:14
JeffJeff
377
377
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
add a comment |
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
To confirm that there was a change to 2.20.36 that has broken rattle. Currently working on it but a workaround for now is to install 2.20.35.
– Graham Williams
Mar 24 at 10:50
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
How? Error: cannot open URL 'cran.r-project.org/bin/windows/contrib/3.3/RGtk2_2.20.35.zip': HTTP status was '404 Not Found'
– Eric
Mar 28 at 16:57
add a comment |
A change to the RGtk2 package from 2.20.35 to 2.20.36 has resulted in a latent rattle bug being found. For now revert to the previous version of RGtk2.
For Linux:
> install.packages("https://cran.r-project.org/src/contrib/Archive/RGtk2/RGtk2_2.20.35.tar.gz", repos=NULL)
For Windows
> install.packages("https://cran.microsoft.com/snapshot/2019-02-01/bin/windows/contrib/3.6/RGtk2_2.20.35.zip", repos=NULL)
I hope to have a fix for rattle soon.
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
add a comment |
A change to the RGtk2 package from 2.20.35 to 2.20.36 has resulted in a latent rattle bug being found. For now revert to the previous version of RGtk2.
For Linux:
> install.packages("https://cran.r-project.org/src/contrib/Archive/RGtk2/RGtk2_2.20.35.tar.gz", repos=NULL)
For Windows
> install.packages("https://cran.microsoft.com/snapshot/2019-02-01/bin/windows/contrib/3.6/RGtk2_2.20.35.zip", repos=NULL)
I hope to have a fix for rattle soon.
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
add a comment |
A change to the RGtk2 package from 2.20.35 to 2.20.36 has resulted in a latent rattle bug being found. For now revert to the previous version of RGtk2.
For Linux:
> install.packages("https://cran.r-project.org/src/contrib/Archive/RGtk2/RGtk2_2.20.35.tar.gz", repos=NULL)
For Windows
> install.packages("https://cran.microsoft.com/snapshot/2019-02-01/bin/windows/contrib/3.6/RGtk2_2.20.35.zip", repos=NULL)
I hope to have a fix for rattle soon.
A change to the RGtk2 package from 2.20.35 to 2.20.36 has resulted in a latent rattle bug being found. For now revert to the previous version of RGtk2.
For Linux:
> install.packages("https://cran.r-project.org/src/contrib/Archive/RGtk2/RGtk2_2.20.35.tar.gz", repos=NULL)
For Windows
> install.packages("https://cran.microsoft.com/snapshot/2019-02-01/bin/windows/contrib/3.6/RGtk2_2.20.35.zip", repos=NULL)
I hope to have a fix for rattle soon.
edited Mar 30 at 3:41
answered Mar 24 at 11:00
Graham WilliamsGraham Williams
28316
28316
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
add a comment |
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
I can't find RGtk2_2.20.35.zip anywhere. ..contrib/3.3-3.6 have been replaced with ...36.
– Eric
Mar 27 at 20:13
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
Thanks Eric. I've updated the link to point to RGtk2_2.20.35.zip on MRAN.
– Graham Williams
Mar 30 at 3:43
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55304938%2fhow-do-i-resolve-the-following-error-while-opening-a-rattle-file-error-in%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown