Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
8k views

NLS_LANG setting for JDBC thin driver?

I am using the thin Oracle JDBC driver ver 10.2.0 (ojdbc14.jar). I would like to configure its NLS_LANG setting manually. Is there a way? Currently it fetches this setting from the VM variable ...
4
votes
2answers
133 views

R script - NLS not working

I have 5 (x,y) data points and I'm trying to find a best fit solution consisting of two lines which intersect at a point (x0,y0), and which follow these equations: y1 = (m1)(x1 - x0) + y0 y2 = ...
4
votes
2answers
66 views

Error using deltaMethod with nls object in R

I'm trying to use the deltaMethod in the car library, but I'm getting an odd error. library(car) x=c(1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 9, ...
4
votes
1answer
6k views

Curve fitting in R using nls

I'm trying to fit a curve over (the tail of) the following data: [1] 1 1 1 1 1 1 2 1 2 2 3 2 1 1 4 3 2 11 6 2 16 7 17 36 [25] 27 39 41 33 42 66 92 ...
4
votes
1answer
3k views

Dojo custom build with NLS / localisation

I have a problem implementing a cross domain custom build in Dojo. The situation is as follows: i have a pretty large application, with a good number of localisation bundles, so basicly the directory ...
3
votes
1answer
1k views

Dojo Build with NLS - requireLocalization(..) fail?

My question, while at first somewhat similar to this one, seems to be a more basic question - and might be signaling a bug in the build system. I've created a custom build for my dojo application. I ...
2
votes
1answer
83 views

R script question - is.na telling me the condition has length > 1

In my r script, I do perform an nls to get a fit value: fit <- nls(...) and then after that, I test if the nls succeeded by doing this: if(is.na(fit)) { print("succeeded") } but I get ...
2
votes
1answer
67 views

Dealing with 0 error in nls - R script

Is there any way to allow my nls to have 0 residual error when it makes a non linear fit? I have cases in my data where the fit made should have 0 error, but nls always fails and spits out an error. ...
2
votes
1answer
124 views

R script - nls function

Can anyone give me a good explanation for what the parameter "algorithm" does in the nls function in R? Also, how does the formula work? I know it uses a tilda, but I can't really find a ...
2
votes
1answer
100 views

R script - least squares solution to the following [closed]

Possible Duplicate: Finding where two linear fits intersect in R Given some points on a graph (usually only about 6 or 7 points), I need to find a best fit solution where the solution ...
2
votes
1answer
105 views

Printing model (nls) characteristics in plot

I have an exponential model calculated with mod <- nls(y ~ exp(- (x/a)^b), data = DF, start = list(a = 200, b = 1.4)) which I plotted using: plot(x,y) lines(sort(DF$x),predict(mod, ...
2
votes
0answers
185 views

Package recompile after changing nls_length_semantics

I have a database where the nls_length_semantics value has been changed from byte to char. Is it necessary to recompile all the packages that have externally accessible varchar2 based data types (for ...
2
votes
1answer
347 views

R : catching errors in `nls`

I'm fitting some exponential data using nls. The code I'm using is: fit <- nls(y ~ expFit(times, A, tau, C), start = c(A=100, tau=-3, C=0)) expFit is defined as expFit <- function(t, A, ...
2
votes
5answers
4k views

ORA-00604 ORA-12705

I am having this error in my j2ee web application. java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified ...
1
vote
1answer
80 views

oracle date and nls settings

I get an ORA-01858 exception. I think it is due to NLS settings and date: declare currentDate DATE := sysdate; queryString VARCHAR2(300) := '... where blablabla = :bind_timestamp ...'; ...
1
vote
1answer
142 views

Reproducing PROC NLIN output with nls

I'd like to implement the following SAS code in R. $$N_e = N_o{1-exp[\frac{(d+bN_o)(T_h N_e - T)}{(1+c N_o)}]}$$ where $b>0$, $c\geq 0$, $T_h>0$, and $T=72$. The SAS code is DATA NOTONECT; ...
1
vote
1answer
32 views

Localizing spreadsheet cell names

I'm working on an application that has a spreadsheet-like interface. There is a grid of cells. Rows are numbered, and letters are used for the columns. So "names" like A2 and Q17 refer to cells in ...
1
vote
1answer
242 views

Oracle 10g NLS Parameters

Could people please let me know if there are any issues with setting Oracle 10g NLS Parameters at database level, specifically the NLS_TERRITORY to the country I am in together with setting the ...
1
vote
2answers
437 views

R: polynomial shortcut notation in nls() formula

With the linear model function lm() polynomial formulas can contain a shortcut notation like this: m <- lm(y ~ poly(x,3)) this is a shortcut that keeps the user from having to create x^2 and x^3 ...
1
vote
2answers
414 views

Is there an easy way to convert HTTP_ACCEPT_LANGUAGE to Oracle NLS_LANG settings?

When adding internationalisation capabilities to an Oracle web application (build on mod_plsql), I'd like to interpret the HTTP_ACCEPT_LANGUAGE parameter and use it to set various NLS_* settings in ...
0
votes
0answers
10 views

NLS Logit - Changing the NLS ouput class for a better output

I am trying to implement an NLS logit so that I can use Terza's 2SRI approach for the estimation of the odds ratio when there are endogenous covariates in the model. I have produced the following ...
0
votes
1answer
113 views

OCI JDBC Driver and NLS Settings

We have created a "after logon" trigger to alter the session in order to set the two NLS settings - NLS_SORT and NLS_COMP. NLS_SORT needs to be set to BINARY_CI and NLS_COMP needs to be set to ...
0
votes
2answers
38 views

Linking against WinNLS

What static library should I use to link against to use the NormalizeString() function? In contrast with most functions documented on MSDN, the static library required to use the function is not ...
0
votes
0answers
66 views

GWT NLS settings in eclipse preferences

I've beeen using GWT in eclipse for a few months now and I've recently created a .properties file from which I create a Constants java file (in my case HBConstants) using the i18n.launch tool. I use ...
0
votes
3answers
295 views

Connecting to Oracle from Perl

I am trying to connect to Oracle using Perl. I am trying to connect from a Windows XP machine that has Perl installed. I also have downloaded Oracle SQL Developer and Oracle Instant Client. I can ...
0
votes
1answer
65 views

rpy2 nls initial parameters choice

Hi I am running a code in python importing rpy2 robjects and trying to make a fit to some data (with errors that I consider as weights). I am using a non linear regression and the "formula" i am ...
0
votes
1answer
242 views

rpy2 problems, nls passing list() as argument from python to R

I am trying to fit a nonlinear curve using rpy2 from numpy array, but are stuck as I do not know how to pass the 'start' argument on the R side. I use R 2.12.1 and python 2.6.6 Error in function ...
0
votes
1answer
56 views

NLS API gives wrong long date for “en-ca”

The long date for culture "en-ca" is MMMM-dd-yy . This is correct and I have verified this with documentation. You can verify the result in .NET by doing the following. Dim culture As CultureInfo ...
0
votes
1answer
100 views

Initial guess visualizing with the nls function

I'm trying to fit a function consisting of several gauss bells to some experimental data. The method used is the nls function from R. But it is difficult to get the initial guess good enough, such ...
0
votes
1answer
216 views

NVARCHAR2 equation issue in Oracle 10g

Env: Oracle version: Release 10.2.0.1.0 Server: Windows XP Language in oracle: select userenv('language') from dual; Result: CHINESE_CHINA.AL32UTF8 Table structure: PARTY_ID NVARCHAR2(50) ...
0
votes
3answers
315 views

How do I avoid unwanted log messages on java project?

On my java project, I have a bunch of strings externalized on a messages.properties file. On its respective Messages.java file I had the same number of public static String-typed attributes, so I ...