The ordinal tag has no wiki summary.
0
votes
1answer
69 views
How to convert integer to its ordinal name?
I don't know if I'm asking too much, but. Is there a way to convert a number to its ordinal name in English? For example:
5 --> 'five'
251 --> 'two hundred fifty one'
2549 --> 'two thousand ...
0
votes
1answer
56 views
D3 linechart, can't edit the amount of ticks with an ordinal scale?
I asked a question before about d3, and they suggested me to use an ordinal scale, this would solve my problems. Indeed it solved my problems, but know I'm stuck with another issue...
It draws ...
0
votes
1answer
244 views
d3 ordinal x-axis, change label order and shift data position
I have been working on a visualization and have it working fine scaling the x-axis linearly (d3.scale.linear()), but the x-axis is really ordinal and so I am now going back and trying to switch to ...
0
votes
1answer
343 views
d3 linechart string domain x-axis
I'm relatively new to D3, and I can't figure out why something isn't working..
I want to draw a line-chart with d3, and this works fine, but I have problems with the axes.
With the following code it ...
0
votes
1answer
68 views
Convert ordinal date (YYYYDDD) to standard date (e.g. UTC = YYYYMMDD )
I'd like to see the results of a mysql query with a standard date format, YYYYMMDD or MMDDYYYY. The table/field has dates in the ordinal date format: YYYYDDD. I tried the DATE_FORMAT function with ...
0
votes
1answer
49 views
Trouble getting se.fit and confidence intervals using clmm2 from ordinal package
I'm using clmm function from ordinal package in R in order to fit cumulative mixed models to my data. It worked fine until I tried to get predicted probabilities. I can't get either SE or confidence ...
2
votes
3answers
185 views
use of ordinal inside Java Enum definition
I notice that the Java Enum Documentation states the ordinal method:
Returns the ordinal of this enumeration constant (its position in its enum declaration, where the initial constant is assigned ...
0
votes
1answer
101 views
PostgreSQL Extract() DOW : why not Date datatype in addition to timestamp?
According to the PostgreSQL date-time function docs:
dow
The day of the week (0 - 6; Sunday is 0) (for timestamp values only)
SELECT EXTRACT(DOW FROM TIMESTAMP '2001-02-16 20:38:40');
...
2
votes
1answer
211 views
Ordered Probit/Logit with random coefficients
I searched everywhere but I didn't find what I want, that is why I as the question here. Does anybody know of a function in R which allows to estimate ordered probit/logit model with random ...
1
vote
1answer
132 views
linear predictor - ordered probit (ordinal, clm)
I have got a question regarding the ordinal package in R or specifically regarding the predict.clm() function. I would like to calculate the linear predictor of an ordered probit estimation. With the ...
0
votes
3answers
71 views
Ordinal Numbers With PHP
I need to make output like this above, but how to add numbers , i can do with < ol > but its not what i need, < ol > tag give me different order.. any idea how to make this and add number before ...
0
votes
1answer
61 views
Enums Ordinal in Obj-C (using enums for Z Values in Cocos2D)
I want to avoid manually assigning random Z values for Layers/Nodes in Cocos2D and planning on using enums for it.
I know enums are ordinal-ordered but is it safe to rely on the enum ordering in ...
0
votes
2answers
77 views
Count night each room in ordinal number
I want to count day with it's position (likely an ordinal but just a position of day) for each room type. For example, I have two types of room which is booked the exact same period (from 2012-11-30 ...
0
votes
0answers
160 views
JPQL IN clause with other parameter, using ordinal parameters
I'm having a problem with named querys, using ordinal parameters and the IN clause.
This is my Named Query:
@NamedQuery(name = "Photo.getByIds", query = "FROM Photo i WHERE i.User.idUser = ?1 AND ...
0
votes
2answers
698 views
KNN classification with categorical data
I'm busy working on a project involving k-nearest neighbour regression. I have mixed numerical and categorical fields. The categorical values are ordinal (e.g. bank name, account type). Numerical ...
2
votes
1answer
314 views
Brushing on ordinal data does not work
I really like this graph and its functionality and it is perfect for what I want/need. The only thing I need to change is I need it to allow ordinal data on the y-axis and I cannot seem to get that to ...
0
votes
1answer
548 views
CUDA invalid device ordinal on kernel launch
I'm trying to use multiple CUDA devices from multiple OpenMP threads. The devices are initialized (i.e. memory is allocated on them) from the main thread, and then I use cudaSetDevice from different ...
0
votes
1answer
21 views
Succint way of saying “print arguments in sequence, prepend ordinals”? [closed]
I am translating some simple exercises for students into English, and I've hit the wall with wording an annoyingly simple one. How do you say, "print the command line arguments, with prepended ...
0
votes
1answer
661 views
Ordinal Not Found ComCtl32.dll C++ on XP
I got this error when c++ program made on win 7 run on xp. Here the error
support.microsoft.com/kb/260283
I got The ordinal 380 could not be located in the dynamic link library (COMCTL32.DLL)
. How ...
1
vote
2answers
2k views
C#/ASP.Net - Extract bit value of column in a gridview
I have a gridview that is SQL bound. In some of the columns there are bit values. When I use C# to get the values into the gridview, checkboxes are displayed. I need to extract the value of that ...
1
vote
2answers
179 views
Get ordinality of a row in an ordered result set
I have a collection of manifest records stored in a MySQL database. The schema is as follows:
CREATE TABLE `manifests` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`carrier_id` INT(10) ...
3
votes
1answer
290 views
SQL query for index/primary key ordinal
In our on-line contest system, there is a frequently changing table standings with integer columns (user_id, score). Both are indexed with a unique constraint. Two kinds of queries are required:
...
1
vote
3answers
324 views
Remove all characters from a string who's ordinals are out of range
What is a good way to remove all characters that are out of the range: ordinal(128) from a string in python?
I'm using hashlib.sha256 in python 2.7. I'm getting the exception:
UnicodeEncodeError: ...
2
votes
0answers
241 views
C++ Appending Random Ordinal Causing Unresolved External Symbol
I just can't figure out what Visual C++ 2010 is doing, I've Googled the heck out of it for hours and I still have no idea what is going on. I would really, really appreciate any help I can get.
I ...
2
votes
3answers
816 views
Stringcomparison OrdinalIgnoreCase for true false values
Does this make sense? MyValue can be "true" or "false"
Should it not be Stringcomparison.OrdinalIgnoreCase ?
MyValue.Equals("true", StringComparison.CurrentCultureIgnoreCase))
4
votes
6answers
513 views
Can I assume that Java enumerations auto-increment by 1?
Java states that the ordinal of the initial value is 0. Can I assume that when I create an enumeration like this :
public enum Direction {MONDAY, TUESDAY, WEDNESDAY, THURSDAY, ...}
That the ...
1
vote
1answer
387 views
Residuals and plots in ordered multinomial regression
I need to plot a binned residual plot with fitted versus residual values from an ordered multinominal logit regression.
How can I extract residuals when using polr? Is there any other function that ...
0
votes
1answer
183 views
Sorting a List of Strings, Ignoring ASCII Ordinal Values
I want to sort this list:
>>> L = ['A', 'B', 'C', ... 'Z', 'AA', 'AB', 'AC', ... 'AZ', 'BA' ...]
Exactly the way it is, regardless of the contents (assuming all CAPS alpha).
>>> ...
1
vote
3answers
156 views
SQL to get an ordinal index in selection for specific ID
I'm working with the SQL Server database. Say, I have a selection that returns an array of IDs. Can I find out (with SQL) the order of an ID equalled N in that array?
Here's what I mean. This is my ...
0
votes
5answers
292 views
How do I select a specific enum.ordinal() using another enum?
First, my code (It is far from perfect, I don't really know what I am doing) is this:
public enum Chord { MAJOR, MINOR, DIMINISHED, BASS, BASS2 }
public enum Scales { C, D, E, F, G, A }
public ...
2
votes
1answer
120 views
Idiomatic method of finding the median of an ordinal in R
I need to find the median of an ordinal (i.e. ordered factor) in R.
I couldn't find a method in the standard library to do this, so I came up with the following clunky solution:
ordinal.median <- ...
1
vote
0answers
148 views
algorithm for reducing/merging nominal and ordinal categories
I'm receiving datasets where several variables have >10 categories (some ordinal/some nominal) and I suspect that several of the categories could be merged, both for easier presentation but also to ...
0
votes
3answers
200 views
How to access public properties of a List<class> by their ordinal position
I have public properties of a class and my output detail line is being written like this:
public static long OutputListToFile(StreamWriter writer, List<DocMetaData> listData)
{
...
2
votes
4answers
472 views
Creating console command list - how to do it right with Java
For a homework I code in Java(with which I'm a newbie), I bump into the problem of creating a console command list. The user will be confronted with a set of commands, among which s/he will choose ...
54
votes
8answers
32k views
Cast Int to enum in Java
What is the correct way to cast an Int to an enum in Java given the following enum?
public enum MyEnum
{
EnumValue1,
EnumValue2
}
MyEnum enumValue = (MyEnum) x; //Doesn't work???
4
votes
3answers
409 views
Passing an Ordinal Parameter
Is it possible to write a method which takes any ordinal type as a parameter? The same way Inc() or High() do?
I'm using Delphi 2007
2
votes
4answers
520 views
Using the Ruby Date class for Astronomical data
~ Approximate Solar Noon
lw = 88.743 # my longitude
jdate = Date.ordinal_to_jd(Time.now.year, Time.now.yday)
n = (jdate - 2451545 - 0.0009 - lw / 360).round # lw is users longitude west of 0.
...
0
votes
1answer
646 views
FindPrivateKey under Windows 7 64 bit doesn't work
I've downloaded .net sample FindPrivateKey, compiled for framework 4.0, tried for different platforms (32bit, 64bit, Any CPU) but it didn't work. Always the same error: the ordinal 345 could not be ...
0
votes
1answer
183 views
NumberFormatter::ORDINAL giving me garbage
I'm trying to use the NumberFormatter class in PHP and I'm having problems with the ORDINAL format. I've tried a couple other formats without a problem. But when I use ORDINAL I just get garbage. ...
1
vote
1answer
677 views
Why does reader.GetOrdinal(“FieldName”) throw an exception?
this throws an exception, when the field does not exist:
reader.IsDbNull(reader.GetOrdinal("FieldName")) => bang
Why not return -1 ?
2
votes
2answers
3k views
Access columns of a table by index instead of name in SQL Server stored procedure
Is there a way to access columns by their index within a stored procedure in SQL Server?
The purpose is to compute lots of columns. I was reading about cursors, but I do not know how to apply them.
...
0
votes
1answer
726 views
How to convert number to arabic word in .Net? [duplicate]
Possible Duplicates:
Is there an easy way to create ordinals in C#?
How can I convert an integer into its verbal representation?
Hi All,
How to convert number to arabic word?
I want ...
22
votes
8answers
9k views
How do you format the day of the month to say “11th”, “21st” or “23rd” in Java?
I know this will give me the day of the month as a number (11, 21, 23):
SimpleDateFormat formatDayOfMonth = new SimpleDateFormat("d");
But how do you format the day of the month to say 11th, 21st ...
1
vote
2answers
185 views
Is String.Format and DateTimeFormatInfo pluggable/extensible?
So for example lets say when I string.format a date and use the string "or" in format pattern I want that converted to the ordinal value of the Date.
ie
string.Format("{0:ddor MMM yyyy}.", ...
2
votes
1answer
363 views
How can I call a exported function using ordinal number
If a dll exports some functions and the functions have only ordinal numbers, how can I call the functions?
Give me a short example please.
0
votes
2answers
2k views
Ordinal not found
can anyone give me any advice on what to do about this error ?!
i made a simple mfc app which works on windows7 but on winXP it throws the bellow error :
"The ordinal 7118 could not be located in the ...
6
votes
2answers
2k views
Getting ordinal from function name programatically
Hey,
Does anyone What's the easiest way in C++ to get an ordinal of an exported dll function, given its name?
(Looking for a way which doesn't invlove parsing the IATs myself...)
Thanks,
Dan
1
vote
1answer
520 views
Does -[NSCalendar ordinalityOfUnit:inUnit:forDate:] not work?
I have the following code in my program:
NSUInteger currentMinuteOrdinal = [[NSCalendar currentCalendar] ordinalityOfUnit:NSMinuteCalendarUnit inUnit:NSEraCalendarUnit forDate:[NSDate date]];
...
1
vote
3answers
926 views
How do I sort by value from a second level hash, in Perl?
my $hash_ref = {
one => { val => 1, name => 'one' },
three => { val => 3, name => 'three'},
two => { val => 2, name => 'two' },
};
I would like to sort ...
4
votes
1answer
322 views
How to quickly obtain PHP localised ordinals using Zend_Locale
I need to localise ordinal values i.e 1st, 2nd, 3rd etc.. into various european languages There doesn't seem to be an option for doing this with Zend_Locale. Anyone know of a way of doing this in ...
