Transforming 2D points on to a regular grid or latticeRotate a grid, made up of lines, so that it aligns with...
Is it impolite to ask for halal food when traveling to and in Thailand?
To what extent is it worthwhile to report check fraud / refund scams?
Leaving a job that I just took based on false promise of a raise. What do I tell future interviewers?
What is the lowest voltage that a microcontroller can successfully read on the analog pin?
Is this a Sherman, and if so what model?
Is the mass of paint relevant in rocket design?
How to make interviewee comfortable interviewing in lounge chairs
Writing a letter of recommendation for a mediocre student
Transforming 2D points on to a regular grid or lattice
Does the Orange League not count as an official Pokemon League, making the Alolan League his first-ever win?
Where does an unaligned creature's soul go after death?
If an object moving in a circle experiences centripetal force, then doesn't it also experience centrifugal force, because of Newton's third law?
Why is there is no screening for Ovarian Cancer?
Are there non JavaScript ways to hide HTML source code?
How much damage can be done just by heating matter?
Conditionally execute a command if a specific package is loaded
How can I repair this gas leak on my new range? Teflon tape isn't working
Can this word order be rearranged?
Is it really necessary to have a four hour meeting in Sprint planning?
Is it more effective to add yeast before or after kneading?
Social leper versus social leopard
What are these pixel-level discolored specks? How can I fix it?
Where are they calling from?
Why does NASA publish all the results/data it gets?
Transforming 2D points on to a regular grid or lattice
Rotate a grid, made up of lines, so that it aligns with the xy axesMake a series of points curlColor points in ListPointPlot3DCreating a grid of coloured pointsPlot colored grid3d points projected to y-z plane and colorized according x-velocity using a grid for averagingColored grid congruencesTransforming a conic to it's standard formRemoving anomalous points from data
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
$begingroup$
I have a set of points in 2D generated by doing a DimensionReduce
on a list of colors:
colors = RandomColor[100];
coords = DimensionReduce[colors, 2, Method -> "TSNE"];
ListPlot[Thread[Style[coords, colors, PointSize -> .05]]]
However, I would like to arrange these points into a regular 2D grid (or other lattice) while maintaining neighbourhoods as much as possible, to make something like this:
(this is just a mockup)
Is there a function to provide this transformation? Or am I better off writing something to shuffle the colors in a grid to minimise neighbor distances?
color geometric-transform dimension-reduction
$endgroup$
add a comment
|
$begingroup$
I have a set of points in 2D generated by doing a DimensionReduce
on a list of colors:
colors = RandomColor[100];
coords = DimensionReduce[colors, 2, Method -> "TSNE"];
ListPlot[Thread[Style[coords, colors, PointSize -> .05]]]
However, I would like to arrange these points into a regular 2D grid (or other lattice) while maintaining neighbourhoods as much as possible, to make something like this:
(this is just a mockup)
Is there a function to provide this transformation? Or am I better off writing something to shuffle the colors in a grid to minimise neighbor distances?
color geometric-transform dimension-reduction
$endgroup$
add a comment
|
$begingroup$
I have a set of points in 2D generated by doing a DimensionReduce
on a list of colors:
colors = RandomColor[100];
coords = DimensionReduce[colors, 2, Method -> "TSNE"];
ListPlot[Thread[Style[coords, colors, PointSize -> .05]]]
However, I would like to arrange these points into a regular 2D grid (or other lattice) while maintaining neighbourhoods as much as possible, to make something like this:
(this is just a mockup)
Is there a function to provide this transformation? Or am I better off writing something to shuffle the colors in a grid to minimise neighbor distances?
color geometric-transform dimension-reduction
$endgroup$
I have a set of points in 2D generated by doing a DimensionReduce
on a list of colors:
colors = RandomColor[100];
coords = DimensionReduce[colors, 2, Method -> "TSNE"];
ListPlot[Thread[Style[coords, colors, PointSize -> .05]]]
However, I would like to arrange these points into a regular 2D grid (or other lattice) while maintaining neighbourhoods as much as possible, to make something like this:
(this is just a mockup)
Is there a function to provide this transformation? Or am I better off writing something to shuffle the colors in a grid to minimise neighbor distances?
color geometric-transform dimension-reduction
color geometric-transform dimension-reduction
edited 1 hour ago
Crêpo
asked 10 hours ago
CrêpoCrêpo
4001 silver badge9 bronze badges
4001 silver badge9 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
$begingroup$
It is hard to understand what you mean, but here is a simple take. Round
can take an arbitrary step. That makes a grid of an arbitrary step.
colors=RandomColor[100];
coords=DimensionReduce[colors,2,Method->"TSNE"];
gridStep=.5;
ListPlot[
Thread[Style[Round[coords,gridStep],colors]],
PlotStyle->PointSize[.03],
Frame->True,
FrameTicks->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLines->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLinesStyle->Directive[Gray, Dashed]]
$endgroup$
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
add a comment
|
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f206512%2ftransforming-2d-points-on-to-a-regular-grid-or-lattice%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
It is hard to understand what you mean, but here is a simple take. Round
can take an arbitrary step. That makes a grid of an arbitrary step.
colors=RandomColor[100];
coords=DimensionReduce[colors,2,Method->"TSNE"];
gridStep=.5;
ListPlot[
Thread[Style[Round[coords,gridStep],colors]],
PlotStyle->PointSize[.03],
Frame->True,
FrameTicks->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLines->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLinesStyle->Directive[Gray, Dashed]]
$endgroup$
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
add a comment
|
$begingroup$
It is hard to understand what you mean, but here is a simple take. Round
can take an arbitrary step. That makes a grid of an arbitrary step.
colors=RandomColor[100];
coords=DimensionReduce[colors,2,Method->"TSNE"];
gridStep=.5;
ListPlot[
Thread[Style[Round[coords,gridStep],colors]],
PlotStyle->PointSize[.03],
Frame->True,
FrameTicks->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLines->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLinesStyle->Directive[Gray, Dashed]]
$endgroup$
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
add a comment
|
$begingroup$
It is hard to understand what you mean, but here is a simple take. Round
can take an arbitrary step. That makes a grid of an arbitrary step.
colors=RandomColor[100];
coords=DimensionReduce[colors,2,Method->"TSNE"];
gridStep=.5;
ListPlot[
Thread[Style[Round[coords,gridStep],colors]],
PlotStyle->PointSize[.03],
Frame->True,
FrameTicks->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLines->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLinesStyle->Directive[Gray, Dashed]]
$endgroup$
It is hard to understand what you mean, but here is a simple take. Round
can take an arbitrary step. That makes a grid of an arbitrary step.
colors=RandomColor[100];
coords=DimensionReduce[colors,2,Method->"TSNE"];
gridStep=.5;
ListPlot[
Thread[Style[Round[coords,gridStep],colors]],
PlotStyle->PointSize[.03],
Frame->True,
FrameTicks->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLines->{Range[-10,10,gridStep],Range[-10,10,gridStep]},
GridLinesStyle->Directive[Gray, Dashed]]
edited 3 hours ago
answered 3 hours ago
Vitaliy KaurovVitaliy Kaurov
58.9k6 gold badges166 silver badges286 bronze badges
58.9k6 gold badges166 silver badges286 bronze badges
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
add a comment
|
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
$begingroup$
You're right the question was super unclear. I've made a mockup to try and illustrate what I'm after. I want to transform the data such that it's uniformly distributed across a grid or lattice.
$endgroup$
– Crêpo
59 mins ago
add a comment
|
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f206512%2ftransforming-2d-points-on-to-a-regular-grid-or-lattice%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown