answersLogoWhite

0


Best Answer

The whole point of a nominal variable is that is has no numerical value associated with it. With a binary measure you can allocated the values 1 and 0 or +1 and -1 for observations where the attribute is present or absent. If there are more than 2 values that the nominal variable can take then you can allocate any numbers that you want but in all cases the numbers do not have a value: they are simply symbols which can help for sorting and for binary comparisons.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is The actual numerical value assigned to nominal level variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Difference between nominal and actual cooling capacity?

In general actual capacity is bit less than the nominal capacity of any form


What is the Nominal size of 8 rebar?

Nominal size is 1.00". Actual is 1.1.25" (includes deformation ribbing).


Is cold rolled steel actual or nominal size?

It is a nominal size. Sheet and plate steel thicknesses may vary from nominal thicknesses by up to 10%.


What are nominal values?

Nominal values are the values that a component is specified to be. For example, the nominal value of a 10K resistor is 10K. Its actual value may vary, though, based on its tolerance.


What is nominal line voltage?

'Nominal' means 'named'. So a 'nominal' voltage is the named voltage of a system. For example, when we talk about a 120-V or 240-V system, we are describing their nominal values, not their actual values which can change from moment to moment.


What is the actual numerical age of an object?

The time from when it was created to now.


What is the meaning of nominal tonnage?

When someone refers to a nominal ton, it is assumed that the ton is approximated and may not be an exact ton. An actual ton is 2000 pounds.


What is nominal pressure?

Nominal, in this context, refers to the "face value". So in this case it means what the gauge "face" is indicating. Also called gauge pressure. The difference between nominal pressure and actual pressure depends on whether gauge is a calibrated instrument and is indicating the actual pressure.Nominal pressure means rated pressure, that is a nominal pressure rating applied to vehicle parts.Scroll down to related links and look at "Definition of nominal pressure".


How do you Convert nominal cubic meters to cubic meters?

There's no need to convert since nominal and actual cubic meters represent the same volume. Nominal cubic meters are a way to describe a predicted or estimated volume, while actual cubic meters refer to the true volume measured.


Explain The Difference between "Actual Size" and "Nominal Size"?

The **"actual size"** refers to the true, precise dimensions of a product or material after manufacturing, while the **"nominal size"** is the label or standard size used for identification and may differ slightly from the actual size due to trimming or finishing processes. For example, a 2x4 piece of lumber has a nominal size of 2 inches by 4 inches, but its actual size is typically 1.5 inches by 3.5 inches.


Definition dominat sovereignty and nominal sovereignty?

nominal sovereignty is the authority to only rule in name where substantial sovereignty or dominant sovereignty means real or actual authority


What is the difference between an actual type and declared type variable?

I believe a declared type is the type used when first declaring a variable. And the actual type is the type that the variable is actually assigned, which could be the declared type or any subtype of that type. So given GeometricObject shape = new Triangle(); GeometricObject is the declared type and Triangle is the actual type. To demonstrate this more clearly the following statements are all correct. GeometricObject shape; // shape declared to be a GeometricObject shape = new Triangle(); // actual type assigned = Triangle shape = new Square(); // now shape refers to a Square object This is the basis of polymorphism. It allows you to write methods which have for parameters more general types but are able to handle subtypes differently. This makes your code more general and reusable.