tolga.i.uzuner at jpmorgan.com
2008-Oct-01 12:40 UTC
[R] cryptic error message: "Error in embed(y, lag) : wrong embedding dimension"
Dear R Users, I've been hit with a cryptic error message: "Error in embed(y, lag) : wrong embedding dimension" My configuration is: - R 2.7.2 - Windows XP Sp2 Google returns nothing for this. Could someone suggest what this might mean ? Thanks in advance, Tolga Generally, this communication is for informational purposes only and it is not intended as an offer or solicitation for the purchase or sale of any financial instrument or as an official confirmation of any transaction. In the event you are receiving the offering materials attached below related to your interest in hedge funds or private equity, this communication may be intended as an offer or solicitation for the purchase or sale of such fund(s). All market prices, data and other information are not warranted as to completeness or accuracy and are subject to change without notice. Any comments or statements made herein do not necessarily reflect those of JPMorgan Chase & Co., its subsidiaries and affiliates. This transmission may contain information that is privileged, confidential, legally privileged, and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein (including any reliance thereon) is STRICTLY PROHIBITED. Although this transmission and any attachments are believed to be free of any virus or other defect that might affect any computer system into which it is received and opened, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by JPMorgan Chase & Co., its subsidiaries and affiliates, as applicable, for any loss or damage arising in any way from its use. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format. Thank you. Please refer to http://www.jpmorgan.com/pages/disclosures for disclosures relating to UK legal entities. [[alternative HTML version deleted]]
Ben Bolker
2008-Oct-01 13:30 UTC
[R] cryptic error message: "Error in embed(y, lag) : wrong embedding dimension"
<tolga.i.uzuner <at> jpmorgan.com> writes:> > Dear R Users, > > I've been hit with a cryptic error message: > > "Error in embed(y, lag) : wrong embedding dimension" > > My configuration is: > - R 2.7.2 > - Windows XP Sp2 > > Google returns nothing for this. Could someone suggest what this might > mean ? >We need more information. What are you trying to do, what functions are you using, what packages? What are the results of sessionInfo() and traceback() [run immediately after you get the error]? I'm guessing you're trying to do something with the embedding dimension of a time series, and that you might (?) be using package fractal, or GammaTest, or fNonlinear, or tseriesChaos ? (These came up in an RSiteSearch for "embedding dimension") Ben Bolker
kingsly
2012-Jan-27 11:37 UTC
[R] cryptic error message: "Error in embed(y, lag) : wrong embedding dimension"
According to the source code of embed function, it will stop work if dimention is <1 or >n . Part of the embed source code is mention below for your reference. if ((dimension < 1) | (dimension > n)) stop ("wrong embedding dimension") I have also give the link of the source file of embed funciton "svn.r-project.org/R/trunk/src/library/stats/R/embed.R " -- View this message in context: http://r.789695.n4.nabble.com/cryptic-error-message-Error-in-embed-y-lag-wrong-embedding-dimension-tp868230p4333224.html Sent from the R help mailing list archive at Nabble.com.
Uwe Ligges
2012-Jan-28 19:18 UTC
[R] cryptic error message: "Error in embed(y, lag) : wrong embedding dimension"
Is there a reason you answer a 3.5 years old message? Uwe Ligges On 27.01.2012 12:37, kingsly wrote:> According to the source code of embed function, it will stop work if > dimention is<1 or>n . Part of the embed source code is mention below for > your reference. > if ((dimension< 1) | (dimension> n)) > stop ("wrong embedding dimension") > I have also give the link of the source file of embed funciton > "svn.r-project.org/R/trunk/src/library/stats/R/embed.R > " > > -- > View this message in context: http://r.789695.n4.nabble.com/cryptic-error-message-Error-in-embed-y-lag-wrong-embedding-dimension-tp868230p4333224.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.