Normalization refers to transformations which aim to reduce variation of various types of data and thereby allow more consistent processing, searching, sorting, comparison, etc.
1
vote
0answers
11 views
How does WEKA IBK (KNN) algorithm lead with non-normalized attributes?
I have a large dataset for two classes with different attributes scales (some attributes from 5 to 10, others from 0 to 100, for example). I know if I use directly a kNN algorithm that difference will ...
0
votes
0answers
10 views
transform existing mysql table to first normal form
I have a huge mysql database (table with > 100mio rows) and need to migrate the data to a new schema. one of the changes in the new db will be to transform a table to first normal form, e.g.:
table ...
1
vote
4answers
53 views
How to 'normalize' a grayscale image?
My math is a bit rusty. I'm trying to equalize a histogram of a 2D array which represents grayscale values in the range 0-255 (values may not be whole numbers because of how they are computed).
I ...
-2
votes
1answer
24 views
SQLite how to do normailzation? [closed]
I'm relatively new to database programming and I've been given the task of creating one for my job on Android. I've been able to create a simple one using some basic SQL statements. However, being a ...
1
vote
2answers
31 views
Normalization a table
I want to normalize this table to 3NF
-----------------------------------
| | | |
| V V V
...
0
votes
2answers
20 views
Recommend a Software to Drawing Normalization Diagram
I want to draw database diagram. I should draw normalization steps.
I want to draw diagram like this and show functional dependency!
--------------------------
...
0
votes
1answer
36 views
Is a primary key required? (6NF implementation)
Is a primary key required in the 6NF relvar tables of a 5NF relation. Consider the following setup:
-- The 5NF table
CREATE TABLE party_address(
address_id int NOT NULL,
party_id int NOT ...
0
votes
1answer
37 views
Is my table normalized? [closed]
I have MySQL database containing one table GreatPlaces. This table has 100 rows, where each row represents a different historically important place on the Earth, such as Forbidden City in Beijing or ...
1
vote
0answers
28 views
How to use boost date facets to parse strings which may not have leading zeros?
I'd like to use several boost::date_facet variations in C++03 to normalize some string input which can have a variety of different U.S. style formats, for example:
Feb. 04, 2012
Feb 04, 2012
...
-3
votes
2answers
36 views
Is it 1NF , 2NF or 3NF? [closed]
I am trying to create a Library management system using MySql Database. I have created 4 tables for this system. I know that it is in 1nf because there are no repeating values for Primary key table, ...
0
votes
1answer
22 views
Normalization Understanding
I am trying to understand Normalization. I have followed a couple of Youtube tutorials and also watched Lynda tutorial. I have understand a bit about normalization but still i have few questions.
1) ...
1
vote
1answer
36 views
May a 6NF Table contain a foreign key?
Does a table satisfy 6NF when it's domain is a foreign key? E.g.:
CREATE TABLE authors(
author_id serial NOT NULL PRIMARY KEY
);
-- other author attributes
CREATE TABLE books(
book_id ...
1
vote
1answer
45 views
Is This Mysql Database Normalization Form and Structure Design Correct?
I am trying to figure out what kind of normalization and structure to use for a database I am making. It is going to be a list of properties(building number street addresses, street names, cities, ...
0
votes
0answers
11 views
Normilize audio buffer read with AudioToolbox?
I have an implementation of reading, trimming audio files using AudioToolbox (only Linear PCM for now). Reading the file with AudioFileReadPackets, reading properties with AudioFileGetProperty.
As I ...
0
votes
1answer
29 views
jQuery currency spinner - “normalization”
I want to use the jQuery spinner for a currency value (i.e. money), the value of which might be in dollars, euros, or anything supported by the spinner.
The data should then be saved into a mysql ...
0
votes
2answers
59 views
Normalizing rows of matrix, so that their norm is equal to 1 (MATLAB)
I have a following problem - I have a matrix A of size 16x22440.
What I need to do is to normalize each row of this matrix, so that the norm of each of them is equal to 1 (for n=1:16 norm(A(n,:))==1)
...
0
votes
1answer
40 views
AForge.NET - Backpropagation learning always returns values [-1;1]
I have some problem with backpropagation learning using AForge.NET - Neuro Learning - Backpropagation . I actually try to implement neural network as in samples (Aproximation). My problem is about ...
2
votes
3answers
30 views
Table with only ID and many junction tables
I am trying to design a database to be as scalable as possible, so I am testing the concept with a simple scenario.
Lets say I have a contact table. A contact typically have an address, phone ...
0
votes
1answer
57 views
How to normalize your database in hibernate? (Repeating values don't get saved again and again)
imagine I have a table called Photo and a table called Tag.
A Photo can have any amount of tags. Like a picture of the Brandenburg Gate in Berlin has as tags "Berlin", "Gate", ...
Now there is a ...
1
vote
3answers
101 views
Normalizing variable names C/C++
I am currently working on a tool, that will compare two files and report its differences. I want to implement a feature that will compare two methods, and report if they are identical (while ignoring ...
-1
votes
1answer
24 views
sql query to apply min-max normalization to different columns in sql server 2008?
I have different columns containing int values like age, gender etc. I want these column values to be replaced with 0-1 range values by applying min-max normalization so that i can load it to rapid ...
0
votes
1answer
25 views
Written forms to sql including multiple yes, no other
I am designing a database for written forms that are filled out each time a person visits an office. i already have:
patient:
patient_id, fname, lname, gender etc
adult
*patient_id*, occupation etc
...
0
votes
2answers
36 views
Relational Database emergency person + contact number?
I'm trying to design a normalized relational database where a patient has a *contact person* (person who is contacted in case of emergency). I also have a table called contact_num which takes ...
2
votes
0answers
61 views
Normalizing faceted histograms separately in ggplot2
My questions is similar to
Normalizing y-axis in histograms in R ggplot to proportion
but I'd like to add to it a bit.
In general, I have 6 histograms in a 2x3 facet design, and I'd like to normalize ...
0
votes
1answer
21 views
Database Table Design for read only values
Database Design:
I have two values as Tsunami_Indicators:
Early Warning
Late Warning
Based on these two values there are a number of Tsunami_Rescue_Activities such as:
Early Warning------Build ...
1
vote
1answer
37 views
Database Design - Defining relationships between agreement terms with And / Or
I will be designing a database over the next few months, and there is one problem on the horizon that I think will be a significant challenge.
How to track relationships between agreement terms and ...
0
votes
1answer
42 views
what values should i pass to the normalization function in iris recognition?
i've been working on implementation for iris recognition system in Matlab ,
on Normalization i used this function
[polar_array, polar_noise] = normaliseiris(image, x_iris, y_iris, r_iris,x_pupil, ...
0
votes
1answer
32 views
How do I represent an un-normalized table in an XML format?
I currently have this table:
I attempted to carry out the task and got this far:
<?xml version="1.0" encoding="UTF-8"?>
<VideoRental>
<Video copyNumber="2">
...
0
votes
0answers
15 views
Creating Functional Dependencies
Ive been trying to normalize a map i have created for a database im making and im having some trouble defining what the FDs would be.
I have a table:
User(userID(primary key), Fname, Lname, ...
0
votes
2answers
47 views
Can Database Normalization occur from values
Say I want to normalize a table
itemID | itemDate | itemSource | type | color | size | material
254 03/08/1988 toyCo doll null 16 plastic
255 03/08/1988 toyCo car ...
1
vote
2answers
57 views
Normalizing to 1NF without composite keys
Its often stated that to reach 1nf, a new entity has to be created and that entity has to have a composite key.
LeadID | leadDate | Name | DOB | streetAddress | city | state | residenceType
If I was ...
1
vote
1answer
49 views
Does Convolution Neural Network need normalized input?
I have trained a Convolution Neural Network, after comparing two normalizations,
I found that simple minus mean and divided by standard variance is better than scaling into [0, 1], it seems that the ...
0
votes
2answers
38 views
Normalize vector by zero
I am working on designing a new sensor, and so I have a vector of measured values and a vector of truth values. To represent error, it's simply measured - truth. Since there's a lot of variation in ...
0
votes
2answers
51 views
Is un-normalised data always contained in a single table?
For an assignment I have created a database driven web application. I have to show my understanding of normalisation by showing my database in de-normalised form, and then normalising it gradually, ...
1
vote
1answer
52 views
Normalizing a significand in MIPS
I'm trying to figure out how to normalize a significand in MIPS when doing floating point addition.
Say you have 0.001*2^-1. In this instance, to normalize you would have to shift the significand ...
2
votes
3answers
103 views
Normalizing self referencing attributes
What is the best way to normalize information about a spouse in a database containing information about persons?
The data includes:
person_id
first name
middle name
last name
phone number
address
...
0
votes
0answers
36 views
How to compute cover of a functional dependency?
Can any one give me steps to compute cover of a functional dependency ? All I could find from internet is Minimal cover, but my professor wants to compute cover.
According to him, the difference is ...
0
votes
1answer
47 views
Normalization of Many to Many relation in sql
I have a product table that contains two column
ProductID Desc
1 Fan
2 Table
3 Bulb
I have another table that contains supplier information
SupplierID Desc
1 ...
-5
votes
0answers
27 views
MYSQL Database Design 5NF [closed]
Design AND create a small database in MYSQL to store the $first_Name, $last_Name, $email_address, and $date.
- at least 5 tables
- should be in 5th Normal Form (5NF)
- should include one all refrence ...
0
votes
2answers
60 views
Normalization Dependencies
Im just trying to make sure that im thinking of it the right way
1)full dependencies are when one or more primary keys determine another attribute
2)partial dependencies are when one of the primary ...
0
votes
1answer
35 views
To embed or not embed?
I'm trying to figure out which schema design I should use.
(These are example documents, the actual documents contain more properties)
Embedded:
{
_id: ObjectId(),
title: "trolo",
subs: [
...
0
votes
1answer
30 views
How uniquely identify normalize one to many relation ship
I have a database having Medication Reminders and Medication Reminders have different schedules and these schedules(two times a day) have different reminder occurrences(Dates on which reminder come) ...
0
votes
4answers
54 views
./ not correctly taken into account in URL
I want to resolve some urls. For that, I take the result of :
new URL(new URL(baseurl), link);
This method seems to fail when baseurl="http://www.site.com" and link="./"
You will have the ...
0
votes
2answers
33 views
Python normalized pathname with a special case
consider the following example
#junk path ending with a test file
test = "C:\\test1/test2\test3.txt"
with import os and os.path.abspath in can normalize the pathname
test_norm = ...
1
vote
0answers
70 views
How can I speed up this query? Is this 'too-normalised'?
This is plausibly the longest query in history posted to SO.
Essentially I would like to know if this is the right idea for the query needed to do what I want, and given that it is extremely slow, how ...
0
votes
2answers
69 views
How to compute normals for a segment line in 3D
I have exported some hair particules from Blender (a hairstyle). These are composed of several lines (GL_LINES). My openGL program displays these particules without any problem. Now I just want to ...
0
votes
0answers
24 views
Database: how big can a one to many relationship table be?
I've been wondering for this for too long. Let's say you have a huge one-to-many table and need to get data out of it constantly.. At what point is the table too big and will it get slow ? And what's ...
1
vote
2answers
85 views
Vectorizing matlab column normalization
I want to normalize a matrix per column. I now have this code which works fine:
A = randn(10,3)
maxA = max(A,[],1)
minA = min(A,[],1)
for i=1:size(A,2)
A(:,i) = (A(:,i) - minA(i) ./ (maxA(i) - ...
0
votes
1answer
70 views
RDBMS normalization vs performance
We are writing a MMORPG and suppose we have the following tables. The location_dynamic_objects is the table going to be queried and updated HEAVILY. As you can see position_x, position_y, location_id ...
0
votes
0answers
55 views
MVC: Binding and Updating Normalized table data in multiselect list
I have two tables, TabA and TabB having a many to many relation. I normalize it and have a third table TabA-B having a many to on relationship with each of TabA and TabB.
I have a multiselect drop ...



