Transforming 2D points on to a regular grid or latticeRotate 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
Has my MacBook been hacked?
My 15 year old son is gay. How do I express my feelings about this?
Norwegian refuses EU delay (4.7 hours) compensation because it turned out there was nothing wrong with the aircraft
Late 1970's and 6502 chip facilities for operating systems
Worms crawling under skin
reverse a list of generic type
How does IBM's 53-bit quantum computer compare to classical ones for cryptanalytic tasks?
What is the need of methods like GET and POST in the HTTP protocol?
Sparse columns, cpu time & filtered indexes
Is the mass of paint relevant in rocket design?
Do the villains know Batman has no superpowers?
Performance for simple code that converts a RGB tuple to hex string
Did Apollo carry and use WD40?
What is the lowest voltage that a microcontroller can successfully read on the analog pin?
If an object moving in a circle experiences centripetal force, then doesn't it also experience centrifugal force, because of Newton's third law?
To what extent is it worthwhile to report check fraud / refund scams?
Find missing number in the transformation
Where are they calling from?
Why is the missed-approach course for the "RNAV (GNSS) - A" approach to runway 28 at ENSB shaped all funny?
How to conditionally load a package only if shell-escape (write18) is passed
What are the benefits and disadvantages if a creature has multiple tails, e.g., Kyuubi or Nekomata?
How do I deal with too many NPCs in my campaign?
Which museums have artworks of all four Ninja Turtles' namesakes?
Why is there not an optimal solution for a MIP?
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.
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.
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.
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.
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
asked 9 hours ago
CrêpoCrêpo
3951 silver badge9 bronze badges
3951 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$
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$
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$
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 2 hours ago
answered 2 hours ago
Vitaliy KaurovVitaliy Kaurov
58.9k6 gold badges166 silver badges286 bronze badges
58.9k6 gold badges166 silver badges286 bronze badges
add a comment
|
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